-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathNotion Block View.js
183 lines (142 loc) · 5.54 KB
/
Notion Block View.js
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
// Variables used by Scriptable.
// These must be at the very top of the file. Do not edit.
// icon-color: deep-blue; icon-glyph: book;
const NOTION_TOKEN = "<token>"
const timestamp = new Date().toLocaleTimeString()
// Determine the block URL (from various sources)
const blockUrl = args.shortcutParameter || args.widgetParameter
// Early exit, which triggers when used in the 'refresh' iOS Shortcut
// For some reason, this lets the widgets 'rerun' properly and update on command
if (!blockUrl) {
Script.complete()
return
}
// Determine block type and extract the correct ids from block URL
const collectionViewRegex = /\/(?<collectionId>\w+)\?v=(?<viewId>\w+$)/
const blockRegex = /\/.*?(?<blockId>\w+)$/
const collectionViewMatches = blockUrl.match(collectionViewRegex)
const blockMatches = blockUrl.match(blockRegex)
let blockType, collectionId, viewId, blockId
if (collectionViewMatches) {
collectionId = collectionViewMatches.groups.collectionId
viewId = collectionViewMatches.groups.viewId
blockType = "collectionView"
} else {
blockId = blockMatches.groups.blockId
blockType = "block"
}
let widget = new ListWidget()
if (blockType === "block") {
await applyBlockStyle(widget)
} else {
await applyCollectionStyle(widget)
}
if (config.runsInWidget) {
Script.setWidget(widget)
} else {
widget.presentLarge()
}
Script.complete()
async function applyBlockStyle(widget) {
const blockJson = await fetchBlock(blockId)
addTitle(widget, blockJson["parent"]["title"], `notion://www.notion.so/${blockId}`)
const childrenStack = widget.addStack()
childrenStack.layoutVertically()
blockJson["children"].forEach(childJson => {
if (!("title" in childJson)) { return }
addChildRow(childrenStack, childJson, "title")
});
// Push content to the top
widget.addSpacer(null)
if (!config.runsWithSiri) {
addFooter(widget, `blocks/${blockId}/children`)
}
return widget
}
async function applyCollectionStyle() {
const collectionViewJson = await fetchCollectionView(collectionId, viewId)
addTitle(widget, collectionViewJson["collection"]["collection_title"], `notion://www.notion.so/${collectionId}?v=${viewId}`)
const childrenStack = widget.addStack()
childrenStack.layoutVertically()
collectionViewJson["rows"].forEach(childJson => {
if (!("name" in childJson)) { return }
addChildRow(childrenStack, childJson, "name")
});
// Push content to the top
widget.addSpacer(null)
if (!config.runsWithSiri) {
addFooter(widget, `collections/${collectionId}/${viewId}`)
}
return widget
}
function addChildRow(childrenStack, childJson, textKey) {
if (!childJson[textKey]) { return }
childStack = childrenStack.addStack()
childStack.centerAlignContent()
const deleteSymbol = SFSymbol.named("trash.fill")
const deleteElement = childStack.addImage(deleteSymbol.image)
deleteElement.imageSize = new Size(16, 16)
deleteElement.tintColor = Color.white()
deleteElement.imageOpacity = 0.75
deleteElement.url = `shortcuts://run-shortcut?name=Delete%20Notion%20Block&input=${childJson["id"]}`
childStack.addSpacer(8)
const titleElement = childStack.addText(childJson[textKey])
titleElement.textColor = Color.white()
titleElement.font = Font.mediumSystemFont(16)
titleElement.minimumScaleFactor = 0.75
titleElement.url = `notion://www.notion.so/${childJson["id"]}`
childrenStack.addSpacer(8)
}
function addTitle(widget, title, url) {
const titleStack = widget.addStack()
titleStack.url = url
titleStack.centerAlignContent()
const linkSymbol = SFSymbol.named("arrow.up.right.square.fill")
const linkElement = titleStack.addImage(linkSymbol.image)
linkElement.imageSize = new Size(16, 16)
linkElement.tintColor = Color.white()
titleStack.addSpacer(6)
const titleElement = titleStack.addText(title)
titleElement.textColor = Color.white()
titleElement.font = Font.boldSystemFont(18)
titleElement.minimumScaleFactor = 0.75
widget.addSpacer(6)
}
function addFooter(widget, addUrlPath) {
const footerStack = widget.addStack()
footerStack.bottomAlignContent()
const addSymbol = SFSymbol.named("plus.square.fill")
const addElement = footerStack.addImage(addSymbol.image)
addElement.imageSize = new Size(20, 20)
addElement.tintColor = Color.white()
addElement.url = `shortcuts://run-shortcut?name=Append%20to%20Notion%20Block&input=${addUrlPath}`
footerStack.addSpacer(null)
const refreshStack = footerStack.addStack()
refreshStack.url = `shortcuts://run-shortcut?name=Refresh%20Notion%20Block&input=${blockUrl}`
refreshStack.centerAlignContent()
const refreshSymbol = SFSymbol.named("arrow.clockwise.icloud.fill")
const refreshElement = refreshStack.addImage(refreshSymbol.image)
refreshElement.imageSize = new Size(20, 20)
refreshElement.tintColor = Color.white()
refreshStack.addSpacer(5)
const updatedAtElement = refreshStack.addText(`Last Sync: ${timestamp}`)
updatedAtElement.textColor = Color.white()
updatedAtElement.textOpacity = 0.6
updatedAtElement.font = Font.mediumSystemFont(10)
}
async function fetchBlock(blockId) {
const request = notionServerRequest(`https://notion-server.herokuapp.com/blocks/${blockId}/children`)
return await request.loadJSON()
}
async function fetchCollectionView(collectionId, viewId) {
const request = notionServerRequest(`https://notion-server.herokuapp.com/collections/${collectionId}/${viewId}`)
return await request.loadJSON()
}
function notionServerRequest(url) {
const request = new Request(url)
request.method = 'GET'
request.headers = {
'Notion-Token': NOTION_TOKEN
}
return request
}