mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
cda947d1ac
GitOrigin-RevId: c3d9601256af8720ab41264609cb5c5c810afbba
108 lines
2.7 KiB
TypeScript
108 lines
2.7 KiB
TypeScript
import { FC } from 'react'
|
|
import useDetachState from '../../../../frontend/js/shared/hooks/use-detach-state'
|
|
import { EditorProviders } from '../../helpers/editor-providers'
|
|
import { detachChannel, testDetachChannel } from '../../helpers/detach-channel'
|
|
|
|
const DetachStateTest: FC<{
|
|
stateKey: string
|
|
defaultValue: any
|
|
senderRole?: string
|
|
targetRole?: string
|
|
handleClick: (setValue: (value: any) => void) => void
|
|
}> = ({ stateKey, defaultValue, handleClick, senderRole, targetRole }) => {
|
|
const [value, setValue] = useDetachState(
|
|
stateKey,
|
|
defaultValue,
|
|
senderRole,
|
|
targetRole
|
|
)
|
|
|
|
return (
|
|
<div>
|
|
<div id="value">{value}</div>
|
|
<button id="setValue" onClick={() => handleClick(setValue)}>
|
|
set value
|
|
</button>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
describe('useDetachState', function () {
|
|
beforeEach(function () {
|
|
window.metaAttributesCache = new Map()
|
|
})
|
|
|
|
afterEach(function () {
|
|
window.metaAttributesCache = new Map()
|
|
})
|
|
|
|
it('create and update state', function () {
|
|
cy.mount(
|
|
<EditorProviders>
|
|
<DetachStateTest
|
|
stateKey="some-key"
|
|
defaultValue="foobar"
|
|
handleClick={setValue => {
|
|
setValue('barbaz')
|
|
}}
|
|
/>
|
|
</EditorProviders>
|
|
)
|
|
|
|
cy.get('#value').should('have.text', 'foobar')
|
|
cy.get('#setValue').click()
|
|
cy.get('#value').should('have.text', 'barbaz')
|
|
})
|
|
|
|
it('broadcast message as sender', function () {
|
|
window.metaAttributesCache.set('ol-detachRole', 'detacher')
|
|
|
|
cy.mount(
|
|
<EditorProviders>
|
|
<DetachStateTest
|
|
stateKey="some-key"
|
|
defaultValue={null}
|
|
senderRole="detacher"
|
|
targetRole="detached"
|
|
handleClick={setValue => {
|
|
setValue('barbaz1')
|
|
}}
|
|
/>
|
|
</EditorProviders>
|
|
)
|
|
|
|
cy.spy(detachChannel, 'postMessage').as('postDetachMessage')
|
|
cy.get('#setValue').click()
|
|
cy.get('@postDetachMessage').should('be.calledWith', {
|
|
role: 'detacher',
|
|
event: 'state-some-key',
|
|
data: { value: 'barbaz1' },
|
|
})
|
|
})
|
|
|
|
it('receive message as target', function () {
|
|
window.metaAttributesCache.set('ol-detachRole', 'detached')
|
|
|
|
cy.mount(
|
|
<EditorProviders>
|
|
<DetachStateTest
|
|
stateKey="some-key"
|
|
defaultValue={null}
|
|
senderRole="detacher"
|
|
targetRole="detached"
|
|
handleClick={() => {}}
|
|
/>
|
|
</EditorProviders>
|
|
)
|
|
|
|
cy.wrap(null).then(() => {
|
|
testDetachChannel.postMessage({
|
|
role: 'detached',
|
|
event: 'state-some-key',
|
|
data: { value: 'barbaz2' },
|
|
})
|
|
})
|
|
|
|
cy.get('#value').should('have.text', 'barbaz2')
|
|
})
|
|
})
|