-
Notifications
You must be signed in to change notification settings - Fork 28
/
gulpfile.js
152 lines (142 loc) · 4.9 KB
/
gulpfile.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
import gulp from 'gulp';
import concat from 'gulp-concat';
import postcss from 'gulp-postcss';
import rename from 'gulp-rename';
import replace from 'gulp-replace';
import * as cssgrace from 'cssgrace';
import cssnested from 'postcss-nested';
import cssvar from 'postcss-css-variables';
const { src, dest } = gulp;
export function build() {
const fileName = 'layui-theme-dark';
return src('src/*.css')
.pipe(concat('full.css', { newLine: '' }))
.pipe(rename({ basename: fileName }))
.pipe(dest('./dist'))
.pipe(postcss([/*ie8RgbaReplace(),*/ cssvar({ preserve: false, preserveInjectedVariables: false }), cssgrace]))
.pipe(rename({ basename: `${fileName}-legacy` }))
.pipe(dest('./dist'));
}
// WIP
export function buildTiny() {
const commentRE = /\/\*[^*]*\*+([^/][^*]*\*+)*\//g;
const rootRE = /:root\s*{([\s\S\n]*?)}/m;
const fileName = 'layui-theme-dark-tiny';
return src('src/*.css')
.pipe(concat('full.css', { newLine: '' }))
.pipe(postcss([baseColorRulesExtractor(), cssvar({ preserve: false, preserveInjectedVariables: false })]))
.pipe(replace(commentRE, ''))
.pipe(replace(rootRE, ''))
.pipe(rename({ basename: fileName }))
.pipe(dest('./dist'));
}
export function watch() {
gulp.watch('src/*.css', gulp.series(['build']));
}
// WIP
function baseColorRulesExtractor() {
// 保留阴影和部分深色背景优化
const ignoreDeclProp = ['box-shadow', 'opacity', 'filter', 'color-scheme'];
const ignoreDeclVal = ['transparent', 'initial', 'none', '0', '0 0'];
// 保留以避免破坏样式优先级
const ignoreRules = [
'.layui-input:focus,.layui-textarea:focus',
'.layui-form-danger+.layui-form-select .layui-input,.layui-form-danger:focus',
'.layui-input-wrap .layui-input:focus+.layui-input-split',
'.layui-form-onswitch',
'.layui-form-checked,.layui-form-checked:hover',
'.layui-form-checked>div,.layui-form-checked:hover>div',
'.layui-form-checked>i,.layui-form-checked:hover>i',
'.layui-form-checkbox[lay-skin=primary]:hover>i',
'.layui-form-checked[lay-skin=primary]>i',
'.layui-laypage a:hover',
/** 边框宽度处理 */
'.layui-code-view',
];
// 移除以避免破坏样式优先级
const shouldRemovedRules = [
'.layui-bg-black',
'.layui-bg-gray',
'.layui-font-black',
'.layui-font-gray',
'.layui-layer-dialog .layui-layer-content .layui-layer-face',
'.layui-layer-loading-2:after',
'.layui-layer-loading-2:after,.layui-layer-loading-2:before',
];
const propRE = /--lay-color-(bg|text|border|fill|hover|active|black|gray)(-[1-13])?/;
return {
postcssPlugin: 'postcss-layui-theme-remove',
Once(root) {
root.walkDecls((decl) => {
if (
ignoreDeclProp.includes(decl.prop) ||
ignoreDeclVal.includes(decl.value) ||
ignoreRules.includes(decl.parent.selector)
) {
return;
}
if (decl.parent.selector !== ':root' && !propRE.test(decl.value)) {
decl.remove();
}
});
root.walkRules((rule) => {
if ((rule && !rule.nodes?.length) || shouldRemovedRules.includes(rule.selector)) {
rule.remove();
}
});
},
};
}
// WIP IE8
function ie8RgbaReplace() {
const reBLANK_LINE = /(\r\n|\n|\r)(\s*?\1)+/gi;
const reText = /var\s*\(\s*(--lay-color-text-[1-4])\s*\)/;
const reFill = /var\s*\(\s*(--lay-color-fill-[1-4])\s*\)/;
const textColorMap = {
'--lay-color-text-1': '#FAFAFA',
'--lay-color-text-2': '#F6F6F6',
'--lay-color-text-3': '#E8E8E9',
'--lay-color-text-4': '#BABABB',
};
const fillColorMap = {
'--lay-color-fill-1': '#1D1D1D',
'--lay-color-fill-2': '#262727',
'--lay-color-fill-3': '#303030',
'--lay-color-fill-4': '#39393A',
};
function insertDecl(decl, i, newDecl) {
const prev = decl.prev();
let declBefore;
if (prev && prev.type == 'comment' && prev.raws.before.indexOf('\n') == -1) {
declBefore = prev;
} else {
declBefore = decl;
}
decl.parent.insertBefore(declBefore, newDecl);
}
return {
postcssPlugin: 'postcss-layui-color-replace',
Once(root) {
root.walkDecls((decl, i) => {
if (['color', 'border'].includes(decl.prop) && reText.test(decl.value)) {
const newValue = textColorMap[decl.value.match(reText)[1].trim()];
const reBefore = decl.raws.before.replace(reBLANK_LINE, '$1');
insertDecl(decl, i, {
before: reBefore,
prop: 'color',
value: newValue,
});
}
if (['background', 'background-color'].includes(decl.prop) && reFill.test(decl.value)) {
const newValue = fillColorMap[decl.value.match(reFill)[1].trim()];
const reBefore = decl.raws.before.replace(reBLANK_LINE, '$1');
insertDecl(decl, i, {
before: reBefore,
prop: 'background-color',
value: newValue,
});
}
});
},
};
}