-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy paththemes.check.js
34 lines (26 loc) · 1.46 KB
/
themes.check.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
const themes = require('../themes.json')
const allBugs = []
themes.forEach((entry, index) => {
const currentBugs = []
const keys = Object.keys(entry)
const objectKeys = keys[0] !== 'title' ||
keys[1] !== 'link' ||
keys[2] !== 'description' ||
keys[3] !== 'image' ||
keys[4] !== 'tags' ||
keys[5] !== 'repository'
const objectTypes = typeof entry[keys[0]] !== 'string' ||
typeof entry[keys[1]] !== 'string' ||
typeof entry[keys[2]] !== 'string' ||
typeof entry[keys[3]] !== 'string' ||
typeof entry[keys[4]] !== 'object' ||
typeof entry[keys[5]] !== 'string'
if (typeof entry !== 'object') currentBugs.push('This theme is not an object.')
if (keys.length < 6) currentBugs.push(`Is expected to have at least 6 keys, but has ${keys.length}.`)
if (objectKeys) currentBugs.push('Verify name of object keys, respectively, it must be: title, link, description, image, tags')
if (objectTypes) currentBugs.push('All object entries must be strings with the exception of tags, which is an array!')
if (currentBugs.length !== 0) allBugs.push(`Theme "${entry.title}" (index: ${index} has the following ${currentBugs.length} bug(s):\n${currentBugs.join('\n')}`)
})
if (allBugs.length !== 0) {
throw allBugs.join('\n\n')
}