-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom-plugin.ts
60 lines (56 loc) · 2.74 KB
/
custom-plugin.ts
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
/* Optional: create a plugin to listen for events in a code-input element
and add custom logic. */
// Look in the developer console to see the logs.
class TestTSPlugin extends codeInput.Plugin {
constructor() {
super(["testattr", "test-*"]);
// Array of observed attributes as parameter
// Wildcard "*" matches any text
}
/* Runs before code is highlighted; Params: codeInput element) */
beforeHighlight(codeInput: codeInput.CodeInput): void {
console.log(codeInput, "TS before highlight");
}
/* Runs after code is highlighted; Params: codeInput element) */
afterHighlight(codeInput: codeInput.CodeInput): void {
console.log(codeInput, "TS after highlight");
}
/* Runs before elements are added into a `code-input`; Params: codeInput element) */
beforeElementsAdded(codeInput: codeInput.CodeInput): void {
console.log(codeInput, "TS before elements added");
}
/* Runs after elements are added into a `code-input` (useful for adding events to the textarea); Params: codeInput element) */
afterElementsAdded(codeInput: codeInput.CodeInput): void {
console.log(codeInput, "TS after elements added");
}
/* Runs when an attribute of a `code-input` is changed (you must add the attribute name to the constructor); Params: codeInput element, name attribute name, oldValue previous value of attribute, newValue changed value of attribute) */
attributeChanged(codeInput: codeInput.CodeInput, name: string, oldValue: string, newValue: string): void {
console.log(codeInput, "TS", name, ":", oldValue, ">", newValue);
}
observedAttributes: Array<string> = ["testattr"]
}
/* Register template with custom plugin: vvvvvvvvvvvv */
let customPluginTemplate = codeInput.templates.prism(Prism, [new TestTSPlugin()]);
codeInput.registerTemplate("default", customPluginTemplate);
window.addEventListener("load", () => {
// Demonstrate attributeChanged callback
setTimeout(() => {
document.querySelector("code-input").setAttribute("testattr", "value1");
}, 1000);
setTimeout(() => {
document.querySelector("code-input").setAttribute("testattr", "value2");
}, 3000);
setTimeout(() => {
document.querySelector("code-input").removeAttribute("testattr");
}, 5000);
// These demonstrate the use of the wildcard in observed attributes.
setTimeout(() => {
document.querySelector("code-input").setAttribute("test-hello", "world");
}, 7000);
setTimeout(() => {
document.querySelector("code-input").setAttribute("test-library", "code-input");
}, 9000);
setTimeout(() => {
document.querySelector("code-input").setAttribute("test-anything", "value");
}, 11000);
});