-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwidget_demo.js
44 lines (37 loc) · 1.19 KB
/
widget_demo.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
// widget_demo.js
// only run in `Scriptable` app
renderMedium = async (widget, poetry) => {
const t1 = widget.addText(poetry.hitokoto)
t1.font = Font.heavySystemFont(24)
t1.textColor = new Color("#ffffff", 1)
t1.leftAlignText()
widget.addSpacer(20)
const t2 = widget.addText(" —— " + poetry.from_who + '《' + poetry.from + '》')
t2.font = Font.lightSystemFont(12)
t2.textColor = new Color("#fffc79", 1)
t2.rightAlignText()
return widget
};
renderNotSupported = async () => {
const notification = new Notification()
notification.title = "Warning"
notification.subtitle = "not supported for " + config.widgetFamily + " size"
await notification.schedule()
}
const widget = new ListWidget()
widget.backgroundColor = new Color('#1e1e1e', 1)
widget.setPadding(20, 12, 20, 12)
const request = new Request("https://v1.hitokoto.cn/?c=i")
const poetry = await request.loadJSON()
console.log(poetry)
console.log(config.widgetFamily)
if (config.widgetFamily === 'medium' || config.widgetFamily === undefined) {
await this.renderMedium(widget, poetry)
} else {
await this.renderNotSupported()
}
if (config.runsInApp) {
widget.presentMedium()
}
Script.setWidget(widget)
Script.complete()