-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdashboard.js
39 lines (33 loc) · 928 Bytes
/
dashboard.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
const path = require('path')
const fs = require('fs')
const handlebars = require('handlebars')
const template = handlebars.compile(
fs.readFileSync(path.join(__dirname, 'template.html'), 'utf8')
)
module.exports = class Dashboard {
async start () {
this.data = []
}
async addRow (owner, repo, solutions) {
const score = Object.keys(solutions).length
this.data.push({ owner, repo, solutions, score })
}
async end () {
const columns = Object.keys(this.data.reduce((cols, row) => {
Object.keys(row.solutions).forEach(key => {
cols[key] = true
})
return cols
}, {})).map(x => parseFloat(x))
// sort columns
columns.sort()
// sort solutions by score
this.data.sort((a, b) => a.score - b.score)
const content = template({
columns,
repos: this.data
})
console.log(content)
fs.writeFileSync('index.html', content, 'utf8')
}
}