mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
c2b553e915
* Upgrade react-resizable-panels * Add FileTreeOpenProvider * Add OutlineProvider and OutlineContainer * Convert Outline tests to Cypress GitOrigin-RevId: afd9ae8190edf37642e36a4ffb331f1182c8982d
118 lines
2.8 KiB
TypeScript
118 lines
2.8 KiB
TypeScript
import OutlinePane from '@/features/outline/components/outline-pane'
|
|
import { EditorProviders, PROJECT_ID } from '../../../helpers/editor-providers'
|
|
import { useState } from 'react'
|
|
|
|
describe('<OutlinePane />', function () {
|
|
it('renders expanded outline', function () {
|
|
cy.mount(
|
|
<EditorProviders>
|
|
<OutlinePane
|
|
isTexFile
|
|
outline={[{ title: 'Section', line: 1, level: 10 }]}
|
|
jumpToLine={cy.stub()}
|
|
onToggle={cy.stub()}
|
|
expanded
|
|
toggleExpanded={cy.stub()}
|
|
/>
|
|
</EditorProviders>
|
|
)
|
|
|
|
cy.findByRole('tree')
|
|
})
|
|
|
|
it('renders disabled outline', function () {
|
|
cy.mount(
|
|
<EditorProviders>
|
|
<OutlinePane
|
|
isTexFile
|
|
outline={[]}
|
|
jumpToLine={cy.stub()}
|
|
onToggle={cy.stub()}
|
|
expanded
|
|
toggleExpanded={cy.stub()}
|
|
/>
|
|
</EditorProviders>
|
|
)
|
|
|
|
cy.findByRole('tree').should('not.exist')
|
|
})
|
|
|
|
it('expand outline and use local storage', function () {
|
|
window.localStorage.setItem(`file_outline.expanded.${PROJECT_ID}`, 'false')
|
|
|
|
const onToggle = cy.stub()
|
|
|
|
const Container = () => {
|
|
const [expanded, setExpanded] = useState(false)
|
|
|
|
return (
|
|
<OutlinePane
|
|
isTexFile
|
|
outline={[{ title: 'Section', line: 1, level: 10 }]}
|
|
jumpToLine={cy.stub()}
|
|
onToggle={onToggle}
|
|
expanded={expanded}
|
|
toggleExpanded={() => {
|
|
window.localStorage.setItem(
|
|
`file_outline.expanded.${PROJECT_ID}`,
|
|
expanded ? 'false' : 'true'
|
|
)
|
|
setExpanded(!expanded)
|
|
}}
|
|
/>
|
|
)
|
|
}
|
|
|
|
cy.mount(
|
|
<EditorProviders>
|
|
<Container />
|
|
</EditorProviders>
|
|
)
|
|
|
|
cy.findByRole('tree').should('not.exist')
|
|
|
|
cy.findByRole('button', {
|
|
name: 'Show File outline',
|
|
}).click()
|
|
|
|
cy.findByRole('tree').then(() => {
|
|
expect(onToggle).to.be.calledTwice
|
|
expect(
|
|
window.localStorage.getItem(`file_outline.expanded.${PROJECT_ID}`)
|
|
).to.equal('true')
|
|
})
|
|
})
|
|
|
|
it('shows warning on partial result', function () {
|
|
cy.mount(
|
|
<EditorProviders>
|
|
<OutlinePane
|
|
isTexFile
|
|
outline={[]}
|
|
jumpToLine={cy.stub()}
|
|
onToggle={cy.stub()}
|
|
toggleExpanded={cy.stub()}
|
|
isPartial
|
|
/>
|
|
</EditorProviders>
|
|
)
|
|
|
|
cy.findByRole('status')
|
|
})
|
|
|
|
it('shows no warning on non-partial result', function () {
|
|
cy.mount(
|
|
<EditorProviders>
|
|
<OutlinePane
|
|
isTexFile
|
|
outline={[]}
|
|
jumpToLine={cy.stub()}
|
|
onToggle={cy.stub()}
|
|
toggleExpanded={cy.stub()}
|
|
/>
|
|
</EditorProviders>
|
|
)
|
|
|
|
cy.findByRole('status').should('not.exist')
|
|
})
|
|
})
|