forked from im3x/Scriptables
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlatest.js
More file actions
137 lines (127 loc) · 3.3 KB
/
Copy pathlatest.js
File metadata and controls
137 lines (127 loc) · 3.3 KB
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
//
// 每日必应壁纸
// 项目地址:https://github.com/im3x/Scriptables
//
class Im3xWidget {
/**
* 初始化
* @param arg 外部传递过来的参数
*/
constructor (arg) {
this.arg = arg
this.widgetSize = config.widgetFamily
}
/**
* 渲染组件
*/
async render () {
if (this.widgetSize === 'medium') {
return await this.renderMedium()
} else if (this.widgetSize === 'large') {
return await this.renderLarge()
} else {
return await this.renderSmall()
}
}
/**
* 渲染小尺寸组件
*/
async renderSmall () {
let w = new ListWidget()
let data = await this.getData()
w.backgroundImage = await this.getImage(data['img_url'])
w.url = data['img_url']
return w
}
/**
* 渲染中尺寸组件
*/
async renderMedium () {
let w = new ListWidget()
let data = await this.getData()
w.backgroundImage = await this.getImage(data['img_url'])
w.url = data['img_url']
let t = w.addText(data['title'])
t.font = Font.lightSystemFont(14)
t.textColor = Color.white()
t.centerAlignText()
return w
}
/**
* 渲染大尺寸组件
*/
async renderLarge () {
let w = new ListWidget()
let data = await this.getData()
w.backgroundImage = await this.getImage(data['img_url'])
w.url = data['img_url']
let t = w.addText(data['title'])
t.font = Font.lightSystemFont(14)
t.textColor = Color.white()
t.centerAlignText()
return w
}
async getData () {
let idx = parseInt(this.arg)
if (!Number.isInteger(idx)) idx = 0
if (idx > 7) idx = 7
if (idx < 0) idx = 0
let api = `https://api.66mz8.com/api/bing.php?format=json&idx=${idx}`
let req = new Request(api)
let res = await req.loadJSON()
return res
}
/**
* 加载远程图片
* @param url string 图片地址
* @return image
*/
async getImage (url) {
let req = new Request(url)
return await req.loadImage()
}
/**
* 给图片加上半透明遮罩
* @param img 要处理的图片对象
* @return image
*/
async shadowImage (img) {
let ctx = new DrawContext()
ctx.size = img.size
ctx.drawImageInRect(img, new Rect(0, 0, img.size['width'], img.size['height']))
// 图片遮罩颜色、透明度设置
ctx.setFillColor(new Color("#000000", 0.7))
ctx.fillRect(new Rect(0, 0, img.size['width'], img.size['height']))
let res = await ctx.getImage()
return res
}
/**
* 编辑测试使用
*/
async test () {
if (config.runsInWidget) return
this.widgetSize = 'small'
let w1 = await this.render()
await w1.presentSmall()
this.widgetSize = 'medium'
let w2 = await this.render()
await w2.presentMedium()
this.widgetSize = 'large'
let w3 = await this.render()
await w3.presentLarge()
}
/**
* 组件单独在桌面运行时调用
*/
async init () {
if (!config.runsInWidget) return
let widget = await this.render()
Script.setWidget(widget)
Script.complete()
}
}
module.exports = Im3xWidget
// 如果是在编辑器内编辑、运行、测试,则取消注释这行,便于调试:
// await new Im3xWidget().test()
// 如果是组件单独使用(桌面配置选择这个组件使用,则取消注释这一行:
// await new Im3xWidget(args.widgetParameter).init()