-
Notifications
You must be signed in to change notification settings - Fork 432
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(portable-text-editor): add
isSelectionsOverlapping
test
- Loading branch information
1 parent
ffb5007
commit 0eaebb1
Showing
1 changed file
with
162 additions
and
0 deletions.
There are no files selected for viewing
162 changes: 162 additions & 0 deletions
162
...le-text-editor/src/editor/plugins/__tests__/withEditableAPISelectionsOverlapping.test.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,162 @@ | ||
import {describe, expect, it, jest} from '@jest/globals' | ||
import {type PortableTextBlock} from '@sanity/types' | ||
import {render, waitFor} from '@testing-library/react' | ||
import {createRef, type RefObject} from 'react' | ||
|
||
import {PortableTextEditorTester, schemaType} from '../../__tests__/PortableTextEditorTester' | ||
import {PortableTextEditor} from '../../PortableTextEditor' | ||
|
||
const INITIAL_VALUE: PortableTextBlock[] = [ | ||
{ | ||
_key: 'a', | ||
_type: 'block', | ||
children: [ | ||
{ | ||
_key: 'a1', | ||
_type: 'span', | ||
marks: [], | ||
text: 'This is some text in the block', | ||
}, | ||
], | ||
markDefs: [], | ||
style: 'normal', | ||
}, | ||
] | ||
|
||
describe('plugin:withEditableAPI: .isSelectionsOverlapping', () => { | ||
it('returns true if the selections are partially overlapping', async () => { | ||
const editorRef: RefObject<PortableTextEditor> = createRef() | ||
const onChange = jest.fn() | ||
render( | ||
<PortableTextEditorTester | ||
onChange={onChange} | ||
ref={editorRef} | ||
schemaType={schemaType} | ||
value={INITIAL_VALUE} | ||
/>, | ||
) | ||
const selectionA = { | ||
focus: {path: [{_key: 'a'}, 'children', {_key: 'a1'}], offset: 4}, | ||
anchor: {path: [{_key: 'a'}, 'children', {_key: 'a1'}], offset: 8}, | ||
} | ||
|
||
const selectionB = { | ||
focus: {path: [{_key: 'a'}, 'children', {_key: 'a1'}], offset: 2}, | ||
anchor: {path: [{_key: 'a'}, 'children', {_key: 'a1'}], offset: 6}, | ||
} | ||
|
||
await waitFor(() => { | ||
if (editorRef.current) { | ||
const isOverlapping = PortableTextEditor.isSelectionsOverlapping( | ||
editorRef.current, | ||
selectionA, | ||
selectionB, | ||
) | ||
|
||
expect(isOverlapping).toBe(true) | ||
} | ||
}) | ||
}) | ||
|
||
it('returns true if the selections are fully overlapping', async () => { | ||
const editorRef: RefObject<PortableTextEditor> = createRef() | ||
const onChange = jest.fn() | ||
render( | ||
<PortableTextEditorTester | ||
onChange={onChange} | ||
ref={editorRef} | ||
schemaType={schemaType} | ||
value={INITIAL_VALUE} | ||
/>, | ||
) | ||
const selectionA = { | ||
focus: {path: [{_key: 'a'}, 'children', {_key: 'a1'}], offset: 4}, | ||
anchor: {path: [{_key: 'a'}, 'children', {_key: 'a1'}], offset: 8}, | ||
} | ||
|
||
const selectionB = { | ||
focus: {path: [{_key: 'a'}, 'children', {_key: 'a1'}], offset: 4}, | ||
anchor: {path: [{_key: 'a'}, 'children', {_key: 'a1'}], offset: 8}, | ||
} | ||
|
||
await waitFor(() => { | ||
if (editorRef.current) { | ||
const isOverlapping = PortableTextEditor.isSelectionsOverlapping( | ||
editorRef.current, | ||
selectionA, | ||
selectionB, | ||
) | ||
|
||
expect(isOverlapping).toBe(true) | ||
} | ||
}) | ||
}) | ||
|
||
it('return true if selection is fully inside another selection', async () => { | ||
const editorRef: RefObject<PortableTextEditor> = createRef() | ||
const onChange = jest.fn() | ||
render( | ||
<PortableTextEditorTester | ||
onChange={onChange} | ||
ref={editorRef} | ||
schemaType={schemaType} | ||
value={INITIAL_VALUE} | ||
/>, | ||
) | ||
const selectionA = { | ||
focus: {path: [{_key: 'a'}, 'children', {_key: 'a1'}], offset: 2}, | ||
anchor: {path: [{_key: 'a'}, 'children', {_key: 'a1'}], offset: 10}, | ||
} | ||
|
||
const selectionB = { | ||
focus: {path: [{_key: 'a'}, 'children', {_key: 'a1'}], offset: 4}, | ||
anchor: {path: [{_key: 'a'}, 'children', {_key: 'a1'}], offset: 6}, | ||
} | ||
|
||
await waitFor(() => { | ||
if (editorRef.current) { | ||
const isOverlapping = PortableTextEditor.isSelectionsOverlapping( | ||
editorRef.current, | ||
selectionA, | ||
selectionB, | ||
) | ||
|
||
expect(isOverlapping).toBe(true) | ||
} | ||
}) | ||
}) | ||
|
||
it('returns false if the selections are not overlapping', async () => { | ||
const editorRef: RefObject<PortableTextEditor> = createRef() | ||
const onChange = jest.fn() | ||
render( | ||
<PortableTextEditorTester | ||
onChange={onChange} | ||
ref={editorRef} | ||
schemaType={schemaType} | ||
value={INITIAL_VALUE} | ||
/>, | ||
) | ||
const selectionA = { | ||
focus: {path: [{_key: 'a'}, 'children', {_key: 'a1'}], offset: 4}, | ||
anchor: {path: [{_key: 'a'}, 'children', {_key: 'a1'}], offset: 8}, | ||
} | ||
|
||
const selectionB = { | ||
focus: {path: [{_key: 'a'}, 'children', {_key: 'a1'}], offset: 10}, | ||
anchor: {path: [{_key: 'a'}, 'children', {_key: 'a1'}], offset: 12}, | ||
} | ||
|
||
await waitFor(() => { | ||
if (editorRef.current) { | ||
const isOverlapping = PortableTextEditor.isSelectionsOverlapping( | ||
editorRef.current, | ||
selectionA, | ||
selectionB, | ||
) | ||
|
||
expect(isOverlapping).toBe(false) | ||
} | ||
}) | ||
}) | ||
}) |