blob: 6c4cafb891ae20ced10a40b46ed62a5e921031fe (
plain)
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
|
import request from "../services/request"
const aomlParser = (text) => {
let parsed = {}
let currentHeader = ''
for (const line of text.split(/\r?\n/)) {
if (line === '') {
currentHeader = ''
continue;
}
const content = line.split(' = ')
const contentName = content[0]
const contentValue = content[1]
if (currentHeader === '') {
currentHeader = contentName
parsed[currentHeader] = {
color: contentValue
}
} else {
const contentKey = contentName.split('_')[1]
parsed[currentHeader][contentKey] = contentValue
}
}
return parsed
}
const mlConfig = (AO_HOST) => {
const defaultUrl = `${AO_HOST}themes/default/chat_config.ini`
let aomlParsed = {}
request(defaultUrl).then((data) => {
aomlParsed = aomlParser(data)
}
);
const createIdentifiers = () => {
const identifiers = new Map()
for (const [ruleName, value] of Object.entries(aomlParsed)) {
if (identifiers.has(value.start)) {
throw new Error()
}
else if (value.start) {
identifiers.set(value.start, value.end)
}
}
return identifiers
}
const colorIdentifiers = () => {
let colorIdentifier = {}
for (const [ruleName, value] of Object.entries(aomlParsed)) {
colorIdentifier[value.start] = value.color
}
return colorIdentifier
}
const applyMarkdown = (text) => {
const identifiers = createIdentifiers(aomlParsed)
const startIdentifiers = new Set(identifiers.keys())
const colorIdentifier = colorIdentifiers()
const identifierClosingStack = []
const colorStack = [[255, 255, 255]]
// each value in output will be an html element
let output = []
for (const letter of text) {
let currentSelector = document.createElement('span')
const lastItem = identifierClosingStack.length
const closingToLookFor = identifierClosingStack[lastItem-1]
if (letter === closingToLookFor) {
identifierClosingStack.pop()
colorStack.pop()
}
else if (startIdentifiers.has(letter)) {
identifierClosingStack.push(identifiers.get(letter))
const colors = colorIdentifier[letter].split(',')
const r = colors[0]
const g = colors[1]
const b = colors[2]
colorStack.push([r,g,b])
} else {
currentSelector.innerHTML = letter
}
const r = colorStack[colorStack.length-1][0]
const g = colorStack[colorStack.length-1][1]
const b = colorStack[colorStack.length-1][2]
const currentColor = `color: rgb(${r},${g},${b});`
currentSelector.setAttribute('style', currentColor)
output.push(currentSelector)
}
return output
}
return {
applyMarkdown
}
}
export default mlConfig
|