-
-
Notifications
You must be signed in to change notification settings - Fork 605
/
Copy pathblock.ts
473 lines (422 loc) · 8.75 KB
/
block.ts
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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
import { type Color, type Decoration, type ID, type Role } from './core'
export type BlockType =
| 'page'
| 'text'
| 'bookmark'
| 'bulleted_list'
| 'numbered_list'
| 'header'
| 'sub_header'
| 'sub_sub_header'
| 'quote'
| 'equation'
| 'to_do'
| 'table_of_contents'
| 'divider'
| 'column_list'
| 'column'
| 'callout'
| 'toggle'
| 'image'
| 'embed'
| 'gist'
| 'video'
| 'figma'
| 'typeform'
| 'replit'
| 'codepen'
| 'excalidraw'
| 'tweet'
| 'maps'
| 'pdf'
| 'audio'
| 'drive'
| 'file'
| 'code'
| 'collection_view'
| 'collection_view_page'
| 'transclusion_container'
| 'transclusion_reference'
| 'alias'
| 'table'
| 'table_row'
| 'external_object_instance'
| 'breadcrumb'
| 'miro'
// fallback for unknown blocks
| string
/** The different block values a block can have. */
export type Block =
| TextBlock
| PageBlock
| BulletedListBlock
| NumberedListBlock
| HeaderBlock
| SubHeaderBlock
| SubSubHeaderBlock
| TodoBlock
| TableOfContentsBlock
| DividerBlock
| ColumnListBlock
| ColumnBlock
| QuoteBlock
| EquationBlock
| CodeBlock
| ImageBlock
| VideoBlock
| FigmaBlock
| TypeformBlock
| ReplitBlock
| CodepenBlock
| ExcalidrawBlock
| TweetBlock
| PdfBlock
| MapsBlock
| AudioBlock
| GoogleDriveBlock
| FileBlock
| EmbedBlock
| GistBlock
| CalloutBlock
| BookmarkBlock
| ToggleBlock
| CollectionViewBlock
| CollectionViewPageBlock
| SyncBlock
| SyncPointerBlock
| PageLink
| TableBlock
| TableRowBlock
| ExternalObjectInstance
| BreadcrumbInstance
/**
* Base properties shared by all blocks.
*/
export interface BaseBlock {
id: ID
type: BlockType
properties?: any
format?: any
content?: ID[]
space_id?: ID
parent_id: ID
parent_table: string | 'space' | 'block' | 'table'
version: number
created_time: number
last_edited_time: number
alive: boolean
created_by_table: string
created_by_id: ID
last_edited_by_table: string
last_edited_by_id: ID
}
export interface BaseTextBlock extends BaseBlock {
// some text blocks occasionally have children
content?: ID[]
properties?: {
title: Decoration[]
}
format?: {
block_color: Color
}
}
export interface BaseContentBlock extends BaseBlock {
properties: {
source: string[][]
caption?: Decoration[]
alt_text?: Decoration[]
}
format?: {
block_alignment: 'center' | 'left' | 'right'
block_width: number
block_height: number
display_source: string
block_full_width: boolean
block_page_width: boolean
block_aspect_ratio: number
block_preserve_scale: boolean
}
file_ids?: string[]
}
export interface BasePageBlock extends BaseBlock {
properties?: {
title: Decoration[]
}
format: {
page_full_width?: boolean
page_small_text?: boolean
page_cover_position?: number
card_cover_position?: number
block_locked?: boolean
block_locked_by?: string
page_cover?: string
page_icon?: string
block_color?: Color
}
permissions: { role: Role; type: string }[]
file_ids?: string[]
}
export interface PageBlock extends BasePageBlock {
type: 'page'
}
export interface BookmarkBlock extends BaseBlock {
type: 'bookmark'
properties: {
link: Decoration[]
title: Decoration[]
description: Decoration[]
}
format: {
block_color?: string
bookmark_icon: string
bookmark_cover: string
}
}
export interface TextBlock extends BaseTextBlock {
type: 'text'
}
export interface BulletedListBlock extends BaseTextBlock {
type: 'bulleted_list'
}
export interface NumberedListBlock extends BaseTextBlock {
type: 'numbered_list'
}
export interface HeaderBlock extends BaseTextBlock {
type: 'header'
format?: {
block_color: Color
toggleable?: boolean
}
}
export interface SubHeaderBlock extends BaseTextBlock {
type: 'sub_header'
format?: {
block_color: Color
toggleable?: boolean
}
}
export interface SubSubHeaderBlock extends BaseTextBlock {
type: 'sub_sub_header'
format?: {
block_color: Color
toggleable?: boolean
}
}
export interface QuoteBlock extends BaseTextBlock {
type: 'quote'
}
export interface EquationBlock extends BaseTextBlock {
type: 'equation'
}
// TODO
export interface TodoBlock extends BaseTextBlock {
type: 'to_do'
properties: {
title: Decoration[]
checked: (['Yes'] | ['No'])[]
}
}
export interface TableOfContentsBlock extends BaseBlock {
type: 'table_of_contents'
format?: {
block_color: Color
}
}
export interface DividerBlock extends BaseBlock {
type: 'divider'
}
export interface ColumnListBlock extends BaseBlock {
type: 'column_list'
}
export interface ColumnBlock extends BaseBlock {
type: 'column'
format: {
column_ratio: number
}
}
export interface CalloutBlock extends BaseBlock {
type: 'callout'
format: {
page_icon: string
block_color: Color
}
properties: {
title: Decoration[]
}
}
export interface ToggleBlock extends BaseBlock {
type: 'toggle'
properties: {
title: Decoration[]
}
}
export interface ImageBlock extends BaseContentBlock {
type: 'image'
}
export interface EmbedBlock extends BaseContentBlock {
type: 'embed'
}
export interface GistBlock extends BaseContentBlock {
type: 'gist'
}
export interface VideoBlock extends BaseContentBlock {
type: 'video'
}
export interface FigmaBlock extends BaseContentBlock {
type: 'figma'
}
export interface TypeformBlock extends BaseContentBlock {
type: 'typeform'
}
export interface ReplitBlock extends BaseContentBlock {
type: 'replit'
}
export interface CodepenBlock extends BaseContentBlock {
type: 'codepen'
}
export interface ExcalidrawBlock extends BaseContentBlock {
type: 'excalidraw'
}
export interface TweetBlock extends BaseContentBlock {
type: 'tweet'
}
export interface MapsBlock extends BaseContentBlock {
type: 'maps'
}
export interface PdfBlock extends BaseContentBlock {
type: 'pdf'
}
export interface AudioBlock extends BaseContentBlock {
type: 'audio'
}
export interface MiroBlock extends BaseContentBlock {
type: 'miro'
}
export interface FileBlock extends BaseBlock {
type: 'file'
properties: {
title: Decoration[]
size: Decoration[]
source: string[][]
}
file_ids?: string[]
}
export interface GoogleDriveBlock extends BaseContentBlock {
type: 'drive'
format: {
drive_status: {
authed: boolean
last_fetched: number
}
drive_properties: {
url: string
icon: string
title: string
file_id: string
trashed: boolean
version: string
thumbnail: string
user_name: string
modified_time: number
}
block_alignment: 'center' | 'left' | 'right'
block_width: number
block_height: number
display_source: string
block_full_width: boolean
block_page_width: boolean
block_aspect_ratio: number
block_preserve_scale: boolean
}
file_ids?: string[]
}
export interface CodeBlock extends BaseBlock {
type: 'code'
properties: {
title: Decoration[]
language: Decoration[]
caption: Decoration[]
}
}
export interface CollectionViewBlock extends BaseContentBlock {
type: 'collection_view'
collection_id?: ID
view_ids: ID[]
format?: BaseContentBlock['format'] & {
collection_pointer?: {
id: ID
spaceId: ID
table: string
}
}
}
export interface CollectionViewPageBlock extends BasePageBlock {
type: 'collection_view_page'
collection_id?: ID
view_ids: ID[]
format: BasePageBlock['format'] & {
collection_pointer?: {
id: ID
spaceId: ID
table: string
}
}
}
export interface SyncBlock extends BaseBlock {
type: 'transclusion_container'
}
export interface SyncPointerBlock extends BaseBlock {
type: 'transclusion_reference'
format: {
copied_from_pointer: {
id: string
spaceid: string
}
transclusion_reference_pointer: {
id: string
spaceId: string
}
}
}
export interface PageLink extends BaseBlock {
type: 'alias'
format: {
alias_pointer: {
id: string
}
}
}
export interface TableBlock extends BaseBlock {
type: 'table'
collection_id: ID
format: {
collection_pointer: {
id: ID
table: string
spaceId: ID
}
table_block_column_format?: {
[column: string]: { width?: number; color?: Color }
}
table_block_column_header: boolean
table_block_row_header: boolean
table_block_column_order: string[]
}
view_ids: ID[]
}
export interface TableRowBlock extends BaseBlock {
type: 'table_row'
properties: {
[column: string]: Decoration[]
}
}
export interface ExternalObjectInstance extends BaseBlock {
type: 'external_object_instance'
format: {
domain: string
original_url: string
}
}
export interface BreadcrumbInstance extends BaseBlock {
type: 'breadcrumb'
}