-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
191 lines (160 loc) · 5.48 KB
/
index.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
'use strict';
/* Initialize codemirror */
let converterFrontArea, converterBackArea;
document.addEventListener('DOMContentLoaded', () => {
converterFrontArea = CodeMirror(converterFront, { lineWrapping: true });
converterBackArea = CodeMirror(converterBack, { lineWrapping: true, placeholder: '在此輸入待轉換的文字…', value: "遥襟甫畅,逸兴遄飞。爽籁发而清风生,纤歌凝而白云遏。睢园绿竹,气凌彭泽之樽;邺水朱华,光照临川之笔。四美具,二难并。穷睇眄于中天,极娱游于暇日。天高地迥,觉宇宙之无穷;兴尽悲来,识盈虚之有数。望长安于日下,目吴会于云间。地势极而南溟深,天柱高而北辰远。关山难越,谁悲失路之人;萍水相逢,尽是他乡之客。怀帝阍而不见,奉宣室以何年?" });
});
const DICT_ROOT = 'https://cdn.jsdelivr.net/npm/opencc-data@latest/data/';
const DICT_FROM = { 'cn': ['STCharacters', 'STPhrases']
, 'hk': ['HKVariantsRev', 'HKVariantsRevPhrases']
, 'tw': ['TWVariantsRev', 'TWVariantsRevPhrases']
, 'twp': ['TWVariantsRev', 'TWVariantsRevPhrases', 'TWPhrasesRev']
, 'jp': ['JPVariantsRev']
},
DICT_TO = { 'cn': ['TSCharacters', 'TSPhrases']
, 'hk': ['HKVariants', 'HKVariantsPhrases']
, 'tw': ['TWVariants']
, 'twp': ['TWVariants', 'TWPhrasesIT', 'TWPhrasesName', 'TWPhrasesOther']
, 'jp': ['JPVariants']
};
async function getDictText(url) {
const response = await fetch(DICT_ROOT + url + '.txt');
const mytext = await response.text();
return await mytext;
}
async function load_dict_from(s) {
const DICTS = DICT_FROM[s];
const d = {};
for (const DICT of DICTS) {
const txt = await getDictText(DICT);
const lines = txt.split('\n');
for (const line of lines) {
if (line && !line.startsWith('#')) {
const [l, r] = line.split('\t');
d[l] = r;
}
}
}
return d;
} async function load_dict_to(s) {
const DICTS = DICT_TO[s]; // 就這行和上面不同
const d = {};
for (const DICT of DICTS) {
const txt = await getDictText(DICT);
const lines = txt.split('\n');
for (const line of lines) {
if (line && !line.startsWith('#')) {
const [l, r] = line.split('\t');
d[l] = r;
}
}
}
return d;
}
/* Load dict */
function all_matches(s, d) {
const arr = [];
for (const [key, value] of Object.entries(d)) {
if (s.startsWith(key)) {
arr.push([key, value]);
}
}
// 「白云」只有词,如果分词错误,那把「白」也加进去
arr.sort((a, b) => b[0].length - a[0].length); // sort by len(key)
if (arr.length && arr[arr.length - 1][0].length > 1)
arr.push([s[0], s[0]])
return arr;
}
let ARR, SELECTION, DICT;
async function startConvert() {
converterNotification.innerText = '';
if (converterMiddleFront.innerText)
return;
// 只在開始時運行一次
if (!DICT) {
const region = convertRegion.value;
if (convertScheme.value == 'from')
DICT = await load_dict_from(region);
else // (convertScheme.value == 'to')
DICT = await load_dict_to(region);
if (!DICT) {
converterNotification.innerText = '您選擇的轉換方式是無效的';
throw new Error('您選擇的轉換方式是無效的');
}
}
while (converterBackArea.getValue()) {
const s = converterBackArea.getValue();
ARR = all_matches(s, DICT);
if (!ARR.length) /* 繁简同形 */ {
converterFrontArea.setValue(converterFrontArea.getValue() + s[0]);
converterBackArea.setValue(s.slice(1));
} else if (ARR.length == 1 && ARR[0][0].length == 1 && ARR[0][1].split(' ').length == 1) /* 一一映射 */ {
converterFrontArea.setValue(converterFrontArea.getValue() + ARR[0][1]);
converterBackArea.setValue(s.slice(1));
} else {
SELECTION = 0;
const longest = ARR[0][0].length;
if (longest == 1)
converterSwitchSegmentation.disabled = true;
else
converterSwitchSegmentation.disabled = false;
refreshSwitch();
converterBackArea.setValue(s.slice(longest));
return;
}
}
converterNotification.innerText = '轉換完成';
}
function refreshSwitch() {
const currentKey = ARR[SELECTION][0];
const currentValue = ARR[SELECTION][1];
const currentValues = currentValue.split(' ');
converterMiddleFront.innerText = currentKey;
converterMiddleBack.innerText = ARR[0][0].slice(currentKey.length);
converterSelect.innerHTML = '';
for (const value of currentValues) {
const opt = document.createElement('option');
opt.value = value;
opt.innerText = value;
converterSelect.appendChild(opt);
}
if (currentValues.length == 1)
converterSelect.disabled = true;
else
converterSelect.disabled = false;
startExplain();
}
function makeMoeEntry(entry) {
const div = document.createElement('div');
for (const [key, values] of Object.entries(entry)) {
const p = document.createElement('p');
p.innerText = key;
div.appendChild(p);
const ul = document.createElement('ul');
for (const value of values) {
const li = document.createElement('li');
li.innerText = value;
ul.appendChild(li);
}
div.appendChild(ul);
}
return div;
}
function startExplain() {
converterExplain.innerHTML = '';
const res = MOEDICT[converterSelect.value];
if (res)
converterExplain.appendChild(makeMoeEntry(res));
}
function startSwitch() {
SELECTION = (SELECTION + 1) % ARR.length;
refreshSwitch();
}
function startPush() {
converterFrontArea.setValue(converterFrontArea.getValue() + converterSelect.value);
converterBackArea.setValue(converterMiddleBack.innerText + converterBackArea.getValue());
converterMiddleFront.innerText = '';
converterMiddleBack.innerText = '';
startConvert();
}