-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.js
267 lines (233 loc) · 6.3 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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
'use strict';
const postcss = require('postcss');
const Color = require('color');
/**
* @typedef Options
* @property {boolean} withoutGrey
* @property {boolean} withoutMonochrome
* @property {boolean} allColors
* @property {string|null} colorFormat
* @property {"hue"|"frequency"|null} sort
*/
function CssColorExtractor() {
const propertiesWithColors = [
'color',
'background',
'background-color',
'background-image',
'border',
'border-top',
'border-right',
'border-bottom',
'border-left',
'border-color',
'border-top-color',
'border-right-color',
'border-bottom-color',
'border-left-color',
'outline',
'outline-color',
'text-decoration',
'text-decoration-color',
'text-shadow',
'box-shadow',
'fill',
'stroke',
'stop-color',
'flood-color',
'lighting-color',
];
const colorFormats = [
'hexString',
'hexaString',
'rgbString',
'percentString',
'hslString',
'hwbString',
'keyword',
];
/**
* @param {string} property
* @returns {boolean}
*/
function doesPropertyAllowColor(property) {
return propertiesWithColors.indexOf(property) > -1;
}
/**
* @param {Color} color
* @returns {boolean}
*/
function isColorGrey(color) {
const red = color.red();
// we only need to test one color
// since isColorMonochrome assures that all
// three rgb colors are equal
return isColorMonochrome(color) && red > 0 && red < 255;
}
/**
* @param {Color} color
* @returns {boolean}
*/
function isColorMonochrome(color) {
const hsl = color.hsl().object();
return hsl.h === 0 && hsl.s === 0;
}
/**
* @param {string} format
* @returns {boolean}
*/
function isValidColorFormat(format) {
return colorFormats.indexOf(format) > -1;
}
/**
* @param {string} value the original string color value extracted from css
* @param {Options} options
* @returns {string}
*/
function serializeColor(value, options) {
if (!options.colorFormat || !isValidColorFormat(options.colorFormat)) {
return value;
}
const color = new Color(value);
let colorFormat = options.colorFormat;
if (!color[options.colorFormat]) {
colorFormat = colorFormat.replace(/String$/, '');
}
const formatted = color[colorFormat]();
if (typeof formatted === 'string') {
return formatted;
}
return formatted.string();
}
/**
* @param {Partial<Options>} options
* @returns {Options}
*/
function defaultOptions(options) {
return Object.assign({
withoutGrey: false,
withoutMonochrome: false,
allColors: false,
colorFormat: null,
sort: null,
}, options);
}
/**
* @param {string[]} colors
* @param {Partial<Options>} sortOptions
* @returns {string[]}
*/
function sortColors(colors, sortOptions) {
const options = defaultOptions(sortOptions);
colors = colors.map((value) => serializeColor(value, options));
if (options.sort === 'hue') {
colors = colors.sort((a, b) => {
return new Color(a).hue() - new Color(b).hue();
});
}
if (options.sort === 'frequency') {
const frequencyMap = new Map();
colors.forEach((value) => {
frequencyMap.set(value, (frequencyMap.get(value) || 0) + 1);
});
colors = colors.sort((a, b) => {
return frequencyMap.get(b) - frequencyMap.get(a);
});
}
return options.allColors ? colors : unique(colors);
}
/**
* @param {string[]} items
* @returns {string[]}
*/
function unique(items) {
return [...new Set(items)];
}
/**
* @param {string} string
* @param {Partial<Options>} options
* @returns {string[]}
*/
function extractColorsFromString(string, options) {
/** @type {string[]} */
let colors = [];
const {
withoutMonochrome,
withoutGrey,
colorFormat,
} = defaultOptions(options);
postcss.list.comma(string).forEach(function(items) {
postcss.list.space(items).forEach(function(item) {
const regex = new RegExp(
'^' +
'(-webkit-|-moz-|-o-)?' +
'(repeating-)?' +
'(radial|linear)-gradient\\((.*?)\\)' +
'$',
);
const match = item.match(regex);
if (match) {
colors = colors.concat.apply(
colors,
postcss.list.comma(match[4]).map(postcss.list.space),
);
} else {
colors.push(item);
}
});
});
return colors.filter((value) => {
let color;
// check if it is a valid color
try {
color = new Color(value);
} catch (e) {
return false;
}
if (withoutMonochrome && isColorMonochrome(color)) {
return false;
}
if (withoutGrey && isColorGrey(color)) {
return false;
}
if (colorFormat === 'keyword') {
// convert back to rgb to see if keyword is an exact match
const keywordColor = new Color(color.keyword());
if (keywordColor.rgbNumber() !== color.rgbNumber()) {
return false;
}
}
return true;
});
}
/**
* @param {postcss.Declaration} decl
* @param {Partial<Options>} options
* @returns {string[]}
*/
function extractColorsFromDecl(decl, options) {
if (!doesPropertyAllowColor(decl.prop)) {
return [];
}
return extractColorsFromString(decl.value, options);
}
/**
* @param {string} css
* @param {Partial<Options>} options
* @returns {string[]}
*/
function extractColorsFromCss(css, options) {
let colors = [];
postcss.parse(css).walkDecls(function(decl) {
colors = colors.concat(extractColorsFromDecl(decl, options));
});
return colors;
}
/** @type {(decl: postcss.Declaration, options: Partial<Options>) => string[]} */
this.fromDecl = (decl, options) => sortColors(extractColorsFromDecl(decl, options), options);
/** @type {(css: string, options: Partial<Options>) => string[]} */
this.fromCss = (css, options) => sortColors(extractColorsFromCss(css, options), options);
/** @type {(string: string, options: Partial<Options>) => string[]} */
this.fromString = (string, options) => sortColors(extractColorsFromString(string, options), options);
}
module.exports = new CssColorExtractor();