-
Notifications
You must be signed in to change notification settings - Fork 0
/
彩云诗词桌面天气.js
1389 lines (1260 loc) · 38.7 KB
/
彩云诗词桌面天气.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
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Variables used by Scriptable.
// These must be at the very top of the file. Do not edit.
// icon-color: purple; icon-glyph: magic;
// Created by Enjoyee @ https://github.com/Enjoyee/Scriptable
// Modified by Samuel Shi on 2020-10-23
/*
**************************************
* 配置项
**************************************
*/
// 地区
const locale = "zh_cn";
// 背景是否是颜色
const colorMode = false;
// 背景颜色
const bgColorStr = "#000000";
// 预览大小【小:Small,中:Medium,大:Large】
const previewSize = "Medium";
// 彩云天气的apiKey,下面的apiKey为彩云天气官方公共key,可以去免费申请自己的apiKey:https://caiyunapp.com
const apiKey = "TAkhjf8d1nlSlspN";
// 默认的定位信息,定位失败的时候默认读取
// https://open.caiyunapp.com/File:Adcode-release-2020-06-10.xlsx.zip
// 上述链接查看对应地区的详细经纬度
let locationData = {
latitude: undefined,
longitude: undefined,
locality: undefined,
subLocality: undefined,
};
// 是否锁定地区,值为"true"时直接使用默认定位信息,值为"false"时先尝试定位,定位失败则使用定位缓存或默认定位信息
const lockLocation = false;
// 是否需要选择图片背景
const changePicBg = true;
// 日程显示条数
const maxSchedules = 2;
// 提醒事项显示条数
const maxReminders = 2;
// 内容区左右边距
const padding = {
top: 0,
left: 4,
bottom: 0,
right: 4,
};
// 顶部问候语,英文花样文字:https://beizhedenglong.github.io/weird-fonts/
const greetingText = {
nightGreeting: "🦉 𝑇𝑖𝑚𝑒 𝑡𝑜 𝑔𝑒𝑡 𝑙𝑎𝑖𝑑~",
morningGreeting: "💫 𝐺𝑜𝑜𝑑 𝑚𝑜𝑟𝑛𝑖𝑛𝑔~",
noonGreeting: "🥳 𝐺𝑜𝑜𝑑 𝑛𝑜𝑜𝑛~",
afternoonGreeting: "🐡 𝐺𝑜𝑜𝑑 𝑎𝑓𝑡𝑒𝑟𝑛𝑜𝑜𝑛~",
eveningGreeting: "🐳 𝐺𝑜𝑜𝑑 𝑒𝑣𝑒𝑛𝑖𝑛𝑔~",
};
// 天气图标
const weatherIcons = {
SUNRISE: "sunrise.fill", // 日出
CLEAR_DAY: "sun.max.fill", // 晴(白天) CLEAR_DAY
CLEAR_NIGHT: "sun.max.fill", // 晴(夜间) CLEAR_NIGHT
PARTLY_CLOUDY_DAY: "cloud.sun.fill", // 多云(白天) PARTLY_CLOUDY_DAY
PARTLY_CLOUDY_NIGHT: "cloud.sun.fill", // 多云(夜间) PARTLY_CLOUDY_NIGHT
CLOUDY: "cloud.fill", // 阴 CLOUDY
LIGHT_HAZE: "sun.haze.fill", // 轻度雾霾 LIGHT_HAZE
MODERATE_HAZE: "sun.haze.fill", // 中度雾霾 MODERATE_HAZE
HEAVY_HAZE: "sun.haze.fill", // 重度雾霾 HEAVY_HAZE
LIGHT_RAIN: "cloud.drizzle.fill", // 小雨 LIGHT_RAIN
MODERATE_RAIN: "cloud.rain.fill", // 中雨 MODERATE_RAIN
HEAVY_RAIN: "cloud.rain.fill", // 大雨 HEAVY_RAIN
STORM_RAIN: "cloud.heavyrain.fill", // 暴雨 STORM_RAIN
FOG: "cloud.fog.fill", // 雾 FOG
LIGHT_SNOW: "cloud.snow.fill", // 小雪 LIGHT_SNOW
MODERATE_SNOW: "cloud.snow.fill", // 中雪 MODERATE_SNOW
HEAVY_SNOW: "cloud.snow.fill", // 大雪 HEAVY_SNOW
STORM_SNOW: "wind.snow.fill", // 暴雪 STORM_SNOW
DUST: "cloud.dust.fill", // 浮尘 DUST
SAND: "cloud.dust.fill", // 沙尘 SAND
WIND: "cloud.wind.fill", // 大风 WIND
SUNSET: "sunset.fill", // 日落
};
// 天气信息控制
const weatherControl = {
HUMIDITY: true, // 是否显示相对湿度
COMFORT: true, // 是否显示舒适指数
ULTRAVIOLET: true, // 是否显示紫外线指数
AQI: true, // 是否显示空气质量指数
HEIGHT_LOW: true, // 是否显示温度范围
SUNRISE_SUNSET: true, // 是否显示日出日落时间
UPDATE_TIME: true, // 是否显示天气更新时间
};
// 周标题
const weekTitle = ["周日", "周一", "周二", "周三", "周四", "周五", "周六"];
// 默认文字颜色
const defaultTextColor = new Color("#ffffff");
//////////////////////////////////////////
// 标题样式
let textStyle = {
stack: undefined, // 加入到哪个内容栈显示
topMargin: 0, // 顶部距离
text: "", // 显示的文字
lineLimit: 0, // 行数控制,0是全部展示
font: Font.systemFont(18), // 字体
textColor: defaultTextColor, // 文字颜色
};
// 图片样式
let imgStyle = {
stack: undefined, // 加入到哪个内容栈显示
topMargin: 0, // 顶部距离
img: undefined, // 图片资源
width: 0, // 宽
length: 0, // 长
tintColor: undefined, // 图片渲染颜色
};
//////////////////////////////////////////
// 当前日期
const currentDate = new Date();
// 年份
const year = currentDate.getFullYear();
// 月份
const month = currentDate.getMonth() + 1;
// 日期
const day = currentDate.getDate();
// 小时
const hour = currentDate.getHours();
// 分钟
const minute = currentDate.getMinutes();
/*
****************************************************************************
****************************************************************************
****************************************************************************
*/
/********************************************************************/
/****************************定义小组件****************************/
/********************************************************************/
const filename = `${Script.name()}.jpg`;
const files = FileManager.local();
const path = files.joinPath(files.documentsDirectory(), filename);
const widget = new ListWidget();
/****************************小组件内容START****************************/
// 彩云天气信息
const weatherInfo = await getWeather();
// 农历信息
const lunarInfo = await getLunar();
// 今日诗词
const poetry = await getPoetry();
// 日程信息
const showSchedules = await getSchedules();
// 提醒事项
const showReminders = await getReminders();
//////////////////////////////////////////
// 内容排版
let contentStack = widget.addStack();
contentStack.layoutHorizontally();
// 整体内容居中对齐
contentStack.centerAlignContent();
// 背景
widget.backgroundColor = new Color(bgColorStr);
//////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////
// 左侧内容
let leftStack = contentStack.addStack();
leftStack.layoutVertically();
//////////////////////////////////////////
// 问候
let titleStack = horizontallyCenterStack(leftStack);
// 问候语获取内容
const greeting = provideGreeting(currentDate);
// 添加显示标题
addStyleText(titleStack, 0, greeting, 1, Font.systemFont(22), defaultTextColor);
//////////////////////////////////////////
// 年月日
const dateStr = getDateStr(currentDate);
addStyleText(
leftStack,
2,
dateStr,
1,
Font.systemFont(16),
new Color("#ffcc99")
);
//////////////////////////////////////////
// 星期几 / 农历日期
const weekDayColor = new Color("#ffffff", 0.9);
leftStack.addSpacer(2);
let dateStack = horizontallyCenterStack(leftStack);
// 添加显示星期几
const weekDayTitle = getDayWeekTitle(currentDate);
addStyleText(dateStack, 0, weekDayTitle, 1, Font.systemFont(16), weekDayColor);
dateStack.addSpacer(4);
// 农历信息
let infoLunarText = lunarInfo.data.lunar;
infoLunarText = infoLunarText.substring(12, infoLunarText.length);
// 添加显示农历
addStyleText(dateStack, 0, infoLunarText, 1, Font.systemFont(16), weekDayColor);
// 电池信息
dateStack.addSpacer(2);
const batteryLevel = Device.batteryLevel() * 100;
const batteryStr = `〓 ${getBatteryLevel()} 〓`;
// 添加显示电池具体信息
addStyleText(dateStack, 0, batteryStr, 1, Font.systemFont(15), weekDayColor);
//////////////////////////////////////////
// 天气预警、预告信息
const weatherAlertInfo = weatherInfo.alertWeatherTitle;
let weatherDesc = weatherInfo.weatherDesc;
if (weatherAlertInfo != undefined) {
weatherDesc = weatherAlertInfo;
}
// 添加显示天气预告信息
addStyleText(
leftStack,
3,
weatherDesc,
1,
Font.systemFont(12),
defaultTextColor
);
//////////////////////////////////////////
// 日程、诗词
const schedulePoetryColor = new Color("#ffffff", 0.7);
const scheduleSize = showSchedules.length;
if (scheduleSize > 0) {
addStyleText(
leftStack,
1,
"----------------------------------",
1,
Font.systemFont(10),
schedulePoetryColor
);
// 添加日程
let scheduleIndex = 0;
for (let schedule of showSchedules) {
// 索引值
scheduleIndex++;
if (scheduleIndex > maxSchedules) {
return;
}
const scheduleStack = horizontallyCenterStack(leftStack);
// 图片
const img = SFSymbol.named("megaphone").image;
// 展示图标
addStyleImg(scheduleStack, 0, img, 12, 12, schedulePoetryColor);
scheduleStack.addSpacer(4);
// 日程标题
addStyleText(
scheduleStack,
0,
schedule.title,
1,
Font.systemFont(11),
schedulePoetryColor
);
// 开始时间
const scheduleTimeStack = leftStack.addStack();
scheduleTimeStack.layoutHorizontally();
scheduleTimeStack.addSpacer(17);
// 展示时间
addStyleText(
scheduleTimeStack,
0,
schedule.timeText,
1,
Font.systemFont(11),
schedulePoetryColor
);
}
} else {
// 添加今日诗词
leftStack.addSpacer(8);
const poetryStack = leftStack.addStack();
// 诗词背景
poetryStack.backgroundColor = new Color("#666", 0.5);
poetryStack.cornerRadius = 4;
poetryStack.layoutVertically();
poetryStack.addSpacer(4);
//
const poetryInfoStack = poetryStack.addStack();
poetryInfoStack.layoutHorizontally();
poetryInfoStack.addSpacer(4);
const poetryInfo = poetry.data;
// 添加显示诗词
const poetryContent = `"${poetryInfo.content.substring(
0,
poetryInfo.content.length - 1
)}"`;
addStyleText(
poetryInfoStack,
0,
poetryContent,
1,
Font.systemFont(11),
schedulePoetryColor
);
// 添加作者
const authStack = poetryStack.addStack();
authStack.layoutHorizontally();
authStack.addSpacer();
// 显示作者
const authorText = `⊱${poetryInfo.origin.dynasty}·${poetryInfo.origin.author}⊰`;
addStyleText(
authStack,
0,
authorText,
1,
Font.systemFont(11),
schedulePoetryColor
);
authStack.addSpacer(4);
poetryStack.addSpacer(4);
}
////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////
// 右侧内容
contentStack.addSpacer();
let rightStack = contentStack.addStack();
// 写死右侧宽度
rightStack.size = new Size(110, 0);
rightStack.layoutVertically();
//////////////////////////////////////////
//////////////////////////////////////////
// 天气图标
const weatherStack = alignRightStack(rightStack);
weatherStack.bottomAlignContent();
let weatherInfoIcon = SFSymbol.named(weatherInfo.weatherIcon).image;
// 显示天气
addStyleImg(weatherStack, 0, weatherInfoIcon, 32, 32);
// 体感温度
weatherStack.addSpacer(4);
const bodyFeelingTemperature = weatherInfo.bodyFeelingTemperature;
addStyleText(
weatherStack,
0,
`${bodyFeelingTemperature}°C`,
1,
Font.boldMonospacedSystemFont(22),
defaultTextColor
);
//////////////////////////////////////////
// 相对湿度
if (weatherControl.HUMIDITY) {
rightStack.addSpacer(4);
const humidityStack = alignRightStack(rightStack);
addStyleText(
humidityStack,
0,
`相对湿度:${weatherInfo.humidity}`,
1,
Font.systemFont(11),
defaultTextColor
);
}
//////////////////////////////////////////
// 舒适指数
if (weatherControl.COMFORT) {
rightStack.addSpacer(1);
const comfortStack = alignRightStack(rightStack);
addStyleText(
comfortStack,
0,
`舒适指数:${weatherInfo.comfort}`,
1,
Font.systemFont(11),
defaultTextColor
);
}
//////////////////////////////////////////
// 紫外线指数
if (weatherControl.ULTRAVIOLET) {
rightStack.addSpacer(1);
const ultravioletStack = alignRightStack(rightStack);
addStyleText(
ultravioletStack,
0,
`紫外线:${weatherInfo.ultraviolet}`,
1,
Font.systemFont(11),
defaultTextColor
);
}
//////////////////////////////////////////
// 空气质量
if (weatherControl.AQI) {
rightStack.addSpacer(1);
const aqiInfoStack = alignRightStack(rightStack);
addStyleText(
aqiInfoStack,
8,
`空气质量:${weatherInfo.aqiInfo}`,
1,
Font.systemFont(11),
defaultTextColor
);
}
//////////////////////////////////////////
// 高低温
if (weatherControl.HEIGHT_LOW) {
const minTemperature = weatherInfo.minTemperature;
const maxTemperature = weatherInfo.maxTemperature;
// 右对齐
rightStack.addSpacer(3);
const tempStack = alignRightStack(rightStack);
// 高温
addStyleText(tempStack, 0, `↑`, 1, Font.systemFont(10), new Color("#ff0000"));
addStyleText(
tempStack,
0,
`${weatherInfo.maxTemperature}°`,
1,
Font.systemFont(10),
defaultTextColor
);
// 低温
tempStack.addSpacer(6);
addStyleText(tempStack, 0, `↓`, 1, Font.systemFont(10), new Color("#2bae85"));
addStyleText(
tempStack,
0,
`${weatherInfo.minTemperature}°`,
1,
Font.systemFont(10),
defaultTextColor
);
}
//////////////////////////////////////////
// 日出
if (weatherControl.SUNRISE_SUNSET) {
rightStack.addSpacer(2);
let symbolStack = rightStack.addStack();
symbolStack.layoutHorizontally();
symbolStack.addSpacer();
symbolStack.bottomAlignContent();
// 添加日出icon
let sunriseImg = SFSymbol.named("sunrise.fill").image;
addStyleImg(symbolStack, 0, sunriseImg, 15, 15);
symbolStack.addSpacer(4);
// 日出时间 / 样式
addStyleText(
symbolStack,
0,
weatherInfo.sunrise,
1,
Font.systemFont(10),
defaultTextColor
);
//***********************//
// 日落
symbolStack.addSpacer(4);
// 添加日落icon
let sunsetImg = SFSymbol.named("sunset.fill").image;
addStyleImg(symbolStack, 0, sunsetImg, 15, 15);
symbolStack.addSpacer(4);
// 日落时间 / 样式
addStyleText(
symbolStack,
0,
weatherInfo.sunset,
1,
Font.systemFont(10),
defaultTextColor
);
}
//////////////////////////////////////////
// 天气更新时间
if (weatherControl.UPDATE_TIME) {
// 更新时间
rightStack.addSpacer(2);
const updateTimeStack = alignRightStack(rightStack);
addStyleText(
updateTimeStack,
0,
`上次更新 → ${num2Str(hour)}:${num2Str(minute)}`,
1,
Font.systemFont(8),
new Color("#ffffff", 0.8)
);
}
/*****************************小组件内容ENd*****************************/
if (!colorMode && !config.runsInWidget && changePicBg) {
// Determine if user has taken the screenshot.
const okTips = "您的小部件背景已准备就绪";
let message = "图片模式支持相册照片&背景透明";
let options = ["图片选择", "透明背景"];
let isTransparentMode = await generateAlert(message, options);
if (!isTransparentMode) {
let img = await Photos.fromLibrary();
message = okTips;
const resultOptions = ["好的"];
await generateAlert(message, resultOptions);
files.writeImage(path, img);
} else {
message =
"以下是【透明背景】生成步骤,如果你没有屏幕截图请退出,并返回主屏幕长按进入编辑模式。滑动到最右边的空白页截图。然后重新运行!";
let exitOptions = ["继续(已有截图)", "退出(没有截图)"];
let shouldExit = await generateAlert(message, exitOptions);
if (shouldExit) return;
// Get screenshot and determine phone size.
let img = await Photos.fromLibrary();
let height = img.size.height;
let phone = phoneSizes()[height];
if (!phone) {
message =
"您似乎选择了非iPhone屏幕截图的图像,或者不支持您的iPhone。请使用其他图像再试一次!";
await generateAlert(message, ["好的!我现在去截图"]);
return;
}
// Prompt for widget size and position.
message = "您想要创建什么尺寸的小部件?";
let sizes = ["小号", "中号", "大号"];
let size = await generateAlert(message, sizes);
let widgetSize = sizes[size];
message = "您想它在什么位置?";
message +=
height == 1136
? " (请注意,您的设备仅支持两行小部件,因此中间和底部选项相同。)"
: "";
// Determine image crop based on phone size.
let crop = { w: "", h: "", x: "", y: "" };
if (widgetSize == "小号") {
crop.w = phone.小号;
crop.h = phone.小号;
let positions = [
"顶部 左边",
"顶部 右边",
"中间 左边",
"中间 右边",
"底部 左边",
"底部 右边",
];
let position = await generateAlert(message, positions);
// Convert the two words into two keys for the phone size dictionary.
let keys = positions[position].split(" ");
crop.y = phone[keys[0]];
crop.x = phone[keys[1]];
} else if (widgetSize == "中号") {
crop.w = phone.中号;
crop.h = phone.小号;
// 中号 and 大号 widgets have a fixed x-value.
crop.x = phone.左边;
let positions = ["顶部", "中间", "底部"];
let position = await generateAlert(message, positions);
let key = positions[position].toLowerCase();
crop.y = phone[key];
} else if (widgetSize == "大号") {
crop.w = phone.中号;
crop.h = phone.大号;
crop.x = phone.左边;
let positions = ["顶部", "底部"];
let position = await generateAlert(message, positions);
// 大号 widgets at the 底部 have the "中间" y-value.
crop.y = position ? phone.中间 : phone.顶部;
}
// Crop image and finalize the widget.
let imgCrop = cropImage(img, new Rect(crop.x, crop.y, crop.w, crop.h));
message = "您的小部件背景已准备就绪,退出到桌面预览。";
const resultOptions = ["好的"];
await generateAlert(message, resultOptions);
files.writeImage(path, imgCrop);
}
}
////////////////////////////////////////////////////////////////////////////////////
if (colorMode) {
widget.backgroundColor = new Color(bgColorStr);
} else {
widget.backgroundImage = files.readImage(path);
}
// 设置边距(上,左,下,右)
widget.setPadding(padding.top, padding.left, padding.bottom, padding.right);
// 设置组件
Script.setWidget(widget);
// 完成脚本
Script.complete();
// 预览
if (previewSize == "Large") {
widget.presentLarge();
} else if (previewSize == "Medium") {
widget.presentMedium();
} else {
widget.presentSmall();
}
////////////////////////////////////////////////////////////////////////////////////
/*
************************************************************************************
*/
// Generate an alert with the provided array of options.
async function generateAlert(message, options) {
let alert = new Alert();
alert.message = message;
for (const option of options) {
alert.addAction(option);
}
let response = await alert.presentAlert();
return response;
}
// Crop an image into the specified rect.
function cropImage(img, rect) {
let draw = new DrawContext();
draw.size = new Size(rect.width, rect.height);
draw.drawImageAtPoint(img, new Point(-rect.x, -rect.y));
return draw.getImage();
}
// Pixel sizes and positions for widgets on all supported phones.
function phoneSizes() {
let phones = {
2688: {
小号: 507,
中号: 1080,
大号: 1137,
左边: 81,
右边: 654,
顶部: 228,
中间: 858,
底部: 1488,
},
2532: {
小号: 472,
中号: 1012,
大号: 1062,
左边: 78,
右边: 618,
顶部: 230,
中间: 818,
底部: 1408,
},
2436: {
小号: 465,
中号: 987,
大号: 1035,
左边: 69,
右边: 591,
顶部: 213,
中间: 783,
底部: 1353,
},
2208: {
小号: 471,
中号: 1044,
大号: 1071,
左边: 99,
右边: 672,
顶部: 114,
中间: 696,
底部: 1278,
},
1792: {
小号: 338,
中号: 720,
大号: 758,
左边: 54,
右边: 436,
顶部: 160,
中间: 580,
底部: 1000,
},
1624: {
小号: 310,
中号: 658,
大号: 690,
左边: 46,
右边: 394,
顶部: 142,
中间: 522,
底部: 902,
},
1334: {
小号: 296,
中号: 642,
大号: 648,
左边: 54,
右边: 400,
顶部: 60,
中间: 412,
底部: 764,
},
1136: {
小号: 282,
中号: 584,
大号: 622,
左边: 30,
右边: 332,
顶部: 59,
中间: 399,
底部: 399,
},
};
return phones;
}
/*
****************************************************************************************************************************
****************************************************************************************************************************
****************************************************************************************************************************
*/
/*
**************************************
* 添加一行文本数据显示
**************************************
*/
function addStyleText(
stack,
topMargin,
text,
lineLimit,
font,
textColor,
width = 0
) {
textStyle.stack = stack;
textStyle.topMargin = topMargin;
textStyle.text = text;
textStyle.lineLimit = lineLimit;
textStyle.font = font;
textStyle.textColor = textColor;
addText(textStyle);
textStyle.lineLimit = 0;
}
function addText(style, width = 0) {
style.stack.size = new Size(width, 0);
style.stack.addSpacer(style.topMargin);
let textSpan = style.stack.addText(style.text + "");
textSpan.font = style.font;
textSpan.lineLimit = style.lineLimit;
textSpan.textColor = style.textColor;
}
/*
**************************************
* 添加图片显示
**************************************
*/
function addStyleImg(stack, topMargin, img, width, length, tintColor) {
imgStyle.stack = stack;
imgStyle.topMargin = topMargin;
imgStyle.img = img;
imgStyle.width = width;
imgStyle.length = length;
imgStyle.tintColor = tintColor;
addImg(imgStyle);
}
function addImg(style) {
const stack = style.stack;
stack.addSpacer(style.topMargin);
let imgSpan = stack.addImage(style.img);
imgSpan.imageSize = new Size(style.width, style.length);
const tintColor = style.tintColor;
if (tintColor != undefined) {
imgSpan.tintColor = tintColor;
}
}
/*
**************************************
* 格式化时间
**************************************
*/
function getDateStr(date, formatter = "yyyy年MM月d日") {
let df = new DateFormatter();
df.locale = locale;
df.dateFormat = formatter;
return df.string(date);
}
/*
**************************************
* 按照时间获取问候语
**************************************
*/
function provideGreeting(date) {
const hour = date.getHours();
if (hour < 5) {
return greetingText.nightGreeting;
}
if (hour < 11) {
return greetingText.morningGreeting;
}
if (hour > 11 && hour - 12 < 1) {
return greetingText.noonGreeting;
}
if (hour - 12 < 7) {
return greetingText.afternoonGreeting;
}
if (hour - 12 < 10) {
return greetingText.eveningGreeting;
}
return greetingText.nightGreeting;
}
/*
**************************************
* 获取彩云天气
**************************************
*/
async function getWeather() {
let weatherInfo = {};
const location = await getLocation();
// 设置天气信息缓存
const weatherCache = files.joinPath(
files.documentsDirectory(),
"weather-data-cache"
);
const cacheExists = files.fileExists(weatherCache);
log("定位信息:" + location.locality + "·" + location.subLocality);
// 获取彩云天气数据
try {
// 彩云天气数据URL
const DOMAIN = `https://api.caiyunapp.com/v2.5/${apiKey}/${location.longitude},${location.latitude}/weather.json?alert=true`;
const weatherJsonData = await getJson(DOMAIN);
if (weatherJsonData.status == "ok") {
log("在线天气数据获取成功");
// 将获得的天气数据写入缓存
files.writeString(weatherCache, JSON.stringify(weatherJsonData));
// 天气突发预警
const alertWeatherTitle = weatherJsonData.result.alert.content.title;
log("突发的天气预警==>" + alertWeatherTitle);
weatherInfo.alertWeatherTitle = alertWeatherTitle;
// 温度范围
const temperatureData = weatherJsonData.result.daily.temperature[0];
// 最低温度
const minTemperature = temperatureData.min;
// 最高温度
const maxTemperature = temperatureData.max;
log("温度==>" + minTemperature + "|" + maxTemperature);
weatherInfo.minTemperature = Math.round(minTemperature);
weatherInfo.maxTemperature = Math.round(maxTemperature);
// 体感温度
const bodyFeelingTemperature =
weatherJsonData.result.realtime.apparent_temperature;
log("体感温度==>" + bodyFeelingTemperature);
weatherInfo.bodyFeelingTemperature = Math.round(bodyFeelingTemperature);
// 天气状况 weatherIcons[weatherIcon]
const weather = weatherJsonData.result.realtime.skycon;
log("天气状况==>" + weather + "|" + weatherIcons[weather]);
weatherInfo.weatherIcon = weatherIcons[weather];
// 天气描述
const weatherDesc = weatherJsonData.result.forecast_keypoint;
log("天气描述==>" + weatherDesc);
weatherInfo.weatherDesc = weatherDesc;
// 相对湿度
const humidity =
parseInt(weatherJsonData.result.realtime.humidity * 100) + "%";
log("相对湿度==>" + humidity);
if (humidity.length < 3) {
weatherInfo.humidity = "\x20\x20\x20\x20" + humidity;
} else {
weatherInfo.humidity = humidity;
}
// 舒适指数
const comfort = weatherJsonData.result.realtime.life_index.comfort.desc;
log("舒适指数==>" + comfort);
if (comfort.length < 2) {
weatherInfo.comfort = "\x20\x20\x20\x20" + comfort;
} else {
weatherInfo.comfort = comfort;
}
// 紫外线指数
const ultraviolet =
weatherJsonData.result.realtime.life_index.ultraviolet.desc;
log("紫外线指数==>" + ultraviolet);
if (ultraviolet.length < 2) {
weatherInfo.ultraviolet = "\x20\x20\x20\x20" + ultraviolet;
} else {
weatherInfo.ultraviolet = ultraviolet;
}
// 空气质量
const aqi = weatherJsonData.result.realtime.air_quality.aqi.chn;
const aqiInfo = airQuality(aqi);
log("空气质量==>" + aqiInfo);
weatherInfo.aqiInfo = aqiInfo;
// 日出日落
const astro = weatherJsonData.result.daily.astro[0];
// 日出
const sunrise = astro.sunrise.time;
// 日落
const sunset = astro.sunset.time;
log("日出==>" + sunrise + ",日落==>" + sunset);
weatherInfo.sunrise = sunrise.toString();
weatherInfo.sunset = sunset.toString();
}
} catch (e) {
if (cacheExists) {
// 读取天气数据缓存
const cache = files.readString(weatherCache);
log("天气缓存数据获取成功");
// 转换天气数据为JSON格式
const weatherJsonData = JSON.parse(cache);
// 天气突发预警
const alertWeatherTitle = weatherJsonData.result.alert.content.title;
log("突发的天气预警==>" + alertWeatherTitle);
weatherInfo.alertWeatherTitle = alertWeatherTitle;
// 温度范围
const temperatureData = weatherJsonData.result.daily.temperature[0];
// 最低温度
const minTemperature = temperatureData.min;
// 最高温度
const maxTemperature = temperatureData.max;
log("温度==>" + minTemperature + "|" + maxTemperature);
weatherInfo.minTemperature = Math.round(minTemperature);
weatherInfo.maxTemperature = Math.round(maxTemperature);
// 体感温度
const bodyFeelingTemperature =
weatherJsonData.result.realtime.apparent_temperature;
log("体感温度==>" + bodyFeelingTemperature);
weatherInfo.bodyFeelingTemperature = Math.round(bodyFeelingTemperature);
// 天气状况 weatherCacheIcons[weatherCacheIcon]
const weather = weatherJsonData.result.realtime.skycon;
log("天气状况==>" + weather + "|" + weatherIcons[weather]);
weatherInfo.weatherIcon = weatherIcons[weather];
// 天气描述
const weatherDesc = weatherJsonData.result.forecast_keypoint;
log("天气描述==>" + weatherDesc);
weatherInfo.weatherDesc = weatherDesc;
// 相对湿度