1 | "use strict";
|
---|
2 |
|
---|
3 | Object.defineProperty(exports, "__esModule", {
|
---|
4 | value: true
|
---|
5 | });
|
---|
6 | exports.default = parseWsc;
|
---|
7 |
|
---|
8 | var _postcss = require("postcss");
|
---|
9 |
|
---|
10 | var _validateWsc = require("./validateWsc");
|
---|
11 |
|
---|
12 | const none = /^\s*(none|medium)(\s+none(\s+(none|currentcolor))?)?\s*$/i;
|
---|
13 | const varRE = /(^.*var)(.*\(.*--.*\))(.*)/i;
|
---|
14 |
|
---|
15 | const varPreserveCase = p => `${p[1].toLowerCase()}${p[2]}${p[3].toLowerCase()}`;
|
---|
16 |
|
---|
17 | const toLower = v => {
|
---|
18 | const match = varRE.exec(v);
|
---|
19 | return match ? varPreserveCase(match) : v.toLowerCase();
|
---|
20 | };
|
---|
21 |
|
---|
22 | function parseWsc(value) {
|
---|
23 | if (none.test(value)) {
|
---|
24 | return ['medium', 'none', 'currentcolor'];
|
---|
25 | }
|
---|
26 |
|
---|
27 | let width, style, color;
|
---|
28 |
|
---|
29 | const values = _postcss.list.space(value);
|
---|
30 |
|
---|
31 | if (values.length > 1 && (0, _validateWsc.isStyle)(values[1]) && values[0].toLowerCase() === 'none') {
|
---|
32 | values.unshift();
|
---|
33 | width = '0';
|
---|
34 | }
|
---|
35 |
|
---|
36 | const unknown = [];
|
---|
37 | values.forEach(v => {
|
---|
38 | if ((0, _validateWsc.isStyle)(v)) {
|
---|
39 | style = toLower(v);
|
---|
40 | } else if ((0, _validateWsc.isWidth)(v)) {
|
---|
41 | width = toLower(v);
|
---|
42 | } else if ((0, _validateWsc.isColor)(v)) {
|
---|
43 | color = toLower(v);
|
---|
44 | } else {
|
---|
45 | unknown.push(v);
|
---|
46 | }
|
---|
47 | });
|
---|
48 |
|
---|
49 | if (unknown.length) {
|
---|
50 | if (!width && style && color) {
|
---|
51 | width = unknown.pop();
|
---|
52 | }
|
---|
53 |
|
---|
54 | if (width && !style && color) {
|
---|
55 | style = unknown.pop();
|
---|
56 | }
|
---|
57 |
|
---|
58 | if (width && style && !color) {
|
---|
59 | color = unknown.pop();
|
---|
60 | }
|
---|
61 | }
|
---|
62 |
|
---|
63 | return [width, style, color];
|
---|
64 | }
|
---|
65 |
|
---|
66 | module.exports = exports.default; |
---|