Add Underline demo for React

This commit is contained in:
svenadlung 2021-11-16 17:47:55 +01:00
parent 9bfeb70848
commit c6071d5ab6
3 changed files with 120 additions and 0 deletions

View File

@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<div id="app"></div>
<script type="module">
import setup from "../../../../setup/react.ts";
import source from "@source";
setup("Marks/Underline", source);
</script>
</body>
</html>

View File

@ -0,0 +1,46 @@
import React from 'react'
import { useEditor, EditorContent } from '@tiptap/react'
import Document from '@tiptap/extension-document'
import Paragraph from '@tiptap/extension-paragraph'
import Text from '@tiptap/extension-text'
import Underline from '@tiptap/extension-underline'
export default () => {
const editor = useEditor({
extensions: [Document, Paragraph, Text, Underline],
content: `
<p>There is no underline here.</p>
<p><u>This is underlined though.</u></p>
<p style="text-decoration: underline">And this as well.</p>
`,
})
if (!editor) {
return null
}
return (
<>
<button
onClick={() => editor.chain().focus().toggleUnderline().run()}
className={editor.isActive('underline') ? 'is-active' : ''}
>
toggleUnderline
</button>
<button
onClick={() => editor.chain().focus().setUnderline().run()}
disabled={editor.isActive('underline')}
>
setUnderline
</button>
<button
onClick={() => editor.chain().focus().unsetUnderline().run()}
disabled={!editor.isActive('underline')}
>
unsetUnderline
</button>
<EditorContent editor={editor} />
</>
)
}

View File

@ -0,0 +1,59 @@
context('/src/Marks/Underline/React/', () => {
before(() => {
cy.visit('/src/Marks/Underline/React/')
})
beforeEach(() => {
cy.get('.ProseMirror').then(([{ editor }]) => {
editor.commands.setContent('<p>Example Text</p>')
cy.get('.ProseMirror').type('{selectall}')
})
})
it('should parse u tags correctly', () => {
cy.get('.ProseMirror').then(([{ editor }]) => {
editor.commands.setContent('<p><u>Example Text</u></p>')
expect(editor.getHTML()).to.eq('<p><u>Example Text</u></p>')
})
})
it('should transform any tag with text decoration underline to u tags', () => {
cy.get('.ProseMirror').then(([{ editor }]) => {
editor.commands.setContent(
'<p><span style="text-decoration: underline">Example Text</span></p>',
)
expect(editor.getHTML()).to.eq('<p><u>Example Text</u></p>')
})
})
it('the button should underline the selected text', () => {
cy.get('button:first').click()
cy.get('.ProseMirror').find('u').should('contain', 'Example Text')
})
it('the button should toggle the selected text underline', () => {
cy.get('button:first').click()
cy.get('.ProseMirror').type('{selectall}')
cy.get('button:first').click()
cy.get('.ProseMirror').find('u').should('not.exist')
})
it('should underline the selected text when the keyboard shortcut is pressed', () => {
cy.get('.ProseMirror')
.trigger('keydown', { modKey: true, key: 'u' })
.find('u')
.should('contain', 'Example Text')
})
it('should toggle the selected text underline when the keyboard shortcut is pressed', () => {
cy.get('.ProseMirror')
.trigger('keydown', { modKey: true, key: 'u' })
.trigger('keydown', { modKey: true, key: 'u' })
.find('u')
.should('not.exist')
})
})