This repository has been archived by the owner on Dec 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathutil.js
101 lines (89 loc) · 2.32 KB
/
util.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
import ejs from 'ejs'
import config from './package.json'
let Gitalk, Valine
loadScript(COMMENT_CHOOSEN)
const defaultChoosen = 'comment plugins'
console.log(
`How to use "${COMMENT_CHOOSEN || defaultChoosen}" in ${config.name}@v${config.version}:`,
config.homepage
)
/**
* Lazy load pkg
*
* @param {String} name
*/
export function loadScript (name) {
if (name === 'valine') {
import('valine')
.then(pkg => Valine = pkg.default)
} else if (name === 'gitalk') {
import('gitalk/dist/gitalk.css')
.then(() => import('gitalk'))
.then(pkg => Gitalk = pkg.default)
}
}
/**
* Render ejs strings in configuration
*
* @param {Object} config
* @param {Object} data
*/
export function renderConfig (config, data) {
const result = {}
Reflect.ownKeys(config)
.forEach(key => {
if (typeof config[key] === 'string') {
try {
result[key] = ejs.render(config[key], data)
} catch (error) {
console.warn(`Comment config option error at key named "${key}"`)
console.warn(`More info: ${error.message}`)
result[key] = config[key]
}
} else {
result[key] = config[key]
}
})
return result
}
/**
* Support Gitalk and so on.
*/
export const provider = {
gitalk: {
render (frontmatter, commentDomID) {
const commentDOM = document.createElement('div')
commentDOM.id = commentDomID
const parentDOM = document.querySelector(COMMENT_CONTAINER)
parentDOM.appendChild(commentDOM)
const gittalk = new Gitalk(renderConfig(COMMENT_OPTIONS, { frontmatter }))
gittalk.render(commentDomID)
},
clear (commentDomID) {
const last = document.querySelector(`#${commentDomID}`)
if (last) {
last.remove()
}
return true
}
},
valine: {
render (frontmatter, commentDomID) {
const commentDOM = document.createElement('div')
commentDOM.id = commentDomID
const parentDOM = document.querySelector(COMMENT_CONTAINER)
parentDOM.appendChild(commentDOM)
new Valine({
...renderConfig(COMMENT_OPTIONS, { frontmatter }),
el: `#${commentDomID}`
})
},
clear (commentDomID) {
const last = document.querySelector(`#${commentDomID}`)
if (last) {
last.remove()
}
return true
}
}
}