-
Notifications
You must be signed in to change notification settings - Fork 129
/
Copy pathserialize.tsx
231 lines (206 loc) · 7.3 KB
/
serialize.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
import React, { Fragment, JSX } from 'react'
import { DefaultNodeTypes, SerializedBlockNode } from '@payloadcms/richtext-lexical'
import escapeHTML from 'escape-html'
import {
IS_BOLD,
IS_CODE,
IS_ITALIC,
IS_STRIKETHROUGH,
IS_SUBSCRIPT,
IS_SUPERSCRIPT,
IS_UNDERLINE,
} from './nodeFormat'
import { Highlight } from '@components/Highlight'
import SplitAnimate from '@components/SplitAnimate'
import { BrBlock, SpotlightBlock, VideoBlock } from '@types'
import { Video } from '@components/RichText/Video'
import { AllowedElements } from '@components/SpotlightAnimation/types'
import SpotlightAnimation from '@components/SpotlightAnimation'
import { CMSLink, Reference } from '@components/CMSLink'
import { Label } from '@components/Label'
import { LargeBody } from '@components/LargeBody'
import { SerializedLabelNode } from '@root/fields/richText/features/label/LabelNode'
import { SerializedLargeBodyNode } from '@root/fields/richText/features/largeBody/LargeBodyNode'
import RichTextUpload from '@components/RichText/Upload'
export type NodeTypes =
| DefaultNodeTypes
| SerializedBlockNode<SpotlightBlock | VideoBlock | BrBlock>
| SerializedLabelNode
| SerializedLargeBodyNode
type Props = {
textInSplitAnimate?: boolean
nodes: NodeTypes[]
}
export function serializeLexical({ nodes, textInSplitAnimate }: Props): JSX.Element {
return (
<Fragment>
{nodes?.map((node, i): JSX.Element | null => {
if (node == null) {
return null
}
if (node.type === 'text') {
const escapedText = escapeHTML(node.text)
let text = <React.Fragment key={i}>{escapedText}</React.Fragment>
if (node.format & IS_BOLD) {
text = <strong key={i}>{text}</strong>
}
if (node.format & IS_ITALIC) {
text = <em key={i}>{text}</em>
}
if (node.format & IS_STRIKETHROUGH) {
text = (
<span key={i} style={{ textDecoration: 'line-through' }}>
{escapedText}
</span>
)
}
if (node.format & IS_UNDERLINE) {
text = <Highlight key={i} {...node} text={escapedText} />
}
if (node.format & IS_CODE) {
text = <code key={i}>{escapedText}</code>
}
if (node.format & IS_SUBSCRIPT) {
text = <sub key={i}>{escapedText}</sub>
}
if (node.format & IS_SUPERSCRIPT) {
text = <sup key={i}>{escapedText}</sup>
}
if (textInSplitAnimate) {
text = <SplitAnimate key={i} text={escapedText} />
}
return text
}
// NOTE: Hacky fix for
// https://github.com/facebook/lexical/blob/d10c4e6e55261b2fdd7d1845aed46151d0f06a8c/packages/lexical-list/src/LexicalListItemNode.ts#L133
// which does not return checked: false (only true - i.e. there is no prop for false)
const serializedChildrenFn = (node: NodeTypes): JSX.Element | null => {
if (node.children == null) {
return null
} else {
if (node?.type === 'list' && node?.listType === 'check') {
for (const item of node.children) {
if ('checked' in item) {
if (!item?.checked) {
item.checked = false
}
}
}
}
return serializeLexical({ nodes: node.children as NodeTypes[] })
}
}
const serializedChildren = 'children' in node ? serializedChildrenFn(node) : ''
if (node.type === 'block') {
const block = node.fields
const blockType = block?.blockType
if (!block || !blockType) {
return null
}
switch (blockType) {
case 'br':
return <br key={i} />
case 'video':
const { url } = block
if (url && (url.includes('vimeo') || url.includes('youtube'))) {
const source = url.includes('vimeo') ? 'vimeo' : 'youtube'
const id = source === 'vimeo' ? url.split('/').pop() : url.split('v=').pop()
return <Video key={i} platform={source} id={id as string} />
}
return null
case 'spotlight':
const { element, richText } = block
const as: AllowedElements = (element as AllowedElements) ?? 'h2'
const Children = serializeLexical({ nodes: richText?.root?.children as NodeTypes[] })
return (
<SpotlightAnimation key={i} as={as} richTextChildren={node.children}>
{Children}
</SpotlightAnimation>
)
default:
return null
}
} else {
switch (node.type) {
case 'linebreak': {
return <br className="col-start-2" key={i} />
}
case 'paragraph': {
return (
<p className="col-start-2" key={i}>
{serializedChildren}
</p>
)
}
case 'heading': {
const Tag = node?.tag
return (
<Tag className="col-start-2" key={i}>
{serializedChildren}
</Tag>
)
}
case 'list': {
const Tag = node?.tag
return (
<Tag className="list col-start-2" key={i}>
{serializedChildren}
</Tag>
)
}
case 'listitem': {
if (node?.checked != null) {
return (
<li
aria-checked={node.checked ? 'true' : 'false'}
className={` ${node.checked ? '' : ''}`}
key={i}
// eslint-disable-next-line jsx-a11y/no-noninteractive-element-to-interactive-role
role="checkbox"
tabIndex={-1}
value={node?.value}
>
{serializedChildren}
</li>
)
} else {
return (
<li key={i} value={node?.value}>
{serializedChildren}
</li>
)
}
}
case 'quote': {
return <blockquote key={i}>{serializedChildren}</blockquote>
}
case 'link': {
const fields = node.fields
return (
<CMSLink
key={i}
newTab={Boolean(fields?.newTab)}
reference={fields.doc as Reference}
type={fields.linkType === 'internal' ? 'reference' : 'custom'}
url={fields.url}
>
{serializedChildren}
</CMSLink>
)
}
case 'upload': {
return <RichTextUpload key={i} node={node} />
}
case 'label':
return <Label key={i}>{serializedChildren}</Label>
case 'largeBody': {
return <LargeBody key={i}>{serializedChildren}</LargeBody>
}
default:
return null
}
}
})}
</Fragment>
)
}