Add "Set as main document" to file tree menu (#30399)

GitOrigin-RevId: e05a7d0b103226bdc34e559d0d48c12183abdf5a
This commit is contained in:
Alf Eaton
2025-12-18 09:06:19 +00:00
committed by Copybot
parent fa62723682
commit a841dbfd2c
8 changed files with 132 additions and 7 deletions
@@ -111,4 +111,66 @@ describe('FileTree Context Menu Flow', function () {
cy.findAllByRole('button', { name: 'main.tex' }).trigger('contextmenu')
cy.findByRole('menu').should('not.exist')
})
it('shows "set main document" item when appropriate', function () {
const rootFolder = [
{
_id: 'root-folder-id',
name: 'rootFolder',
docs: [
{ _id: 'main-doc', name: 'main.tex' },
{ _id: 'other-doc', name: 'other.tex' },
],
folders: [],
fileRefs: [],
},
]
cy.mount(
<EditorProviders
rootFolder={rootFolder as any}
projectId="123abc"
rootDocId="main-doc"
>
<FileTreeRoot
refProviders={{}}
setRefProviderEnabled={cy.stub()}
setStartedFreeTrial={cy.stub()}
onSelect={cy.stub()}
onInit={cy.stub()}
isConnected
/>
</EditorProviders>
)
cy.findByRole('menu').should('not.exist')
// main.tex is already the main document
cy.findByRole('button', { name: 'main.tex' }).trigger('contextmenu')
cy.findByRole('menu')
.findByRole('menuitem', { name: 'Set as main document' })
.should('not.exist')
// set other.tex as the main document
cy.findByRole('button', { name: 'other.tex' }).click({ force: true })
cy.findByRole('button', { name: 'other.tex' }).trigger('contextmenu')
cy.intercept('POST', '/project/123abc/settings', { statusCode: 204 }).as(
'update-settings'
)
cy.findByRole('menu')
.findByRole('menuitem', { name: 'Set as main document' })
.click()
cy.wait('@update-settings')
.its('request.body.rootDocId')
.should('eq', 'other-doc')
// main.tex is now not the main document
cy.findByRole('button', { name: 'main.tex' }).trigger('contextmenu')
cy.findByRole('menu').findByRole('menuitem', {
name: 'Set as main document',
})
})
})