-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
main.js
82 lines (73 loc) · 2.64 KB
/
main.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
function changeTheme(that) {
const themeName = that.getAttribute('themeName');
const previewImage = document.getElementById('previewImage');
const themeStatus = document.getElementById('themeStatus');
document.body.className = themeName;
that.parentElement.childNodes.forEach((child) => {
if (child.classList?.contains('theme-btn--active')) {
child.classList.remove('theme-btn--active');
}
});
that.classList.add('theme-btn--active');
let previewImgSrc = null;
switch (themeName) {
case 'silver-theme':
previewImage.src = 'assets/preview-silver.png';
themeStatus.textContent = 'Selected: Silver'
previewImgSrc = 'assets/preview-silver.png';
break;
case 'dark-theme':
previewImage.src = 'assets/preview-dark.png';
themeStatus.textContent = 'Selected: Dark'
previewImgSrc = 'assets/preview-dark.png';
break;
case 'butter-theme':
previewImage.src = 'assets/preview-butter.png';
themeStatus.textContent = 'Selected: Butter'
previewImgSrc = 'assets/preview-butter.png';
break;
default:
previewImage.src = 'assets/preview-light.png';
themeStatus.textContent = 'Selected: Light'
previewImgSrc = 'assets/preview-light.png';
}
const featImgs = document.getElementsByClassName('feat-img');
for (let featImg of featImgs) {
featImg.src = previewImgSrc;
}
}
function getSupporterProfile(supporter) {
let profilePic = null
if (typeof supporter.image === 'string') {
profilePic = document.createElement('img');
profilePic.src = supporter.image;
} else {
profilePic = document.createElement('div');
profilePic.classList.add('text-s1')
profilePic.textContent = supporter.name.slice(0, 2);
}
profilePic.classList.add('supporterProfile');
const link = document.createElement('a');
link.href = supporter.profile;
link.target = '_blank';
link.append(profilePic);
link.title = supporter.name;
return link;
}
async function loadSupport() {
const supportOrg = document.getElementById('supportOrg');
const supportInd = document.getElementById('supportInd');
const ORGURL = 'https://opencollective.com/cinny/members/organizations.json';
const INDURL = 'https://opencollective.com/cinny/members/users.json';
const orgs= await (await fetch(ORGURL, { method: 'GET' })).json();
orgs.forEach((org) => {
if (org.totalAmountDonated === 0) return;
supportOrg.append(getSupporterProfile(org));
});
const inds = await (await fetch(INDURL, { method: 'GET' })).json();
inds.forEach((ind) => {
if (ind.totalAmountDonated === 0) return;
supportInd.append(getSupporterProfile(ind));
});
}
loadSupport();