-
Notifications
You must be signed in to change notification settings - Fork 0
/
util.js
124 lines (111 loc) · 2.95 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
import ejs from 'ejs'
import config from './package.json'
let Gitalk, Valine, Waline
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)
} else if (name === 'waline') {
import('@waline/client')
.then(pkg => Waline = 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
}
},
waline: {
render (frontmatter, commentDomID) {
const commentDOM = document.createElement('div')
commentDOM.id = commentDomID
const parentDOM = document.querySelector(COMMENT_CONTAINER)
parentDOM.appendChild(commentDOM)
new Waline({
...renderConfig(COMMENT_OPTIONS, { frontmatter }),
el: `#${commentDomID}`
})
},
clear (commentDomID) {
const last = document.querySelector(`#${commentDomID}`)
if (last) {
last.remove()
}
return true
}
}
}