-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathNAT.js
168 lines (153 loc) · 4.49 KB
/
NAT.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
if (typeof require === 'undefined') require = importModule
const { withSettings } = require('./withSettings.module')
const { useCache } = require('./utils.module')
const preference = {
green: '#00b578',
yellow: '#ffc300',
red: '#ea0000',
/** 有效周期,单位:天 */
period: 3,
widgetURL: ''
}
const cache = useCache()
/**
* @returns {Promise<NATData>}
*/
const getData = async () => {
const { getNATData } = require/* ignore */('./Config')
if (getNATData) {
try {
const data = await getNATData()
cache.writeJSON('data.json', data)
return data
} catch (e) {
const data = cache.readJSON('data.json')
return data
}
}
// return {
// natResultName: '阳性',
// sampleDate: '2022-11-24 17:24:00'
// }
}
const createWidget = async () => {
const { green, yellow, red, period, widgetURL } = preference
const data = await getData()
const { natResultName } = data
const sampleDate = new Date(data.sampleDate.replace(/-/g, '/'))
const now = new Date()
const diff = now.getTime() - (new Date(sampleDate).getTime())
const leftTime = period * 24 * 3600000 - diff
const widget = new ListWidget()
if (widgetURL) {
widget.url = widgetURL
}
widget.backgroundColor = new Color(green)
if (leftTime < 0) {
widget.backgroundColor = new Color(yellow)
}
if (natResultName === '阳性') {
widget.backgroundColor = new Color(red)
}
const stackCapsule = widget.addStack()
stackCapsule.size = new Size(24 * 2.8, 24 * 1.6)
stackCapsule.backgroundColor = Color.white()
stackCapsule.cornerRadius = 10
stackCapsule.centerAlignContent()
const capText = (() => {
if (leftTime >= 0) {
return Math.ceil(diff / (24 * 3600000)) * 24 + 'h'
}
return '>' + Math.ceil(Math.abs(leftTime / (24 * 3600000))) + 'd'
})()
const textCapsule = stackCapsule.addText(capText)
textCapsule.font = Font.boldSystemFont(24)
textCapsule.textColor = new Color(green)
if (leftTime < 0) {
textCapsule.textColor = new Color(yellow)
}
if (natResultName === '阳性') {
textCapsule.textColor = new Color(red)
}
widget.addSpacer(10)
const df = new DateFormatter()
df.dateFormat = 'yyyy/MM/dd hh:mm'
const textDate = widget.addText(`检测时间 ${df.string(sampleDate)}`)
textDate.font = Font.systemFont(10)
textDate.textColor = Color.white()
textDate.lineLimit = 1
textDate.minimumScaleFactor = 0.7
widget.addSpacer(10)
const textTip = widget.addText(`有效期${period}d剩余`)
textTip.font = Font.boldSystemFont(16)
textTip.minimumScaleFactor = 0.8
textTip.textColor = Color.white()
const unit = leftTime < 3600000 ? '分钟' : '小时'
const leftText = (() => {
if (leftTime < 0) {
return 0
}
if (unit === '小时') {
return Math.round(leftTime / 3600000)
}
return Math.round(leftTime / 60000)
})()
widget.addSpacer(4)
const stackBottom = widget.addStack()
stackBottom.bottomAlignContent()
const stackLeft = stackBottom.addStack()
stackLeft.size = new Size(-1, 34)
const textLeft = stackLeft.addText(`${leftText}`)
textLeft.font = Font.boldSystemFont(34)
textLeft.textColor = Color.white()
const stackUnit = stackBottom.addStack()
stackUnit.size = new Size(-1, 15 + 3)
const textUnit = stackUnit.addText(unit)
textUnit.font = Font.systemFont(15)
textUnit.textColor = Color.white()
if (config.widgetFamily === 'large') {
widget.addSpacer()
}
return widget
}
const widget = await withSettings({
homePage: 'https://github.com/Honye/scriptable-scripts/blob/master/dist/NAT.js',
formItems: [
{
name: 'period',
label: 'Effective time',
type: 'select',
options: [
{ label: 'a day', value: '1' },
{ label: '2 days', value: '2' },
{ label: '3 day', value: '3' },
{ label: '4 days', value: '4' },
{ label: '5 days', value: '5' },
{ label: '6 days', value: '6' },
{ label: '7 days', value: '7' }
],
default: `${preference.period}`
},
{
name: 'widgetURL',
label: 'Widget URL'
}
],
render: async ({ family, settings }) => {
config.widgetFamily = family ?? config.widgetFamily
Object.assign(preference, {
period: Number(settings.period || '3'),
...settings
})
const widget = createWidget()
return widget
}
})
if (config.runsInWidget) {
Script.setWidget(widget)
}
/**
* @typedef {object} NATData
* @property {'阴性'|'阳性'} natResultName 核酸检测结果
* @property {string} sampleDate 采样时间
*/