-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
201 lines (189 loc) · 4.1 KB
/
index.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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
/**
* Usage:
* @generate-spacing();
* cssnano will remove it if it does not have the paranthesis.
*/
module.exports = (opts = {}) => {
return {
postcssPlugin: 'postcss-spacing',
AtRule: {
'generate-spacing': (atRule, api) => {
spacingPlugin(opts, atRule, api);
},
},
};
};
module.exports.postcss = true;
const defaults = {
unit: 0.25,
start: 0,
end: 4,
};
function spacingPlugin(opts, atRule, { Rule, Declaration }) {
// use the params to overwrite the build time config
const params = Object.fromEntries(parseParams(atRule.params));
for (const k in params) {
opts[k] = params[k];
}
// set options with defaults
for (const k in defaults) {
if (!opts.hasOwnProperty(k)) {
opts[k] = defaults[k];
}
}
const directions = {
// placed in order so that they can overwrite correctly
t: ['top'],
r: ['right'],
b: ['bottom'],
l: ['left'],
x: ['left', 'right'],
y: ['top', 'bottom'],
'': [],
};
function multiply(n) {
let result = n ? (n < 0 ? -opts.unit : opts.unit) : 0;
n = Math.abs(n);
for (let i = 1; i < n; i++) {
result *= 2;
}
return result;
}
function generate(type, alias, direction, props, multiplier) {
const postfix = multiplier < 0 ? 'n' + Math.abs(multiplier) : multiplier;
const rule = new Rule({ selector: `.${alias}${direction}-${postfix}` });
if (direction === '') {
rule.append(
new Declaration({
prop: type,
value: multiply(multiplier) + 'rem !important',
})
);
} else {
props.map((cur) => {
rule.append(
new Declaration({
prop: `${type}-${cur}`,
value: multiply(multiplier) + 'rem !important',
})
);
});
}
atRule.after(rule);
}
// generate margins and paddings
for (let dir in directions) {
// can start from negative to allow negative margins
for (let i = opts.start; i <= opts.end; i++) {
generate('margin', 'm', dir, directions[dir], i);
// padding cannot be negative
if (i >= 0) {
generate('padding', 'p', dir, directions[dir], i);
}
}
}
// margin auto
atRule.after(
new Rule({ selector: `.mr-a` }).append(
new Declaration({
prop: 'margin-right',
value: 'auto !important',
}),
new Declaration({
prop: 'display',
value: 'block',
})
)
);
atRule.after(
new Rule({ selector: `.ml-a` }).append(
new Declaration({
prop: 'margin-left',
value: 'auto !important',
}),
new Declaration({
prop: 'display',
value: 'block',
})
)
);
atRule.after(
new Rule({ selector: `.mx-a` }).append(
new Declaration({
prop: 'margin-left',
value: 'auto !important',
}),
new Declaration({
prop: 'margin-right',
value: 'auto !important',
}),
new Declaration({
prop: 'display',
value: 'block',
})
)
);
atRule.after(
new Rule({ selector: `.mt-a` }).append(
new Declaration({
prop: 'margin-top',
value: 'auto !important',
}),
new Declaration({
prop: 'display',
value: 'block',
})
)
);
atRule.after(
new Rule({ selector: `.mb-a` }).append(
new Declaration({
prop: 'margin-bottom',
value: 'auto !important',
}),
new Declaration({
prop: 'display',
value: 'block',
})
)
);
atRule.after(
new Rule({ selector: `.my-a` }).append(
new Declaration({
prop: 'margin-top',
value: 'auto !important',
}),
new Declaration({
prop: 'margin-bottom',
value: 'auto !important',
}),
new Declaration({
prop: 'display',
value: 'block',
})
)
);
atRule.after(
new Rule({ selector: `.m-a` }).append(
new Declaration({
prop: 'margin',
value: 'auto !important',
}),
new Declaration({
prop: 'display',
value: 'block',
})
)
);
// gaps for flexbox and grid
for (let i = Math.max(0, opts.start); i <= opts.end; i++) {
generate('gap', 'g', '', null, i);
}
atRule.remove();
}
function parseParams(params) {
return params
.slice(1, -1)
.split(/,\s*/)
.map((arg) => arg.split(/:\s*/));
}