-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.js
136 lines (120 loc) · 4.1 KB
/
build.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
const StyleDictionaryPackage = require('style-dictionary');
// HAVE THE STYLE DICTIONARY CONFIG DYNAMICALLY GENERATED
StyleDictionaryPackage.registerFormat({
name: 'scss/variables',
formatter: function (dictionary, config) {
let format = dictionary.allProperties.map(function(prop, i) {
if(prop.type == "typography"){
return `\t.${prop.name}{ \n\t\t${prop.value}; \n\t}`;
}
else{
return ` --${prop.name}: ${prop.value};`;
}
}).join('\n');
return `${this.selector} {
${format}
}`
}
});
StyleDictionaryPackage.registerTransform({
name: 'sizes/px',
type: 'value',
matcher: function(prop) {
// You can be more specific here if you only want 'em' units for font sizes
return ["fontSize", "spacing", "borderRadius", "borderWidth", "sizing", "lineHeights", "paragraphSpacing"].includes(prop.attributes.category);
},
transformer: function(prop) {
// You can also modify the value here if you want to convert pixels to ems
return parseFloat(prop.original.value) + 'px';
}
});
StyleDictionaryPackage.registerTransform({
name: "shadow/css",
type: "value",
transitive: true, // Necessary when the color is an alias reference, or the shadows themselves are aliased
matcher: (token) => token.type === "boxShadow",
transformer: (token) => {
// Allow both single and multi shadow tokens:
const shadows = Array.isArray(token.value) ? token.value : [token.value];
const transformedShadows = shadows.map((shadow) => {
const { x, y, blur, spread, color, type } = shadow;
const inset = type === "innerShadow" ? "inset " : "";
return `${inset}${x}px ${y}px ${blur}px ${spread}px ${color}`;
});
return transformedShadows.join(", ");
},
});
StyleDictionaryPackage.registerTransform({
name: 'typography/mix',
type: 'value',
transitive: true,
matcher: token => token.type === 'typography',
transformer: (token) => {
const {value} = token;
var fontWeights = {
"Thin": 100,
"Extra Light": 200,
"Light": 300,
"Normal": 400,
"Regular": 400,
"Medium": 500,
"Semi Bold": 600,
"Bold": 700,
"Extra Bold": 800,
"Black": 900,
"Extra Black": 950,
}
return `font-family: ${value.fontFamily};
font-weight: ${fontWeights[""+value.fontWeight]};
line-height: ${value.lineHeight}px;
font-size: ${value.fontSize}px;
letter-spacing: ${value.letterSpacing};
line-height: ${value.paragraphSpacing}px;
text-indent: ${value.paragraphIndent};
text-transform: ${value.textCase};
text-decoration: ${value.textDecoration}`
}
});
function getStyleDictionaryConfig(theme) {
return {
"source": [
`tokens/${theme}.json`,
],
"platforms": {
"scss": {
"transformGroup": "scss",
"transforms": ["attribute/cti", "name/cti/kebab", "sizes/px", "shadow/css", "typography/mix"],
"buildPath": `output/`,
"files": [{
"destination": `${theme}.scss`,
"format": "scss/variables",
"selector": `.${theme}-theme`,
"options": {
// Look here 👇
"outputReferences": true
}
}]
},
"web": {
"transforms": ["attribute/cti", "name/cti/kebab", "sizes/px", "shadow/css", "typography/mix"],
"buildPath": `output/`,
"files": [{
"destination": `${theme}.css`,
"format": "css/variables",
"selector": `.${theme}-theme`
}]
}
}
};
}
console.log('Build started...');
// PROCESS THE DESIGN TOKENS FOR THE DIFFEREN BRANDS AND PLATFORMS
['global', 'dark', 'light', 'input'].map(function (theme) {
console.log('\n==============================================');
console.log(`\nProcessing: [${theme}]`);
const StyleDictionary = StyleDictionaryPackage.extend(getStyleDictionaryConfig(theme));
StyleDictionary.buildPlatform('scss');
console.log('\nEnd processing');
})
console.log('\n==============================================');
console.log('\nBuild completed!');