-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.js
executable file
·99 lines (77 loc) · 1.99 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
#!/usr/bin/env node
const Fuse = require('fuse.js')
const Data = require('./data.js')
const chalkPipe = require('chalk-pipe');
const boxen = require('boxen');
// styles
const searchResult = chalkPipe('chalk.green');
const searchTitle = chalkPipe('chalk.bgGreen.black');
const itemTitle = chalkPipe('chalk.bgBlue.black');
const itemValue = chalkPipe('chalk.white');
const itemLink = chalkPipe('chalk.gray');
const warn = chalkPipe('chalk.yellow');
// draw box
function box(input) {
return boxen(input, {
padding: 0,
margin: 0,
})
}
// get input parameters and return as string
let input = process.argv
input.splice(0, 2);
input = input.join(' ');
// search if there is an input
if (input && input.length) {
search(input)
} else {
console.log(
box(
warn(` Please enter a search term `)
+
`\n Example: ` + searchTitle(` tw border `)
)
)
}
// search function
function search(input) {
const fuse = new Fuse(Data, {
includeScore: true,
threshold: 0.2,
keys: ['title', 'values.name']
})
const result = fuse.search(input)
if (result.length != 0) {
console.log(
searchResult(
`🔍 Found `
+
searchTitle(` ${result.length} `)
+
(result.length == 1 ? ` result for ` : ` results for `)
+
searchTitle(` ${input} `)
)
)
Object.keys(result).forEach(resultKey => {
let resultTitle = result[resultKey]['item']['title']
let resultValues = result[resultKey]['item']['values']
let resultUrl = 'https://tailwindcss.com/docs/' + result[resultKey]['item']['permalink']
console.log(`\n` + itemTitle(` ${resultTitle} `) + itemLink(` ${resultUrl}`))
for (const [key, value] of Object.entries(resultValues)) {
console.log(
itemValue` ${resultValues[key]['name']} `
)
}
})
} else {
console.log(
box(
warn(` No result `)
+
`\n Try searching another term `
)
)
}
console.log(`\n`)
}