-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathhelpers.js
46 lines (39 loc) · 1.37 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
//
// This file is used by every challenge's verify file and is an API for writing
// partial challenge completion messages to the DOM and setting a challenge
// as complete when all parts of a challenge have passed.
//
// It also sets the lanaguage for each challenge's verify's process's Git to
// English.
//
var process = require('process')
var path = require('path')
var completed = require(path.join(__dirname, 'challenge-completed.js'))
// Set each challenge verifying process to use
// English language pack
// Potentially move this to user-data.js
process.env.LANG = 'C'
var ul = document.getElementById('verify-list')
var addToList = function (message, status) {
var li = document.createElement('li')
var newContent = document.createTextNode(message)
li.appendChild(newContent)
if (status) {
li.classList.add('verify-pass')
} else {
li.classList.add('verify-fail')
}
ul.appendChild(li)
// potentially do this with domify and push
// into an array and add to dom once
}
var markChallengeCompleted = function (challenge) {
document.getElementById(challenge).classList.add('completed')
completed.enableClearStatus(challenge)
}
var challengeIncomplete = function () {
completed.challengeIncomplete()
}
module.exports.markChallengeCompleted = markChallengeCompleted
module.exports.addToList = addToList
module.exports.challengeIncomplete = challengeIncomplete