-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathremark-codesandbox-modifier.js
62 lines (52 loc) · 1.27 KB
/
remark-codesandbox-modifier.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
const visit = require('unist-util-visit')
const u = require('unist-builder')
function parseMeta(metaString) {
const meta = {}
metaString.split(' ').forEach((str) => {
const equalIndex = str.indexOf('=')
if (equalIndex > 0) {
const key = str.slice(0, equalIndex)
const value = str.slice(equalIndex + 1)
meta[key] = value
}
})
return meta
}
module.exports = () => {
return (tree) => {
visit(tree, 'code', (node, index, parent) => {
if (node.data && node.data.codesandboxUrl) {
const meta = parseMeta(node.meta || '')
const sandboxMeta = meta.codesandbox
const [, queryString] = sandboxMeta.split('?')
const query = new URLSearchParams(queryString)
const buttonTitle = query.get('buttonTitle') || 'Edit on CodeSandbox'
const button = u('paragraph', [
u(
'link',
{
url: node.data.codesandboxUrl,
data: {
hProperties: {
className: 'codesandbox-link',
target: '_blank',
rel: 'nofollow noopener noreferrer',
},
},
},
[
u('text', {
value: buttonTitle,
}),
]
),
])
if (node.value.length) {
parent.children.splice(index + 1, 0, button)
} else {
parent.children.splice(index, 1, button)
}
}
})
}
}