-
Notifications
You must be signed in to change notification settings - Fork 527
/
Copy pathhelpers.js
459 lines (394 loc) · 12.3 KB
/
helpers.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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
'use strict';
var util = require('util'),
fs = require('fs'),
path = require('path'),
yaml = require('js-yaml'),
gonzales = require('gonzales-pe');
var helpers = {};
helpers.log = function log (input) {
console.log(util.inspect(input, false, null));
};
helpers.propertySearch = function (haystack, needle, property) {
var length = haystack.length,
i;
for (i = 0; i < length; i++) {
if (haystack[i][property] === needle) {
return i;
}
}
return -1;
};
helpers.isEqual = function (a, b) {
var startLine = a.start.line === b.start.line ? true : false,
endLine = a.end.line === b.end.line ? true : false,
type = a.type === b.type ? true : false,
length = a.content.length === b.content.length ? true : false;
if (startLine && endLine && type && length) {
return true;
}
else {
return false;
}
};
helpers.isUnique = function (results, item) {
var search = this.propertySearch(results, item.line, 'line');
if (search === -1) {
return true;
}
else if (results[search].column === item.column && results[search].message === item.message) {
return false;
}
else {
return true;
}
};
helpers.addUnique = function (results, item) {
if (this.isUnique(results, item)) {
results.push(item);
}
return results;
};
helpers.sortDetects = function (a, b) {
if (a.line < b.line) {
return -1;
}
if (a.line > b.line) {
return 1;
}
if (a.line === b.line) {
if (a.column < b.column) {
return -1;
}
if (a.column > b.column) {
return 1;
}
return 0;
}
return 0;
};
helpers.isNumber = function (val) {
if (isNaN(parseInt(val, 10))) {
return false;
}
return true;
};
helpers.isUpperCase = function (str) {
var pieces = str.split(''),
i,
result = 0;
for (i = 0; i < pieces.length; i++) {
if (!helpers.isNumber(pieces[i])) {
if (pieces[i] === pieces[i].toUpperCase() && pieces[i] !== pieces[i].toLowerCase()) {
result++;
}
else {
return false;
}
}
}
if (result) {
return true;
}
return false;
};
helpers.isLowerCase = function (str) {
var pieces = str.split(''),
i,
result = 0;
for (i = 0; i < pieces.length; i++) {
if (!helpers.isNumber(pieces[i])) {
if (pieces[i] === pieces[i].toLowerCase() && pieces[i] !== pieces[i].toUpperCase()) {
result++;
}
else {
return false;
}
}
}
if (result) {
return true;
}
return false;
};
/**
* Determines if a given string adheres to camel-case format
* @param {string} str String to test
* @returns {boolean} Whether str adheres to camel-case format
*/
helpers.isCamelCase = function (str) {
return /^[a-z][a-zA-Z0-9]*$/.test(str);
};
/**
* Determines if a given string adheres to pascal-case format
* @param {string} str String to test
* @returns {boolean} Whether str adheres to pascal-case format
*/
helpers.isPascalCase = function (str) {
return /^[A-Z][a-zA-Z0-9]*$/.test(str);
};
/**
* Determines if a given string adheres to hyphenated-lowercase format
* @param {string} str String to test
* @returns {boolean} Whether str adheres to hyphenated-lowercase format
*/
helpers.isHyphenatedLowercase = function (str) {
return !(/[^\-a-z0-9]/.test(str));
};
/**
* Determines if a given string adheres to snake-case format
* @param {string} str String to test
* @returns {boolean} Whether str adheres to snake-case format
*/
helpers.isSnakeCase = function (str) {
return !(/[^_a-z0-9]/.test(str));
};
/**
* Determines if a given string adheres to strict-BEM format
* @param {string} str String to test
* @returns {boolean} Whether str adheres to strict-BEM format
*/
helpers.isStrictBEM = function (str) {
return /^[a-z](-?[a-z0-9]+)*(__[a-z0-9](-?[a-z0-9]+)*)?((_[a-z0-9](-?[a-z0-9]+)*){0,2})?$/.test(str);
};
/**
* Determines if a given string adheres to hyphenated-BEM format
* @param {string} str String to test
* @returns {boolean} Whether str adheres to hyphenated-BEM format
*/
helpers.isHyphenatedBEM = function (str) {
return !(/[A-Z]|-{3}|_{3}|[^_]_[^_]/.test(str));
};
helpers.isValidHex = function (str) {
if (str.match(/^([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$/)) {
return true;
}
return false;
};
/**
* Check if a node is a newline character or not
*
* @param {Object} node - The node to test
* @returns {boolean} Whether the node is a newline or not
*/
helpers.isNewLine = function (node) {
// using type === instead of is just in case node happens to be a string
return !!(node && node.type === 'space' && node.content.match('\n'));
};
/**
* Check if a node is a non newline space character or not
*
* @param {Object} node - The node to test
* @returns {boolean} Whether the node is a non newline space or not
*/
helpers.isSpace = function (node) {
return !!(node && node.type === 'space' && !node.content.match('\n'));
};
helpers.loadConfigFile = function (configPath) {
var fileDir = path.dirname(configPath),
fileName = path.basename(configPath),
fileExtension = path.extname(fileName),
filePath = path.join(__dirname, 'config', fileDir, fileName),
file = fs.readFileSync(filePath, 'utf8') || false;
if (file) {
if (fileExtension === '.yml') {
return yaml.safeLoad(file);
}
}
return file;
};
helpers.hasEOL = function (str) {
return /\r\n|\n/.test(str);
};
helpers.isEmptyLine = function (str) {
return /(\r\n|\n){2}/.test(str);
};
helpers.stripQuotes = function (str) {
return str.substring(1, str.length - 1);
};
/**
* Strips vendor prefixes from a string
*
* @param {string} str - The string we wish to remove vendor prefixes from
* @returns {string} The string without vendor prefixes
*/
helpers.stripPrefix = function (str) {
var modPropertyArr = str.split('-'),
modProperty = '',
prefLength = modPropertyArr[2] === 'osx' ? 2 : 1;
modPropertyArr.splice(1, prefLength);
modPropertyArr.forEach(function (item, index) {
modProperty = modProperty + item;
if (index > 0 && index < modPropertyArr.length - 1) {
modProperty = modProperty + '-';
}
});
return modProperty;
};
/**
* Removes the trailing space from a string
* @param {string} curSelector - the current selector string
* @returns {string} curSelector - the current selector minus any trailing space.
*/
helpers.stripLastSpace = function (selector) {
if (selector.charAt(selector.length - 1) === ' ') {
return selector.substr(0, selector.length - 1);
}
return selector;
};
/**
* Checks the current selector value against the previous selector value and assesses whether they are
* a) currently an enforced selector type for nesting (user specified - all true by default)
* b) whether they should be nested
* @param {object} currentVal - the current node / part of our selector
* @param {object} previousVal - the previous node / part of our selector
* @param {array} elements - a complete array of nestable selector types
* @param {array} nestable - an array of the types of selector to nest
* @returns {object} Returns whether we or we should nest and the previous val
*/
helpers.isNestable = function (currentVal, previousVal, elements, nestable) {
// check if they are nestable by checking the previous element against one
// of the user specified selector types
if (elements.indexOf(previousVal) !== -1 && nestable.indexOf(currentVal) !== -1) {
return true;
}
return false;
};
/**
* Tries to traverse the AST, following a specified path
* @param {object} node Starting node
* @param {array} traversalPath Array of Node types to traverse, starting from the first element
* @returns {array} Nodes at the end of the path. Empty array if the traversal failed
*/
helpers.attemptTraversal = function (node, traversalPath) {
var i,
nextNodeList,
currentNodeList = [],
processChildNode = function processChildNode (child) {
child.forEach(traversalPath[i], function (n) {
if (n.content && typeof n.content !== 'string' && n.contains('interpolation')) {
return false;
}
return nextNodeList.push(n);
});
};
node.forEach(traversalPath[0], function (n) {
currentNodeList.push(n);
});
for (i = 1; i < traversalPath.length; i++) {
if (currentNodeList.length === 0) {
return [];
}
nextNodeList = [];
currentNodeList.forEach(processChildNode);
currentNodeList = nextNodeList;
}
return currentNodeList;
};
/**
* Collects all suffix extensions for a selector
* @param {object} ruleset ASTNode of type ruleset, containing a selector with nested suffix extensions
* @param {string} selectorType Node type of the selector (e.g. class, id)
* @returns {array} Array of Nodes with the content property replaced by the complete selector
* (without '.', '#', etc) resulting from suffix extensions
*/
helpers.collectSuffixExtensions = function (ruleset, selectorType) {
var parentSelectors = helpers.attemptTraversal(ruleset, ['selector', selectorType, 'ident']),
childSuffixes = helpers.attemptTraversal(ruleset, ['block', 'ruleset']),
selectorList = [];
if (parentSelectors.length === 0) {
return [];
}
// Goes recursively through all nodes that look like suffix extensions. There may be multiple parents that are
// extended, so lots of looping is required.
var processChildSuffix = function (child, parents) {
var currentParents = [],
selectors = helpers.attemptTraversal(child, ['selector', 'parentSelectorExtension', 'ident']),
nestedChildSuffixes = helpers.attemptTraversal(child, ['block', 'ruleset']);
selectors.forEach(function (childSuffixNode) {
// append suffix extension to all parent selectors
parents.forEach(function (parent) {
// clone so we don't modify the actual AST
var clonedChildSuffixNode = gonzales.createNode(childSuffixNode);
clonedChildSuffixNode.content = parent.content + clonedChildSuffixNode.content;
currentParents.push(clonedChildSuffixNode);
});
});
selectorList = selectorList.concat(currentParents);
nestedChildSuffixes.forEach(function (childSuffix) {
processChildSuffix(childSuffix, currentParents);
});
};
childSuffixes.forEach(function (childSuffix) {
processChildSuffix(childSuffix, parentSelectors);
});
return parentSelectors.concat(selectorList);
};
/**
* Check for the partial match of a string in an array
*
* @param {string} needle - The value to match
* @param {Array} haystack - The array of values to try and match to
* @returns {Boolean} Whether there is a partial match or not
*/
helpers.isPartialStringMatch = function (needle, haystack) {
for (var i = 0; i < haystack.length; i++) {
if (haystack[i].indexOf(needle) >= 0) {
return true;
}
}
return false;
};
/**
* A copy of the the stripBom module from https://github.com/sindresorhus/strip-bom/blob/master/index.js
* The module requires node > 4 whereas we support earlier versions.
* This function strips the BOM marker from the beginning of a file
*
* @param {string} str - The string we wish to strip the BOM marker from
* @returns {string} The string without a BOM marker
*/
helpers.stripBom = function (str) {
if (typeof str !== 'string') {
throw new TypeError('Expected a string, got ' + typeof str);
}
if (str.charCodeAt(0) === 0xFEFF) {
return str.slice(1);
}
return str;
};
/**
* Returns an escaped XML string
*
* @param {string} str The string to escape
* @returns {string} The escaped string
*/
helpers.escapeXML = function (str) {
return (str + '').replace(/[<>&"'\x00-\x1F\x7F\u0080-\uFFFF]/g, function (c) { // eslint-disable-line no-control-regex
switch (c) {
case '<':
return '<';
case '>':
return '>';
case '&':
return '&';
case '"':
return '"';
case '\'':
return ''';
default:
return '&#' + c.charCodeAt(0) + ';';
}
});
};
/**
* Returns the severity of warning or error
* @param {Object} message message object to examine
* @returns {string} severity level
* @private
*/
helpers.getMessageType = function (message) {
if (message.severity === 2) {
return 'error';
}
return 'warning';
};
module.exports = helpers;