-
-
Notifications
You must be signed in to change notification settings - Fork 591
/
Copy pathget-page-table-of-contents.ts
100 lines (84 loc) · 2.49 KB
/
get-page-table-of-contents.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
import type * as types from 'notion-types'
import { getTextContent } from './get-text-content'
export interface TableOfContentsEntry {
id: types.ID
type: types.BlockType
text: string
indentLevel: number
}
const indentLevels = {
header: 0,
sub_header: 1,
sub_sub_header: 2
}
/**
* Gets the metadata for a table of contents block by parsing the page's
* H1, H2, and H3 elements.
*/
export const getPageTableOfContents = (
page: types.PageBlock,
recordMap: types.ExtendedRecordMap
): Array<TableOfContentsEntry> => {
type MapResult = TableOfContentsEntry | null | MapResult[]
// Maps `content` property to TOC entries.
// Pages and transclusion containers (synced blocks) both have the property.
function mapContentToEntries(content?: string[]): MapResult[] {
return (content ?? []).map((blockId: string) => {
const block = recordMap.block[blockId]?.value
if (block) {
const { type } = block
if (
type === 'header' ||
type === 'sub_header' ||
type === 'sub_sub_header'
) {
return {
id: blockId,
type,
text: getTextContent(block.properties?.title),
indentLevel: indentLevels[type]
}
}
if (type === 'transclusion_container') {
return mapContentToEntries(block.content)
}
}
return null
})
}
const toc = mapContentToEntries(page.content)
// Synced blocks cannot be nested. So theoretically a 1-level flattening is enough.
.flat()
.filter(Boolean) as Array<TableOfContentsEntry>
const indentLevelStack = [
{
actual: -1,
effective: -1
}
]
// Adjust indent levels to always change smoothly.
// This is a little tricky, but the key is that when increasing indent levels,
// they should never jump more than one at a time.
for (const tocItem of toc) {
const { indentLevel } = tocItem
const actual = indentLevel
do {
const prevIndent = indentLevelStack.at(-1)!
const { actual: prevActual, effective: prevEffective } = prevIndent
if (actual > prevActual) {
tocItem.indentLevel = prevEffective + 1
indentLevelStack.push({
actual,
effective: tocItem.indentLevel
})
} else if (actual === prevActual) {
tocItem.indentLevel = prevEffective
break
} else {
indentLevelStack.pop()
}
// eslint-disable-next-line no-constant-condition
} while (true)
}
return toc
}