-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGitHub Profile.js
153 lines (143 loc) · 4.48 KB
/
GitHub Profile.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
if (typeof require === 'undefined') require = importModule
const { withSettings } = require('./withSettings.module')
const { addAvatar } = require('./widgets.module')
const { i18n } = require('./utils.module')
const preference = {
user: 'Honye',
primaryColorLight: '#333333',
primaryColorDark: '#ffffff',
secondaryColorLight: '#808080',
secondaryColorDark: '#808080'
}
const getProfile = async () => {
const { user } = preference
const url = `https://www.imarkr.com/api/github/${user}`
const request = new Request(url)
return await request.loadJSON()
}
/**
* @param {WidgetStack} container
*/
const addCountItem = (container, { icon, num, text }) => {
const {
primaryColorLight, primaryColorDark,
secondaryColorLight, secondaryColorDark
} = preference
const { widgetFamily } = config
let fontSize = 15
if (widgetFamily === 'small') { fontSize = 12 }
const stack = container.addStack()
stack.centerAlignContent()
const sfs = SFSymbol.named(icon)
sfs.applyFont(Font.systemFont(fontSize))
const $icon = stack.addImage(sfs.image)
$icon.tintColor = Color.dynamic(new Color(secondaryColorLight), new Color(secondaryColorDark))
$icon.imageSize = new Size(fontSize, fontSize)
const $num = stack.addText(` ${num} `)
$num.font = Font.systemFont(fontSize)
$num.textColor = Color.dynamic(new Color(primaryColorLight), new Color(primaryColorDark))
if (widgetFamily !== 'small') {
const $text = stack.addText(text)
$text.font = Font.systemFont(fontSize)
$text.textColor = Color.dynamic(new Color(secondaryColorLight), new Color(secondaryColorDark))
}
}
const render = async () => {
const {
user,
primaryColorLight, primaryColorDark,
secondaryColorLight, secondaryColorDark
} = preference
const profile = await getProfile()
const { widgetFamily } = config
const widget = new ListWidget()
widget.url = `https://github.com/${user}`
widget.setPadding(15, 15, 15, 15)
const head = widget.addStack()
head.centerAlignContent()
await addAvatar(head, {
size: 52,
src: profile.avatar
})
head.addSpacer(6)
const headContent = head.addStack()
headContent.layoutVertically()
const name = headContent.addText(profile.name)
name.textColor = Color.dynamic(new Color(primaryColorLight), new Color(primaryColorDark))
name.font = Font.mediumSystemFont(16)
if (widgetFamily === 'small') { name.minimumScaleFactor = 0.6 }
if (widgetFamily !== 'small') {
headContent.addSpacer(2)
const status = headContent.addText(profile.status)
status.textColor = Color.dynamic(new Color(secondaryColorLight), new Color(secondaryColorDark))
}
widget.addSpacer(10)
const bio = widget.addText(profile.bio)
bio.minimumScaleFactor = 0.7
bio.textColor = Color.dynamic(new Color(primaryColorLight), new Color(primaryColorDark))
widget.addSpacer()
const counts = widget.addStack()
counts.centerAlignContent()
addCountItem(counts, {
icon: 'person',
num: profile.followers,
text: 'followers'
})
counts.addSpacer(12)
addCountItem(counts, {
icon: 'star',
num: profile.total_stargazer_count,
text: 'stargazers'
})
return widget
}
await withSettings({
formItems: [
{
label: i18n(['User', '用户名']),
name: 'user',
type: 'input',
default: preference.user
},
{
type: 'group',
name: 'colors',
label: i18n(['Colors', '颜色']),
items: [
{
label: i18n(['Primary color', '主要颜色']),
name: 'primaryColorLight',
type: 'color',
media: '(prefers-color-scheme: light)',
default: preference.primaryColorLight
},
{
label: i18n(['Primary color', '主要颜色']),
name: 'primaryColorDark',
type: 'color',
media: '(prefers-color-scheme: dark)',
default: preference.primaryColorDark
},
{
label: i18n(['Secondary color', '次要颜色']),
name: 'secondaryColorLight',
type: 'color',
media: '(prefers-color-scheme: light)',
default: preference.secondaryColorLight
},
{
label: i18n(['Secondary color', '次要颜色']),
name: 'secondaryColorLight',
type: 'color',
media: '(prefers-color-scheme: dark)',
default: preference.secondaryColorDark
}
]
}
],
async render ({ settings, family }) {
config.widgetFamily = family ?? config.widgetFamily
Object.assign(preference, settings)
return await render()
}
})