-
Notifications
You must be signed in to change notification settings - Fork 2
/
NotionBlockChildren.tsx
215 lines (186 loc) · 6.16 KB
/
NotionBlockChildren.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
'use client';
import clsx from 'clsx';
import { Fragment, type JSX, useState } from 'react';
import {
BlockObjectResponse,
BulletedListItemBlockObjectResponse,
CalloutBlockObjectResponse,
CodeBlockObjectResponse,
EmbedBlockObjectResponse,
Heading1BlockObjectResponse,
Heading2BlockObjectResponse,
Heading3BlockObjectResponse,
ImageBlockObjectResponse,
NumberedListItemBlockObjectResponse,
ParagraphBlockObjectResponse,
QuoteBlockObjectResponse,
TableBlockObjectResponse,
} from '@notionhq/client/build/src/api-endpoints';
import LazyLoader from '@/components/LazyLoader';
import { retrieveNotionBlockChildren } from '@/lib/notion/client';
import NotionBlockBulletedListItem from './NotionBlockBulletedListItem';
import NotionBlockCallout from './NotionBlockCallout';
import NotionBlockCode from './NotionBlockCode';
import NotionBlockDivider from './NotionBlockDivider';
import NotionBlockEmbed from './NotionBlockEmbed';
import NotionBlockHeading1 from './NotionBlockHeading1';
import NotionBlockHeading2 from './NotionBlockHeading2';
import NotionBlockHeading3 from './NotionBlockHeading3';
import NotionBlockImage from './NotionBlockImage';
import NotionBlockNumberedListItem from './NotionBlockNumberedListItem';
import NotionBlockParagraph from './NotionBlockParagraph';
import NotionBlockQuote from './NotionBlockQuote';
import NotionBlockTable from './NotionBlockTable';
const defaultBlockRenderer = (type: BlockObjectResponse['type']) => {
console.log(`${type} is not yet implemented.`);
return null;
};
const blockRenderers: {
[key in BlockObjectResponse['type']]: (
block: BlockObjectResponse,
) => JSX.Element | null;
} = {
heading_1: (block) => (
<NotionBlockHeading1>
{block as Heading1BlockObjectResponse}
</NotionBlockHeading1>
),
heading_2: (block) => (
<NotionBlockHeading2>
{block as Heading2BlockObjectResponse}
</NotionBlockHeading2>
),
heading_3: (block) => (
<NotionBlockHeading3>
{block as Heading3BlockObjectResponse}
</NotionBlockHeading3>
),
paragraph: (block) => (
<NotionBlockParagraph>
{block as ParagraphBlockObjectResponse}
</NotionBlockParagraph>
),
bulleted_list_item: (block) => (
<NotionBlockBulletedListItem>
{block as BulletedListItemBlockObjectResponse}
</NotionBlockBulletedListItem>
),
embed: (block) => (
<NotionBlockEmbed>{block as EmbedBlockObjectResponse}</NotionBlockEmbed>
),
quote: (block) => (
<NotionBlockQuote>{block as QuoteBlockObjectResponse}</NotionBlockQuote>
),
code: (block) => (
<NotionBlockCode>{block as CodeBlockObjectResponse}</NotionBlockCode>
),
divider: () => <NotionBlockDivider />,
callout: (block) => (
<NotionBlockCallout>
{block as CalloutBlockObjectResponse}
</NotionBlockCallout>
),
image: (block) => (
<NotionBlockImage image={block as ImageBlockObjectResponse} />
),
synced_block: () => null,
numbered_list_item: (block) => (
<NotionBlockNumberedListItem
numberedListItem={block as NumberedListItemBlockObjectResponse}
/>
),
table: (block) => (
<NotionBlockTable table={block as TableBlockObjectResponse} />
),
table_row: () => null,
// unimplemented
audio: (block) => defaultBlockRenderer(block.type),
bookmark: (block) => defaultBlockRenderer(block.type),
file: (block) => defaultBlockRenderer(block.type),
pdf: (block) => defaultBlockRenderer(block.type),
video: (block) => defaultBlockRenderer(block.type),
table_of_contents: (block) => defaultBlockRenderer(block.type),
toggle: (block) => defaultBlockRenderer(block.type),
to_do: (block) => defaultBlockRenderer(block.type),
unsupported: (block) => defaultBlockRenderer(block.type),
equation: (block) => defaultBlockRenderer(block.type),
breadcrumb: (block) => defaultBlockRenderer(block.type),
child_database: (block) => defaultBlockRenderer(block.type),
child_page: (block) => defaultBlockRenderer(block.type),
column: (block) => defaultBlockRenderer(block.type),
column_list: (block) => defaultBlockRenderer(block.type),
link_preview: (block) => defaultBlockRenderer(block.type),
link_to_page: (block) => defaultBlockRenderer(block.type),
template: (block) => defaultBlockRenderer(block.type),
};
const noFetchChildren = new Set<BlockObjectResponse['type']>(['table']);
export default function NotionBlockChildren({
children,
}: {
children:
| {
fetching: 'automatic';
blockId: string;
}
| {
fetching: 'manual';
blockChildren: BlockObjectResponse[];
};
}) {
const [automaticBlockChildren, setAutomaticBlockChildren] = useState<
BlockObjectResponse[]
>([]);
const [automaticStartCursor, setAutomaticStartCursor] = useState<
string | null | undefined
>(undefined);
const renderedBlockChildren = (
children.fetching === 'automatic'
? automaticBlockChildren
: children.blockChildren
).map((block) => {
return (
<Fragment key={block.id}>
{blockRenderers[block.type](block)}
{block.has_children && !noFetchChildren.has(block.type) && (
<div
className={clsx({
'ml-[1rem]': block.type !== 'synced_block',
})}
>
<NotionBlockChildren>
{{
fetching: 'automatic',
blockId: block.id,
}}
</NotionBlockChildren>
</div>
)}
</Fragment>
);
});
const [lazyLoaderId, setLazyLoaderId] = useState(0);
return children.fetching === 'automatic' ? (
<LazyLoader
load={() => {
retrieveNotionBlockChildren(
children.blockId,
automaticStartCursor,
).then((listBlockChildrenResponse) => {
setAutomaticStartCursor(listBlockChildrenResponse.next_cursor);
setAutomaticBlockChildren([
...automaticBlockChildren,
...(listBlockChildrenResponse.results as BlockObjectResponse[]),
]);
if (listBlockChildrenResponse.next_cursor !== null) {
setLazyLoaderId(lazyLoaderId + 1);
}
});
}}
id={lazyLoaderId}
>
{renderedBlockChildren}
</LazyLoader>
) : (
renderedBlockChildren
);
}