-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomputed-options.js
87 lines (84 loc) · 3.48 KB
/
computed-options.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
module.exports = function (themeConfig) {
const fontParams = {
'adventpro': { hasItalic: true },
'aleo': { hasItalic: true },
'andadapro': { hasItalic: true },
'antonio': { hasItalic: false },
'archivonarrow': { hasItalic: true },
'asap': { hasItalic: true },
'assistant': { hasItalic: false },
'besley': { hasItalic: true },
'bitter': { hasItalic: true },
'brygada1918': { hasItalic: true },
'cabin': { hasItalic: true },
'cairo': { hasItalic: false },
'comfortaa': { hasItalic: false },
'dancingscript': { hasItalic: false },
'dosis': { hasItalic: false },
'domine': { hasItalic: false },
'exo': { hasItalic: true },
'faustina': { hasItalic: true },
'figtree': { hasItalic: true },
'frankruhllibre': { hasItalic: false },
'glory': { hasItalic: true },
'gluten': { hasItalic: false },
'heebo': { hasItalic: false },
'imbue': { hasItalic: false },
'instrumentsans': { hasItalic: true },
'inter': { hasItalic: true },
'jetbrainsmono': { hasItalic: true },
'jura': { hasItalic: false },
'karla': { hasItalic: true },
'kreon': { hasItalic: false },
'labrada': { hasItalic: true },
'lemonada': { hasItalic: false },
'lexend': { hasItalic: false },
'librefranklin': { hasItalic: true },
'lora': { hasItalic: true },
'manuale': { hasItalic: true },
'manrope': { hasItalic: false },
'mavenpro': { hasItalic: false },
'merriweathersans': { hasItalic: true },
'montserrat': { hasItalic: true },
'nunito': { hasItalic: true },
'orbitron': { hasItalic: false },
'oswald': { hasItalic: false },
'petrona': { hasItalic: true },
'playfairdisplay': { hasItalic: true },
'plusjakartasans': { hasItalic: true },
'publicsans': { hasItalic: true },
'quicksand': { hasItalic: false },
'raleway': { hasItalic: true },
'redhatdisplay': { hasItalic: true },
'redhatmono': { hasItalic: true },
'robotoflex': { hasItalic: false },
'robotoslab': { hasItalic: false },
'rokkitt': { hasItalic: true },
'rubik': { hasItalic: true },
'ruda': { hasItalic: false },
'smoochsans': { hasItalic: false },
'sourcecodepro': { hasItalic: true },
'spartan': { hasItalic: false },
'system-ui': { hasItalic: false },
'urbanist': { hasItalic: true },
'worksans': { hasItalic: true },
'yanonekaffeesatz': { hasItalic: false },
'yrsa': { hasItalic: true }
};
let fontBody = themeConfig.customConfig.find(option => option.name === 'fontBody').value;
let fontHeadings = themeConfig.customConfig.find(option => option.name === 'fontHeadings').value;
let disableFontBodyItalic = themeConfig.customConfig.find(option => option.name === 'disableFontBodyItalic').value;
let disableFontHeadingsItalic = themeConfig.customConfig.find(option => option.name === 'disableFontHeadingsItalic').value;
return [
{
name: 'fontBodyItalic',
type: 'checkbox',
value: !disableFontBodyItalic && (fontParams[fontBody]?.hasItalic || false)
},
{
name: 'fontHeadingsItalic',
type: 'checkbox',
value: !disableFontHeadingsItalic && (fontParams[fontHeadings]?.hasItalic || false)
}
];
};