2021-05-03 15:42:01 +08:00
|
|
|
/// <reference types="cypress" />
|
|
|
|
|
|
|
|
import { Editor } from '@tiptap/core'
|
2022-09-26 20:56:25 +08:00
|
|
|
import Bold from '@tiptap/extension-bold'
|
|
|
|
import Code from '@tiptap/extension-code'
|
|
|
|
import CodeBlock from '@tiptap/extension-code-block'
|
2021-05-03 15:42:01 +08:00
|
|
|
import Document from '@tiptap/extension-document'
|
2022-06-08 20:10:25 +08:00
|
|
|
import History from '@tiptap/extension-history'
|
2021-05-03 15:42:01 +08:00
|
|
|
import Paragraph from '@tiptap/extension-paragraph'
|
|
|
|
import Text from '@tiptap/extension-text'
|
|
|
|
|
|
|
|
describe('can', () => {
|
|
|
|
it('not undo', () => {
|
|
|
|
const editor = new Editor({
|
2023-02-03 00:37:33 +08:00
|
|
|
extensions: [Document, Paragraph, Text, History],
|
2021-05-03 15:42:01 +08:00
|
|
|
})
|
|
|
|
|
|
|
|
const canUndo = editor.can().undo()
|
|
|
|
|
|
|
|
expect(canUndo).to.eq(false)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('undo', () => {
|
|
|
|
const editor = new Editor({
|
2023-02-03 00:37:33 +08:00
|
|
|
extensions: [Document, Paragraph, Text, History],
|
2021-05-03 15:42:01 +08:00
|
|
|
})
|
|
|
|
|
|
|
|
editor.commands.setContent('foo')
|
|
|
|
|
|
|
|
const canUndo = editor.can().undo()
|
|
|
|
|
|
|
|
expect(canUndo).to.eq(true)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('not chain undo', () => {
|
|
|
|
const editor = new Editor({
|
2023-02-03 00:37:33 +08:00
|
|
|
extensions: [Document, Paragraph, Text, History],
|
2021-05-03 15:42:01 +08:00
|
|
|
})
|
|
|
|
|
|
|
|
const canUndo = editor.can().chain().undo().run()
|
|
|
|
|
|
|
|
expect(canUndo).to.eq(false)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('chain undo', () => {
|
|
|
|
const editor = new Editor({
|
2023-02-03 00:37:33 +08:00
|
|
|
extensions: [Document, Paragraph, Text, History],
|
2021-05-03 15:42:01 +08:00
|
|
|
})
|
|
|
|
|
|
|
|
editor.commands.setContent('foo')
|
|
|
|
|
|
|
|
const canUndo = editor.can().chain().undo().run()
|
|
|
|
|
|
|
|
expect(canUndo).to.eq(true)
|
|
|
|
})
|
2022-09-26 20:56:25 +08:00
|
|
|
|
|
|
|
it('returns false for non-applicable marks when selection contains node in conflict', () => {
|
|
|
|
const editor = new Editor({
|
2023-02-03 00:37:33 +08:00
|
|
|
extensions: [Document, Paragraph, Text, History, CodeBlock, Bold],
|
2022-09-26 20:56:25 +08:00
|
|
|
})
|
|
|
|
|
2023-02-03 00:37:33 +08:00
|
|
|
editor
|
|
|
|
.chain()
|
2022-09-26 20:56:25 +08:00
|
|
|
.setCodeBlock()
|
|
|
|
.insertContent('Test code block')
|
|
|
|
.setTextSelection({ from: 2, to: 3 })
|
|
|
|
.selectAll()
|
|
|
|
.run()
|
|
|
|
|
|
|
|
const canSetMarkToBold = editor.can().setMark('bold')
|
|
|
|
|
|
|
|
expect(canSetMarkToBold).to.eq(false)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('returns false for non-applicable marks when selection contains marks in conflict', () => {
|
|
|
|
const editor = new Editor({
|
2023-02-03 00:37:33 +08:00
|
|
|
extensions: [Document, Paragraph, Text, History, Code, Bold],
|
2022-09-26 20:56:25 +08:00
|
|
|
})
|
|
|
|
|
2023-02-03 00:37:33 +08:00
|
|
|
editor.chain().setContent('<code>test</code>').setTextSelection({ from: 2, to: 3 }).run()
|
2022-09-26 20:56:25 +08:00
|
|
|
|
|
|
|
const canSetMarkToBold = editor.can().setMark('bold')
|
|
|
|
|
|
|
|
expect(canSetMarkToBold).to.eq(false)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('returns false for non-applicable marks when stored marks in conflict', () => {
|
|
|
|
const editor = new Editor({
|
2023-02-03 00:37:33 +08:00
|
|
|
extensions: [Document, Paragraph, Text, History, Code, Bold],
|
2022-09-26 20:56:25 +08:00
|
|
|
})
|
|
|
|
|
|
|
|
editor.chain().setContent('<code>test</code>').run()
|
|
|
|
|
|
|
|
const canSetMarkToBold = editor.can().setMark('bold')
|
|
|
|
|
|
|
|
expect(canSetMarkToBold).to.eq(false)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('returns false for non-applicable marks when selecting multiple nodes in conflict', () => {
|
|
|
|
const editor = new Editor({
|
2023-02-03 00:37:33 +08:00
|
|
|
extensions: [Document, Paragraph, Text, History, Code, Bold],
|
2022-09-26 20:56:25 +08:00
|
|
|
})
|
|
|
|
|
|
|
|
editor.chain().setContent('<code>test</code><code>123</code>').selectAll().run()
|
|
|
|
|
|
|
|
const canSetMarkToBold = editor.can().setMark('bold')
|
|
|
|
|
|
|
|
expect(canSetMarkToBold).to.eq(false)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('returns true for applicable marks when selection does not contain nodes in conflict', () => {
|
|
|
|
const editor = new Editor({
|
2023-02-03 00:37:33 +08:00
|
|
|
extensions: [Document, Paragraph, Text, History, CodeBlock, Bold],
|
2022-09-26 20:56:25 +08:00
|
|
|
})
|
|
|
|
|
2023-02-03 00:37:33 +08:00
|
|
|
editor
|
|
|
|
.chain()
|
2022-09-26 20:56:25 +08:00
|
|
|
.setCodeBlock()
|
|
|
|
.insertContent('Test code block')
|
|
|
|
.exitCode()
|
|
|
|
.insertContent('Additional paragraph node')
|
|
|
|
.selectAll()
|
|
|
|
.run()
|
|
|
|
|
|
|
|
const canSetMarkToBold = editor.can().setMark('bold')
|
|
|
|
|
|
|
|
expect(canSetMarkToBold).to.eq(true)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('returns true for applicable marks when stored marks are not in conflict', () => {
|
|
|
|
const editor = new Editor({
|
2023-02-03 00:37:33 +08:00
|
|
|
extensions: [Document, Paragraph, Text, History, Code, Bold],
|
2022-09-26 20:56:25 +08:00
|
|
|
})
|
|
|
|
|
|
|
|
editor.chain().setContent('<code>test</code>').toggleCode().run()
|
|
|
|
|
|
|
|
const canSetMarkToBold = editor.can().setMark('bold')
|
|
|
|
|
|
|
|
expect(canSetMarkToBold).to.eq(true)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('returns true for applicable marks when selection does not contain marks in conflict', () => {
|
|
|
|
const editor = new Editor({
|
2023-02-03 00:37:33 +08:00
|
|
|
extensions: [Document, Paragraph, Text, History, Code, Bold],
|
2022-09-26 20:56:25 +08:00
|
|
|
})
|
|
|
|
|
2023-02-03 00:37:33 +08:00
|
|
|
editor
|
|
|
|
.chain()
|
2022-09-26 20:56:25 +08:00
|
|
|
.setContent('<code>test</code>')
|
|
|
|
.setTextSelection({ from: 2, to: 3 })
|
|
|
|
.toggleCode()
|
|
|
|
.run()
|
|
|
|
|
|
|
|
const canSetMarkToBold = editor.can().setMark('bold')
|
|
|
|
|
|
|
|
expect(canSetMarkToBold).to.eq(true)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('returns true for applicable marks if at least one node in selection has no marks in conflict', () => {
|
|
|
|
const editor = new Editor({
|
2023-02-03 00:37:33 +08:00
|
|
|
extensions: [Document, Paragraph, Text, History, Code, Bold],
|
2022-09-26 20:56:25 +08:00
|
|
|
})
|
|
|
|
|
|
|
|
editor.chain().setContent('<code>test</code><i>123</i>').selectAll().run()
|
|
|
|
|
|
|
|
const canSetMarkToBold = editor.can().setMark('bold')
|
|
|
|
|
|
|
|
expect(canSetMarkToBold).to.eq(true)
|
|
|
|
})
|
2021-05-03 15:42:01 +08:00
|
|
|
})
|