-
Notifications
You must be signed in to change notification settings - Fork 0
/
themeSelector.js
82 lines (62 loc) · 1.74 KB
/
themeSelector.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
/* global window */
/* global document */
const themeKey = 'currentThemeId';
const themeList = [
'light',
'light.compact',
'carmine.compact',
'carmine',
'contrast.compact',
'contrast',
'dark.compact',
'dark',
'darkmoon.compact',
'darkmoon',
'darkviolet.compact',
'darkviolet',
'fluent.blue.dark.compact',
'fluent.blue.dark',
'fluent.blue.light.compact',
'fluent.blue.light',
'greenmist.compact',
'greenmist',
'softblue.compact',
'softblue',
'material.blue.dark.compact',
'material.blue.dark',
'material.blue.light.compact',
'material.blue.light',
'material.lime.dark.compact',
'material.lime.dark',
'material.lime.light.compact',
'material.lime.light',
'material.orange.dark.compact',
'material.orange.dark',
'material.orange.light.compact',
'material.orange.light',
'material.purple.dark.compact',
'material.purple.dark',
'material.purple.light.compact',
'material.purple.light',
'material.teal.dark.compact',
'material.teal.dark',
'material.teal.light.compact',
'material.teal.light'
];
const initThemes = (dropDownList) => {
themeList.forEach(theme => {
const item = document.createElement('option');
item.value = theme;
item.text = theme;
dropDownList.add(item);
});
};
window.addEventListener('load', () => {
const dropDownList = document.querySelector('#theme-selector');
dropDownList.addEventListener('change', () => {
window.localStorage.setItem(themeKey, dropDownList.value);
window.location.reload();
});
initThemes(dropDownList);
dropDownList.value = window.localStorage.getItem(themeKey) || themeList[0];
});