-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle-token.js
153 lines (135 loc) · 3.58 KB
/
style-token.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
/* eslint-disable no-console */
const StyleDictionaryPackage = require('style-dictionary')
const global = require('./styles/tokens/global.json')
const light = require('./styles/tokens/light.json')
const dark = require('./styles/tokens/dark.json')
const supportedTokenTypeList = [
'color',
]
const formatValue = (tokenType, value) => {
let formattedValue
switch (tokenType) {
case 'color':
default:
formattedValue = value
}
return formattedValue
}
/**
* Custom format that handle reference in css variables
*/
StyleDictionaryPackage.registerFormat({
name: 'css/variables',
formatter({ dictionary }) {
return `${this.selectorName} {
${dictionary.allProperties
.map((token) => {
const value = formatValue(token.type, token.value)
if (dictionary.usesReference(token.original.value)) {
const reference = dictionary.getReferences(token.original.value)
const referenceName = reference[0].name
return ` --${token.name}: var(--${referenceName}, ${value});`
}
return ` --${token.name}: ${value};`
})
.join('\n')}
}`
},
})
/**
* Custom format that generate tailwind color config based on css variables
*/
StyleDictionaryPackage.registerFormat({
name: 'tw/css-variables',
formatter({ dictionary }) {
return (
'module.exports = '
+ `{\n${
dictionary.allProperties
.map((token) => {
const value = formatValue(token.type, token.value)
return ` "${token.path
.slice(1)
.join('-')}": "var(--${token.name}, ${value});"`
})
.join(',\n')
}\n}`
)
},
})
/**
* Returns the files configuration
* for generating seperated tailwind files.
*/
function getConfigTailwindFilesByType(typeList) {
return typeList.map((typeName) => {
return {
destination: `tw-extend/${typeName}.js`,
format: 'tw/css-variables',
filter: {
type: typeName,
},
}
})
}
// HAVE THE STYLE DICTIONARY CONFIG DYNAMICALLY GENERATED
function getStyleDictionaryConfig(tokensConfig = {}) {
const { brand, buildTailwindFiles, tokens, selectorName } = tokensConfig
let configTailwindFilesByType = []
if (buildTailwindFiles) {
configTailwindFilesByType = getConfigTailwindFilesByType(
supportedTokenTypeList,
)
}
return {
tokens,
platforms: {
web: {
transformGroup: 'web',
prefix: 'ui',
buildPath: './styles/',
files: [
{
destination: `${brand}-variables.css`,
format: 'css/variables',
selectorName,
},
...configTailwindFilesByType,
],
},
},
}
}
console.log('Build started...')
const configs = [
// PROCESS THE DESIGN TOKENS FOR THE DIFFEREN BRANDS AND PLATFORMS
{
brand: 'global',
buildTailwindFiles: false,
selectorName: ':root',
tokens: global,
},
{
brand: 'dark',
buildTailwindFiles: false,
selectorName: '[data-theme="dark"]',
tokens: dark,
},
{
brand: 'light',
buildTailwindFiles: true,
selectorName: '[data-theme="light"]',
tokens: light,
},
]
configs.map((config) => {
console.log('\n==============================================')
console.log(`\nProcessing: [Web] [${config.brand}]`)
const StyleDictionary = StyleDictionaryPackage.extend(
getStyleDictionaryConfig(config),
)
StyleDictionary.buildPlatform('web')
console.log('\nEnd processing')
})
console.log('\n==============================================')
console.log('\nBuild completed!')