-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMatrix.js
275 lines (263 loc) · 8.02 KB
/
Matrix.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
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
const iCloudManager = FileManager.iCloud()
const fm = iCloudManager.isFileStoredIniCloud(module.filename) ? iCloudManager : FileManager.local()
const modulesRoot = fm.libraryDirectory()
/**
* Module 统一存放在 library 目录
* @param {string} path
*/
const requireModule = (path) => importModule(fm.joinPath(modulesRoot, path))
const { hashCode, i18n, phoneSize, getImage, useCache } = requireModule('utils.module')
const { useGrid } = requireModule('widgets.module')
const { withSettings } = requireModule('withSettings.module')
const STYLES = Object.freeze({
// 正方形
SQUARE: '1',
// 填满组件
FILL: '2'
})
const preference = {
column: 2,
row: 2,
gap: 6,
cornerRadius: 12,
paddingX: 10,
paddingY: 10,
style: STYLES.FILL,
debug: false
}
/**
* 图片摆放位置(必填)
*
* 可通过打开调试查看位置信息,填入位置对应的数字
*/
const indexs = [
0, 1, 2, 3
]
/**
* @typedef {object} Shortcut
* @property {string} icon 图片
* @property {string} [symbol]
* 符号(小图标)。可通过我写的 SF Symbols 应用获取
*
* 为空时不显示符号和文字,只显示图片
* @property {string} [title]
* @property {string} [url] 跳转地址
*/
/**
* 图片或快捷方式
*
* 根据上述 `indexs` 填写的数字逐个排列
* @type {Shortcut}
*/
const shortcuts = [
{
icon: 'https://wallhaven.cc/cdn-cgi/mirage/90b40432b273e1ab7fa9c48e717ba5b74f0b24860773afbd15a808573e0d351c/1280/https://w.wallhaven.cc/full/x6/wallhaven-x68r2l.jpg',
symbol: 'plus.viewfinder',
title: 'Wechat Scan',
url: 'weixin://scanqrcode'
},
{
icon: 'https://wallhaven.cc/cdn-cgi/mirage/90b40432b273e1ab7fa9c48e717ba5b74f0b24860773afbd15a808573e0d351c/1280/https://w.wallhaven.cc/full/vq/wallhaven-vq9j55.jpg',
symbol: 'qrcode.viewfinder',
title: 'Alipay Scan',
url: 'alipays://platformapi/startapp?saId=10000007'
},
{
icon: 'https://wallhaven.cc/cdn-cgi/mirage/90b40432b273e1ab7fa9c48e717ba5b74f0b24860773afbd15a808573e0d351c/1280/https://w.wallhaven.cc/full/zy/wallhaven-zy8w2y.jpg',
symbol: 'barcode.viewfinder',
title: 'Alipay Pay',
url: 'alipay://platformapi/startapp?appId=20000056'
},
{
icon: 'https://wallhaven.cc/cdn-cgi/mirage/90b40432b273e1ab7fa9c48e717ba5b74f0b24860773afbd15a808573e0d351c/1280/https://w.wallhaven.cc/full/2y/wallhaven-2yy69x.jpg',
symbol: 'location.viewfinder',
title: 'Health Code',
url: 'alipays://platformapi/startapp?appId=20000067&url=https%3A%2F%2F68687564.h5app.alipay.com%2Fwww%2Findex.html'
}
]
const cache = useCache()
const getLogo = async (url) => {
const hash = hashCode(url)
try {
const image = cache.readImage(`${hash}`)
if (!image) throw new Error('not exist')
return image
} catch (e) {
const image = await getImage(url)
cache.writeImage(`${hash}`, image)
return image
}
}
const createNumBg = (n, size = new Size(120, 120)) => {
const drawer = new DrawContext()
drawer.size = size
drawer.opaque = false
drawer.respectScreenScale = true
const fontSize = Math.min(size.width, size.height) * 0.42
drawer.setFont(Font.boldRoundedSystemFont(fontSize))
drawer.setTextColor(Color.dynamic(
new Color('#ffffff', 0.6),
new Color('#000000', 0.6)
))
drawer.setTextAlignedCenter()
drawer.drawTextInRect(`${n}`, new Rect(0,
(size.height - fontSize) / 2, size.width, fontSize))
return drawer.getImage()
}
const createWidget = async () => {
const {
column, row,
gap, paddingY, paddingX,
style,
debug
} = preference
const widget = new ListWidget()
widget.setPadding(paddingY, paddingX, paddingY, paddingX)
const stack = widget.addStack()
const widgetRect = phoneSize()
const family = config.widgetFamily
const scale = Device.screenScale()
const widgetWidth = widgetRect[family === 'large' ? 'medium' : family] / scale
const widgetHeight = widgetRect[family === 'medium' ? 'small' : family] / scale
const itemHeight = (widgetHeight - paddingY * 2 + gap) / row - gap
const itemWidth = (widgetWidth - paddingX * 2 + gap) / column - gap
const minWidth = Math.min(itemWidth, itemHeight)
const { add } = await useGrid(stack, { column, gap })
const itemSize = new Size(
style === STYLES.SQUARE ? minWidth : itemWidth,
style === STYLES.SQUARE ? minWidth : itemHeight
)
console.log('[info] 可通过此长宽比裁剪图片')
console.log(`[info] item size: ${itemSize.width}x${itemSize.height}`)
const stackList = []
for (let i = 0; i < column * row; i++) {
await add((stack) => {
const widget = addItem(stack, {
width: itemSize.width,
height: itemSize.height
})
if (debug) {
widget.backgroundColor = Color.dynamic(
new Color('#000000', 0.1),
new Color('#ffffff', 0.1)
)
widget.backgroundImage = createNumBg(i, itemSize)
}
stackList.push(widget)
})
}
const _shortcuts = shortcuts.slice()
for (const i of indexs) {
const stack = stackList[i]
if (_shortcuts.length) {
const { icon, symbol, title, url } = _shortcuts.shift()
if (symbol) {
stack.backgroundImage = await getLogo(icon)
const gradient = new LinearGradient()
gradient.colors = [new Color('#000000', 0.18)]
gradient.locations = [0]
gradient.startPoint = new Point(0, 0)
gradient.endPoint = new Point(1, 1)
stack.backgroundGradient = gradient
stack.setPadding(6, 6, 6, 6)
stack.layoutVertically()
const sfs = SFSymbol.named(symbol)
sfs.applyFont(Font.mediumRoundedSystemFont(50))
const iconImg = stack.addImage(sfs.image)
const iconHeight = Math.min(itemSize.width, itemSize.height) * 0.5
iconImg.imageSize = new Size(iconHeight, iconHeight)
iconImg.tintColor = Color.white()
stack.addSpacer(4)
const titleText = stack.addText(title)
titleText.textColor = Color.white()
stack.addStack().addSpacer()
} else {
const logo = stack.addImage(await getLogo(icon))
logo.imageSize = itemSize
logo.applyFillingContentMode()
}
stack.url = url
}
}
return widget
}
const addItem = (container, {
width, height,
bgColor
}) => {
const { cornerRadius } = preference
const stack = container.addStack()
stack.size = new Size(width, height)
stack.backgroundColor = bgColor
stack.cornerRadius = cornerRadius
return stack
}
const widget = await withSettings({
formItems: [
{
label: i18n(['Column count', '列数']),
name: 'column',
type: 'number',
default: preference.column
},
{
label: i18n(['Row count', '行数']),
name: 'row',
type: 'number',
default: preference.row
},
{
label: i18n(['Fill style', '填充模式']),
name: 'style',
type: 'select',
options: [
{ label: i18n(['Square', '正方形']), value: STYLES.SQUARE },
{ label: i18n(['Fill', '填满']), value: STYLES.FILL }
],
default: preference.style
},
{
label: i18n(['Gap', '间隙']),
name: 'gap',
type: 'number',
default: preference.gap
},
{
label: i18n(['Corner radius', '圆角']),
name: 'cornerRadius',
type: 'number',
default: preference.cornerRadius
},
{
label: i18n(['Widget horizontal padding', '水平内边距']),
name: 'paddingX',
type: 'number',
default: preference.paddingX
},
{
label: i18n(['Widget vertical padding', '竖向内边距']),
name: 'paddingY',
type: 'number',
default: preference.paddingY
},
{
label: i18n(['Debug', '调试']),
name: 'debug',
type: 'switch',
default: preference.debug
}
],
render: async ({ family, settings }) => {
config.widgetFamily = family ?? config.widgetFamily
Object.assign(preference, settings)
const widget = await createWidget()
.catch((err) => {
console.error(err)
return Promise.reject(err)
})
return widget
}
})
if (config.runsInWidget) {
Script.setWidget(widget)
}