-
Notifications
You must be signed in to change notification settings - Fork 137
/
Copy pathCarWidget.js
342 lines (291 loc) · 9.98 KB
/
CarWidget.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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
// Variables used by Scriptable.
// These must be at the very top of the file. Do not edit.
// icon-color: deep-gray; icon-glyph: car;
// 添加require,是为了vscode中可以正确引入包,以获得自动补全等功能
if (typeof require === 'undefined') require = importModule;
const { DmYY, Runing } = require('./DmYY');
// @组件代码开始
class Widget extends DmYY {
constructor(arg) {
super(arg);
if (config.runsInApp) {
this.registerAction({
icon: { name: 'paperplane', color: '#722ed1' },
type: 'input',
title: '油价设置',
desc: '89|92|95|0',
val: 'oilNumber',
});
this.registerAction({
icon: { name: 'car', color: '#f5222d' },
type: 'input',
title: '依赖插件',
desc: '汽车的依赖插件例如 Ftms',
val: 'filePath',
});
this.registerAction({
icon: { name: 'plus.viewfinder', color: '#fa8c16' },
type: 'input',
title: '缩放比例',
desc: '比例越大进度条越长',
placeholder: '取值 0~1',
val: 'scale',
});
}
config.runsInApp && this.registerAction('基础设置', this.setWidgetConfig);
this.cacheName = this.md5(`dataSouce_${this.en}`);
const filePath = this.settings.filePath || 'Ftms';
const carModule = require(`./${filePath}`);
const carService = new carModule(this);
this.scale = parseFloat(this.settings.scale) || 1; // 柱状图比例高度,值越大,柱状范围越广
this.init = carService.init;
this.name = carService.name;
this.logo = carService.logo;
this.viewColor = Color.dynamic(
new Color('#d9d9d9', parseFloat(this.settings.lightOpacity || 1)),
new Color('#8c8c8c', parseFloat(this.settings.darkOpacity || 1))
);
}
widgetHeight = 145;
serveInfo = {
carNumber: '',
};
dataSource = {
remoteInfo: {
datatime: '',
list: [],
userId: '',
carNumber: '',
},
monitorInfo: {
km: '0',
oilRate: '0',
oilWaste: '0',
oilWasteText: '',
},
safeText: '',
oilPriceText: '',
oilZDE: 0,
};
createProgressBar(
soFar,
total = 100,
width = 400,
height = 40,
showPercentage = false
) {
const context = new DrawContext();
context.size = new Size(width, height);
context.opaque = false;
context.respectScreenScale = true;
// bar background
context.setFillColor(new Color('#48484b'));
const bgPath = new Path();
bgPath.addRoundedRect(
new Rect(0, 0, width, height),
height / 2,
height / 2 - 1
);
context.addPath(bgPath);
context.fillPath();
// bar foreground
context.setFillColor(new Color('#e8e8e8'));
const fgPath = new Path();
fgPath.addRoundedRect(
new Rect(0, 0, (width * soFar) / total, height),
height / 2,
height / 2 - 1
);
context.addPath(fgPath);
context.fillPath();
if (showPercentage) {
const percentage = ((soFar / total) * 100).toFixed(2);
let xPos = (width * soFar) / total + 5;
// if over 70%, show in foreground area
// to ensure that it doesn't overflow the display
if (percentage > 70) {
xPos = (width * soFar) / total - 55;
}
context.setFont(Font.semiboldRoundedSystemFont(14));
context.setTextColor(primaryTextColor);
context.drawText(`${percentage}%`, new Point(xPos, height / 14));
}
return context.getImage();
}
renderBorder = (stack) => {
stack.borderWidth = 1;
};
renderImage = async (uri) => {
return this.$request.get(uri, 'IMG');
};
notSupport(w) {
const stack = w.addStack();
stack.addText('暂不支持');
return w;
}
renderSmall = async (w) => {
w.addSpacer();
const stack = w.addStack();
stack.layoutVertically();
const headerStack = stack.addStack();
headerStack.centerAlignContent();
headerStack.addSpacer(10);
const gasImg = SFSymbol.named('fuelpump').image;
const gasIcon = headerStack.addImage(gasImg);
gasIcon.imageSize = new Size(16, 16);
gasIcon.tintColor = this.widgetColor;
headerStack.addSpacer(5);
const oilRateStackText = headerStack.addText(
`${this.dataSource.monitorInfo.oilRate}%`
);
oilRateStackText.textColor = this.widgetColor;
oilRateStackText.font = Font.boldSystemFont(14);
headerStack.addSpacer();
const logImg = await this.renderImage(this.logo);
const logImgStack = headerStack.addImage(logImg);
logImgStack.imageSize = new Size(20, 20);
headerStack.addSpacer(10);
const bodyStack = stack.addStack();
bodyStack.centerAlignContent();
bodyStack.addSpacer();
const progressImg = this.createProgressBar(
this.dataSource.monitorInfo.oilRate
);
const progressBar = bodyStack.addImage(progressImg);
progressBar.imageSize = new Size(this.widgetHeight * this.scale, 28);
bodyStack.addSpacer();
stack.addSpacer();
const oilWasteStack = stack.addStack();
oilWasteStack.centerAlignContent();
oilWasteStack.addSpacer();
const oilWasteStackText = oilWasteStack.addText(
this.dataSource.monitorInfo.oilWasteText
);
oilWasteStackText.textColor = this.widgetColor;
oilWasteStackText.font = Font.boldSystemFont(10);
oilWasteStack.addSpacer(5);
const oilPriceStackText = oilWasteStack.addText(
this.dataSource.oilPriceText
);
oilPriceStackText.textColor = this.widgetColor;
oilPriceStackText.font = Font.boldSystemFont(10);
oilWasteStack.addSpacer(2);
const oilStatus = this.dataSource.oilZDE > 0;
const oilZdeImage = SFSymbol.named(
oilStatus ? 'arrow.up' : 'arrow.down'
).image;
const oilZdeWidgetImg = oilWasteStack.addImage(oilZdeImage);
oilZdeWidgetImg.tintColor = new Color(oilStatus ? '#f5222d' : '#a0d911');
oilZdeWidgetImg.imageSize = new Size(10, 10);
oilWasteStack.addSpacer();
const kilometerStack = stack.addStack();
kilometerStack.centerAlignContent();
kilometerStack.addSpacer();
const panoImg = SFSymbol.named('speedometer').image;
const panoImgStack = kilometerStack.addStack();
panoImgStack.setPadding(5, 0, 0, 0);
const panoStack = panoImgStack.addImage(panoImg);
panoStack.tintColor = this.widgetColor;
panoStack.imageSize = new Size(20, 20);
kilometerStack.addSpacer(5);
const oilWasteText = kilometerStack.addText(this.dataSource.monitorInfo.km);
oilWasteText.font = Font.boldSystemFont(28);
oilWasteText.textColor = this.widgetColor;
kilometerStack.addSpacer(5);
const unitStack = kilometerStack.addStack();
unitStack.setPadding(5, 0, 0, 0);
const oilWasteUnit = unitStack.addText('km');
oilWasteUnit.font = Font.boldSystemFont(14);
oilWasteUnit.textColor = this.widgetColor;
kilometerStack.addSpacer();
stack.addSpacer();
const btBodyStack = stack.addStack();
btBodyStack.addSpacer();
const bottomStack = btBodyStack.addStack();
bottomStack.setPadding(10, 0, 10, 0);
bottomStack.centerAlignContent();
bottomStack.addSpacer();
bottomStack.cornerRadius = 15;
bottomStack.backgroundColor = this.viewColor;
const dataTime = this.dataSource.remoteInfo.datatime;
const countKmText = bottomStack.addText(`上传:${dataTime || '-'}`);
countKmText.textColor = this.widgetColor;
countKmText.font = Font.boldSystemFont(12);
countKmText.centerAlignText();
bottomStack.addSpacer();
w.addSpacer();
return w;
};
renderLarge = async (w) => {
return this.renderSmall(w);
};
renderMedium = async (w) => {
const containerStack = w.addStack();
containerStack.centerAlignContent();
const carStack = containerStack.addStack();
carStack.addSpacer();
carStack.backgroundColor = this.viewColor;
carStack.layoutVertically();
carStack.centerAlignContent();
carStack.size = new Size(this.widgetHeight, this.widgetHeight);
carStack.cornerRadius = 20;
const carImg = await this.renderImage(this.serveInfo.picUrl);
const carImgStack = carStack.addStack();
const carResStack = carImgStack.addImage(carImg);
carResStack.imageSize = new Size(137.5, 70);
carStack.addSpacer();
const carNumberStack = carStack.addStack();
carNumberStack.addSpacer();
carNumberStack.centerAlignContent();
const carNumberText = carNumberStack.addText(this.serveInfo.carNumber);
carNumberText.font = Font.boldSystemFont(24);
carNumberText.textColor = this.widgetColor;
carNumberText.centerAlignText();
carNumberStack.addSpacer();
carStack.addSpacer();
const carSafeStack = carStack.addStack();
carSafeStack.addSpacer();
carSafeStack.centerAlignContent();
let safeIconImg;
if (this.dataSource.safeText) {
safeIconImg = carSafeStack.addImage(SFSymbol.named('lock.open').image);
} else {
safeIconImg = carSafeStack.addImage(SFSymbol.named('lock').image);
}
carSafeStack.addSpacer(5);
const statusText = carSafeStack.addText(
this.dataSource.safeText || '已上锁'
);
statusText.centerAlignText();
statusText.font = Font.systemFont(12);
statusText.textColor = this.dataSource.safeText
? new Color('#f5222d')
: this.widgetColor;
safeIconImg.tintColor = statusText.textColor;
safeIconImg.imageSize = new Size(10, 14);
carSafeStack.addSpacer();
carStack.addSpacer();
containerStack.addSpacer();
const rightStack = containerStack.addStack();
rightStack.layoutVertically();
await this.renderSmall(rightStack);
return w;
};
/**
* 渲染函数,函数名固定
* 可以根据 this.widgetFamily 来判断小组件尺寸,以返回不同大小的内容
*/
async render() {
await this.init();
const widget = new ListWidget();
widget.setPadding(10, 10, 10, 10);
await this.getWidgetBackgroundImage(widget);
if (this.widgetFamily === 'medium') {
return await this.renderMedium(widget);
} else {
return await this.notSupport(widget);
}
}
}
// @组件代码结束
await Runing(Widget, '', false); //远程开发环境