-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathBlocksRenderer.tsx
238 lines (204 loc) · 6.92 KB
/
BlocksRenderer.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
232
233
234
235
236
237
238
'use client';
import * as React from 'react';
import { Block } from './Block';
import { type Modifier, type TextInlineNode } from './Text';
/* -------------------------------------------------------------------------------------------------
* TypeScript types and utils
* -----------------------------------------------------------------------------------------------*/
interface LinkInlineNode {
type: 'link';
url: string;
children: TextInlineNode[];
}
interface ListItemInlineNode {
type: 'list-item';
children: DefaultInlineNode[];
}
// Inline node types
type DefaultInlineNode = TextInlineNode | LinkInlineNode;
type NonTextInlineNode = Exclude<DefaultInlineNode, TextInlineNode> | ListItemInlineNode;
interface ParagraphBlockNode {
type: 'paragraph';
children: DefaultInlineNode[];
}
interface QuoteBlockNode {
type: 'quote';
children: DefaultInlineNode[];
}
interface CodeBlockNode {
type: 'code';
children: DefaultInlineNode[];
language: string;
}
interface HeadingBlockNode {
type: 'heading';
level: 1 | 2 | 3 | 4 | 5 | 6;
children: DefaultInlineNode[];
}
interface ListBlockNode {
type: 'list';
format: 'ordered' | 'unordered';
children: (ListItemInlineNode | ListBlockNode)[];
}
interface ImageBlockNode {
type: 'image';
image: {
name: string;
alternativeText?: string | null;
url: string;
caption?: string | null;
width: number;
height: number;
formats?: Record<string, unknown>;
hash: string;
ext: string;
mime: string;
size: number;
previewUrl?: string | null;
provider: string;
provider_metadata?: unknown | null;
createdAt: string;
updatedAt: string;
};
children: [{ type: 'text'; text: '' }];
}
// Block node types
type RootNode =
| ParagraphBlockNode
| QuoteBlockNode
| CodeBlockNode
| HeadingBlockNode
| ListBlockNode
| ImageBlockNode;
type Node = RootNode | NonTextInlineNode;
// Util to convert a node to the props of the corresponding React component
type GetPropsFromNode<T> = Omit<T, 'type' | 'children'> & {
children?: React.ReactNode;
// For code blocks, add a plainText property that is created by this renderer
plainText?: T extends { type: 'code' } ? string : never;
};
// Map of all block types to their matching React component
type BlocksComponents = {
[K in Node['type']]: React.ComponentType<
// Find the BlockProps in the union that match the type key of the current BlockNode
// and use it as the component props
GetPropsFromNode<Extract<Node, { type: K }>>
>;
};
// Map of all inline types to their matching React component
type ModifiersComponents = {
[K in Modifier]: React.ComponentType<{ children: React.ReactNode }>;
};
/* -------------------------------------------------------------------------------------------------
* Default blocks and modifiers components
* -----------------------------------------------------------------------------------------------*/
interface ComponentsContextValue {
blocks: BlocksComponents;
modifiers: ModifiersComponents;
missingBlockTypes: string[];
missingModifierTypes: string[];
}
const defaultComponents: ComponentsContextValue = {
blocks: {
paragraph: (props) => <p>{props.children}</p>,
quote: (props) => <blockquote>{props.children}</blockquote>,
code: (props) => (
<pre>
<code>{props.plainText}</code>
</pre>
),
heading: ({ level, children }) => {
switch (level) {
case 1:
return <h1>{children}</h1>;
case 2:
return <h2>{children}</h2>;
case 3:
return <h3>{children}</h3>;
case 4:
return <h4>{children}</h4>;
case 5:
return <h5>{children}</h5>;
case 6:
return <h6>{children}</h6>;
}
},
link: (props) => <a href={props.url}>{props.children}</a>,
list: (props) => {
if (props.format === 'ordered') {
return <ol>{props.children}</ol>;
}
return <ul>{props.children}</ul>;
},
'list-item': (props) => <li>{props.children}</li>,
image: (props) => <img src={props.image.url} alt={props.image.alternativeText || undefined} />,
},
modifiers: {
bold: (props) => <strong>{props.children}</strong>,
italic: (props) => <em>{props.children}</em>,
underline: (props) => <u>{props.children}</u>,
strikethrough: (props) => <del>{props.children}</del>,
code: (props) => <code>{props.children}</code>,
},
missingBlockTypes: [],
missingModifierTypes: [],
};
/* -------------------------------------------------------------------------------------------------
* Context to pass blocks and inline components to the nested components
* -----------------------------------------------------------------------------------------------*/
const ComponentsContext = React.createContext<ComponentsContextValue>(defaultComponents);
interface ComponentsProviderProps {
children: React.ReactNode;
value?: ComponentsContextValue;
}
// Provide default value so we don't need to import defaultComponents in all tests
const ComponentsProvider = ({ children, value = defaultComponents }: ComponentsProviderProps) => {
const memoizedValue = React.useMemo(() => value, [value]);
return <ComponentsContext.Provider value={memoizedValue}>{children}</ComponentsContext.Provider>;
};
function useComponentsContext() {
return React.useContext(ComponentsContext);
}
/* -------------------------------------------------------------------------------------------------
* BlocksRenderer
* -----------------------------------------------------------------------------------------------*/
interface BlocksRendererProps {
content: RootNode[];
blocks?: Partial<BlocksComponents>;
modifiers?: Partial<ModifiersComponents>;
}
const BlocksRenderer = (props: BlocksRendererProps) => {
// Merge default blocks with the ones provided by the user
const blocks = {
...defaultComponents.blocks,
...props.blocks,
};
// Merge default modifiers with the ones provided by the user
const modifiers = {
...defaultComponents.modifiers,
...props.modifiers,
};
// Use refs because we can mutate them and avoid triggering re-renders
const missingBlockTypes = React.useRef<string[]>([]);
const missingModifierTypes = React.useRef<string[]>([]);
return (
<ComponentsProvider
value={{
blocks,
modifiers,
missingBlockTypes: missingBlockTypes.current,
missingModifierTypes: missingModifierTypes.current,
}}
>
{/* TODO use WeakMap instead of index as the key */}
{props.content.map((content, index) => (
<Block content={content} key={index} />
))}
</ComponentsProvider>
);
};
/* -------------------------------------------------------------------------------------------------
* Exports
* -----------------------------------------------------------------------------------------------*/
export type { RootNode, Node, GetPropsFromNode };
export { ComponentsProvider, useComponentsContext, BlocksRenderer };