143 lines
4.3 KiB
TypeScript
143 lines
4.3 KiB
TypeScript
|
import state from 'state'
|
||
|
import inputs from 'state/inputs'
|
||
|
import { idsAreSelected, point } from './test-utils'
|
||
|
import * as json from './__mocks__/document.json'
|
||
|
|
||
|
const rectangleId = '1f6c251c-e12e-40b4-8dd2-c1847d80b72f'
|
||
|
const arrowId = '5ca167d7-54de-47c9-aa8f-86affa25e44d'
|
||
|
|
||
|
// Mount the state and load the test file from json
|
||
|
state.reset()
|
||
|
state.send('MOUNTED').send('LOADED_FROM_FILE', { json: JSON.stringify(json) })
|
||
|
|
||
|
describe('selection', () => {
|
||
|
it('selects a shape', () => {
|
||
|
state
|
||
|
.send('CANCELED')
|
||
|
.send('POINTED_SHAPE', inputs.pointerDown(point(), rectangleId))
|
||
|
.send('STOPPED_POINTING', inputs.pointerUp(point(), rectangleId))
|
||
|
|
||
|
expect(idsAreSelected(state.data, [rectangleId])).toBe(true)
|
||
|
})
|
||
|
|
||
|
it('selects and deselects a shape', () => {
|
||
|
state
|
||
|
.send('CANCELED')
|
||
|
.send('POINTED_SHAPE', inputs.pointerDown(point(), rectangleId))
|
||
|
.send('STOPPED_POINTING', inputs.pointerUp(point(), rectangleId))
|
||
|
|
||
|
expect(idsAreSelected(state.data, [rectangleId])).toBe(true)
|
||
|
|
||
|
state
|
||
|
.send('POINTED_CANVAS', inputs.pointerDown(point(), 'canvas'))
|
||
|
.send('STOPPED_POINTING', inputs.pointerUp(point(), 'canvas'))
|
||
|
|
||
|
expect(idsAreSelected(state.data, [])).toBe(true)
|
||
|
})
|
||
|
|
||
|
it('selects multiple shapes', () => {
|
||
|
expect(idsAreSelected(state.data, [])).toBe(true)
|
||
|
|
||
|
state
|
||
|
.send('POINTED_SHAPE', inputs.pointerDown(point(), rectangleId))
|
||
|
.send('STOPPED_POINTING', inputs.pointerUp(point(), rectangleId))
|
||
|
.send(
|
||
|
'POINTED_SHAPE',
|
||
|
inputs.pointerDown(point({ shiftKey: true }), arrowId)
|
||
|
)
|
||
|
.send(
|
||
|
'STOPPED_POINTING',
|
||
|
inputs.pointerUp(point({ shiftKey: true }), arrowId)
|
||
|
)
|
||
|
|
||
|
expect(idsAreSelected(state.data, [rectangleId, arrowId])).toBe(true)
|
||
|
})
|
||
|
|
||
|
it('shift-selects to deselect shapes', () => {
|
||
|
state
|
||
|
.send('CANCELLED')
|
||
|
.send('POINTED_SHAPE', inputs.pointerDown(point(), rectangleId))
|
||
|
.send('STOPPED_POINTING', inputs.pointerUp(point(), rectangleId))
|
||
|
.send(
|
||
|
'POINTED_SHAPE',
|
||
|
inputs.pointerDown(point({ shiftKey: true }), arrowId)
|
||
|
)
|
||
|
.send(
|
||
|
'STOPPED_POINTING',
|
||
|
inputs.pointerUp(point({ shiftKey: true }), arrowId)
|
||
|
)
|
||
|
.send(
|
||
|
'POINTED_SHAPE',
|
||
|
inputs.pointerDown(point({ shiftKey: true }), rectangleId)
|
||
|
)
|
||
|
.send(
|
||
|
'STOPPED_POINTING',
|
||
|
inputs.pointerUp(point({ shiftKey: true }), rectangleId)
|
||
|
)
|
||
|
|
||
|
expect(idsAreSelected(state.data, [arrowId])).toBe(true)
|
||
|
})
|
||
|
|
||
|
it('single-selects shape in selection on pointerup', () => {
|
||
|
state
|
||
|
.send('CANCELLED')
|
||
|
.send('POINTED_SHAPE', inputs.pointerDown(point(), rectangleId))
|
||
|
.send('STOPPED_POINTING', inputs.pointerUp(point(), rectangleId))
|
||
|
.send(
|
||
|
'POINTED_SHAPE',
|
||
|
inputs.pointerDown(point({ shiftKey: true }), arrowId)
|
||
|
)
|
||
|
.send(
|
||
|
'STOPPED_POINTING',
|
||
|
inputs.pointerUp(point({ shiftKey: true }), arrowId)
|
||
|
)
|
||
|
|
||
|
expect(idsAreSelected(state.data, [rectangleId, arrowId])).toBe(true)
|
||
|
|
||
|
state.send('POINTED_SHAPE', inputs.pointerDown(point(), arrowId))
|
||
|
|
||
|
expect(idsAreSelected(state.data, [rectangleId, arrowId])).toBe(true)
|
||
|
|
||
|
state.send('STOPPED_POINTING', inputs.pointerUp(point(), arrowId))
|
||
|
|
||
|
expect(idsAreSelected(state.data, [arrowId])).toBe(true)
|
||
|
})
|
||
|
|
||
|
it('selects shapes if shift key is lifted before pointerup', () => {
|
||
|
state
|
||
|
.send('CANCELLED')
|
||
|
.send('POINTED_SHAPE', inputs.pointerDown(point(), rectangleId))
|
||
|
.send('STOPPED_POINTING', inputs.pointerUp(point(), rectangleId))
|
||
|
.send(
|
||
|
'POINTED_SHAPE',
|
||
|
inputs.pointerDown(point({ shiftKey: true }), arrowId)
|
||
|
)
|
||
|
.send(
|
||
|
'STOPPED_POINTING',
|
||
|
inputs.pointerUp(point({ shiftKey: true }), arrowId)
|
||
|
)
|
||
|
.send(
|
||
|
'POINTED_SHAPE',
|
||
|
inputs.pointerDown(point({ shiftKey: true }), arrowId)
|
||
|
)
|
||
|
.send('STOPPED_POINTING', inputs.pointerUp(point(), arrowId))
|
||
|
|
||
|
expect(idsAreSelected(state.data, [arrowId])).toBe(true)
|
||
|
})
|
||
|
|
||
|
it('does not select on meta-click', () => {
|
||
|
state
|
||
|
.send('CANCELLED')
|
||
|
.send(
|
||
|
'POINTED_SHAPE',
|
||
|
inputs.pointerDown(point({ ctrlKey: true }), rectangleId)
|
||
|
)
|
||
|
.send(
|
||
|
'STOPPED_POINTING',
|
||
|
inputs.pointerUp(point({ ctrlKey: true }), rectangleId)
|
||
|
)
|
||
|
|
||
|
expect(idsAreSelected(state.data, [])).toBe(true)
|
||
|
})
|
||
|
})
|