mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-11-24 03:39:01 +08:00
fix: unexpected renderText() for contentful nodes (#3410)
This commit is contained in:
parent
ee645c1eca
commit
d6c71a838d
@ -33,7 +33,11 @@ export function getTextBetween(
|
||||
range,
|
||||
})
|
||||
}
|
||||
} else if (node.isText) {
|
||||
// do not descend into child nodes when there exists a serializer
|
||||
return false
|
||||
}
|
||||
|
||||
if (node.isText) {
|
||||
text += node?.text?.slice(Math.max(from, pos) - pos, to - pos) // eslint-disable-line
|
||||
separated = false
|
||||
} else if (node.isBlock && !separated) {
|
||||
|
66
tests/cypress/integration/core/generateText.spec.ts
Normal file
66
tests/cypress/integration/core/generateText.spec.ts
Normal file
@ -0,0 +1,66 @@
|
||||
/// <reference types="cypress" />
|
||||
|
||||
import { generateText, Node, NodeConfig } from '@tiptap/core'
|
||||
import Document from '@tiptap/extension-document'
|
||||
import Paragraph from '@tiptap/extension-paragraph'
|
||||
import Text from '@tiptap/extension-text'
|
||||
|
||||
describe(generateText.name, () => {
|
||||
it('generates Text from JSON without an editor instance', () => {
|
||||
const json = {
|
||||
type: 'doc',
|
||||
content: [{
|
||||
type: 'paragraph',
|
||||
content: [
|
||||
{
|
||||
type: 'custom-node-default-renderer',
|
||||
content: [
|
||||
{
|
||||
type: 'text',
|
||||
text: 'Example One',
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
type: 'text',
|
||||
text: ' ',
|
||||
},
|
||||
{
|
||||
type: 'custom-node-custom-renderer',
|
||||
content: [
|
||||
{
|
||||
type: 'text',
|
||||
text: 'Example Two',
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
}],
|
||||
}
|
||||
|
||||
const contentfulInlineNode = (name: string, config?: Partial<NodeConfig>) => Node.create({
|
||||
name,
|
||||
group: 'inline',
|
||||
inline: true,
|
||||
content: 'text*',
|
||||
parseHTML() {
|
||||
return [{ tag: name }]
|
||||
},
|
||||
...config,
|
||||
})
|
||||
|
||||
const text = generateText(json, [
|
||||
Document,
|
||||
Paragraph,
|
||||
Text,
|
||||
contentfulInlineNode('custom-node-default-renderer'),
|
||||
contentfulInlineNode('custom-node-custom-renderer', {
|
||||
renderText({ node }) {
|
||||
return `~${node.textContent}~`
|
||||
},
|
||||
}),
|
||||
])
|
||||
|
||||
expect(text).to.eq('Example One ~Example Two~')
|
||||
})
|
||||
})
|
Loading…
Reference in New Issue
Block a user