-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Dict.browser.ts
491 lines (369 loc) · 15.4 KB
/
Dict.browser.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
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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
import type { Dispatch } from 'react'
import { request_json } from 'MyNet.browser'
export class Dict {
static mode: 'desktop' | 'mobile' = window.innerWidth > 700 ? 'desktop' : 'mobile'
static items: Item[] = []
static items_hook: Dispatch<Item[]>
static item: Item
static item_hook: Dispatch<Item>
static index: string
static cache = { }
static last_search: Date = new Date()
// ------------ elements
static input: HTMLInputElement
static side: HTMLDivElement
static main: HTMLDivElement
static get head () { return this.input.parentElement }
/** 当前激活元素 */
static focus: HTMLElement
static BORDER_NORMAL_COLOR = '#cccccc'
static BORDER_ACTIVE_COLOR = '#666666'
static async search (index: string = this.input.value) {
if (!index) {
this.set_item(null)
return
}
const this_search = new Date()
if (this_search.getTime() - this.last_search.getTime() < 200) {
this.search_google()
this.last_search = this_search
return
}
this.index = index
history.pushState(null, `${index} - Dict`, `#${index},0`)
if (this.cache[index])
this.set_items(this.cache[index])
else {
const items_data = await request_json<Partial<Item>[]>('search', { queries: { index } })
const items = items_data.map( (item, i) => new Item(item, i))
this.set_items(this.cache[index] = items)
console.log('search: ' + index)
}
this.set_item(this.items[0])
this.last_search = this_search
this.side.focus()
}
static set_items (items: Item[]) {
this.items_hook(this.items = items)
}
static set_item (item: Item) {
this.item_hook(this.item = item)
}
static select_item (item: Item) {
this.set_item(item)
history.replaceState(null, `${item.index} - Dict`, `#${this.index},${item.i}`)
}
static select_item_i (i: number) {
this.side.focus()
if (0 <= i && i < this.items.length)
this.select_item(this.items[i])
}
static jump (event: any) {
const matches = event.target.href?.match('^entry://([^#]+)')
if (!matches?.[1]) return
this.search(this.input.value = matches[1])
}
static next () {
this.side.focus()
if (!this.item) return
this.select_item_i(this.item.i + 1)
}
static back () {
history.back()
}
static forward () {
history.forward()
}
static previous () {
this.side.focus()
if (!this.item) return
this.select_item_i(this.item.i - 1)
}
static clear () {
this.input.value = ''
}
static register () {
window.Dict = this
this.register_shortcuts()
this.register_onfocus()
this.register_hashchange()
}
static register_shortcuts () {
document.addEventListener('keydown', (event)=> {
const { key, target } = event
const ctrl = event.getModifierState('Control')
const alt = event.getModifierState('Alt')
if (key === 'Escape') {
event.preventDefault()
this.input.value = ''
this.input.focus()
return
}
if (key === 'Enter' && this.focus === this.side && this.input.value) {
this.search_google()
return
}
if (key === 'Enter' && target === this.input) {
this.search((target as HTMLInputElement).value)
return
}
if (target === this.input || ctrl || alt) return
if (key.match(/^[1-9]$/)) {
event.preventDefault()
this.select_item_i(Number(key) - 1)
return
}
if (key === 's' || key === 'f') {
event.preventDefault()
const selection_text = window.getSelection().toString()
this.input.value = selection_text
if (selection_text)
this.search(selection_text)
else
this.input.focus()
return
}
if (key === 'e') {
event.preventDefault()
this.input.focus()
return
}
if (key === 'j') {
event.preventDefault()
this.main.focus()
this.main.scrollTop += 80
return
}
if (key === 'J') {
event.preventDefault()
this.main.focus()
this.main.scrollTop = 1e5
return
}
if (key === 'k') {
event.preventDefault()
this.main.focus()
this.main.scrollTop -= 80
return
}
if (key === 'K') {
this.main.focus()
this.main.scrollTop = 0
return
}
if (key === 'h' || key === 'd') {
event.preventDefault()
history.go(-1)
return
}
if (key === 'l' || key === 'g') {
event.preventDefault()
history.go(1)
return
}
if (!event.shiftKey && key === 'Tab') {
event.preventDefault()
this.next()
return
}
if (event.shiftKey && key === 'Tab') {
event.preventDefault()
this.previous()
return
}
})
}
static search_google (index = this.input.value) {
window.open('https://www.google.com/search?q=' + index, '_blank')
}
static register_hashchange () {
window.addEventListener('hashchange', (event) => {
console.log('hashchange')
let [index, i] = event.newURL.split('#')[1]?.split(',') || []
if (i === undefined) return
index = decodeURIComponent(index)
if (!this.cache[index]) return
this.set_index(index)
this.set_items(this.cache[this.index])
this.set_item(this.items[i])
})
}
/** 激活状态显示切换 */
static register_onfocus () {
// --- head focus
this.input.onfocus = event => {
if (this.mode === 'desktop') {
this.head.style.borderColor = this.BORDER_ACTIVE_COLOR
this.side.style.borderTopColor = this.BORDER_ACTIVE_COLOR
this.side.style.borderBottomColor = this.BORDER_NORMAL_COLOR
this.side.style.borderLeftColor = this.BORDER_NORMAL_COLOR
this.side.style.borderRightColor = this.BORDER_NORMAL_COLOR
this.main.style.borderTopColor = this.BORDER_ACTIVE_COLOR
this.main.style.borderRightColor = this.BORDER_NORMAL_COLOR
this.main.style.borderBottomColor = this.BORDER_NORMAL_COLOR
} else {
this.head.style.borderTopColor = this.BORDER_ACTIVE_COLOR
this.head.style.borderLeftColor = this.BORDER_ACTIVE_COLOR
this.head.style.borderRightColor = this.BORDER_ACTIVE_COLOR
this.head.style.borderBottomColor = this.BORDER_ACTIVE_COLOR
this.side.style.borderTopColor = this.BORDER_NORMAL_COLOR
this.side.style.borderLeftColor = this.BORDER_NORMAL_COLOR
this.side.style.borderRightColor = this.BORDER_NORMAL_COLOR
this.main.style.borderTopColor = this.BORDER_NORMAL_COLOR
this.main.style.borderLeftColor = this.BORDER_NORMAL_COLOR
this.main.style.borderRightColor = this.BORDER_NORMAL_COLOR
this.main.style.borderBottomColor = this.BORDER_NORMAL_COLOR
}
this.focus = this.input
}
// --- side focus
this.side.onfocus = event => {
if (this.mode === 'desktop') {
this.head.style.borderColor = this.BORDER_NORMAL_COLOR
this.side.style.borderTopColor = this.BORDER_ACTIVE_COLOR
this.side.style.borderBottomColor = this.BORDER_ACTIVE_COLOR
this.side.style.borderLeftColor = this.BORDER_ACTIVE_COLOR
this.side.style.borderRightColor = this.BORDER_ACTIVE_COLOR
this.main.style.borderTopColor = this.BORDER_NORMAL_COLOR
this.main.style.borderRightColor = this.BORDER_NORMAL_COLOR
this.main.style.borderBottomColor = this.BORDER_NORMAL_COLOR
} else {
this.head.style.borderTopColor = this.BORDER_ACTIVE_COLOR
this.head.style.borderLeftColor = this.BORDER_NORMAL_COLOR
this.head.style.borderRightColor = this.BORDER_NORMAL_COLOR
this.head.style.borderBottomColor = this.BORDER_NORMAL_COLOR
this.side.style.borderTopColor = this.BORDER_ACTIVE_COLOR
this.side.style.borderLeftColor = this.BORDER_ACTIVE_COLOR
this.side.style.borderRightColor = this.BORDER_ACTIVE_COLOR
this.main.style.borderTopColor = this.BORDER_NORMAL_COLOR
this.main.style.borderLeftColor = this.BORDER_NORMAL_COLOR
this.main.style.borderRightColor = this.BORDER_NORMAL_COLOR
this.main.style.borderBottomColor = this.BORDER_NORMAL_COLOR
}
this.focus = this.side
}
// --- main focus
this.main.onfocus = event => {
if (this.mode === 'desktop') {
this.head.style.borderColor = this.BORDER_NORMAL_COLOR
this.side.style.borderTopColor = this.BORDER_NORMAL_COLOR
this.side.style.borderBottomColor = this.BORDER_NORMAL_COLOR
this.side.style.borderLeftColor = this.BORDER_NORMAL_COLOR
this.side.style.borderRightColor = this.BORDER_ACTIVE_COLOR
this.main.style.borderTopColor = this.BORDER_ACTIVE_COLOR
this.main.style.borderRightColor = this.BORDER_ACTIVE_COLOR
this.main.style.borderBottomColor = this.BORDER_ACTIVE_COLOR
} else {
this.head.style.borderTopColor = this.BORDER_NORMAL_COLOR
this.head.style.borderLeftColor = this.BORDER_NORMAL_COLOR
this.head.style.borderRightColor = this.BORDER_NORMAL_COLOR
this.head.style.borderBottomColor = this.BORDER_NORMAL_COLOR
this.side.style.borderTopColor = this.BORDER_ACTIVE_COLOR
this.side.style.borderLeftColor = this.BORDER_NORMAL_COLOR
this.side.style.borderRightColor = this.BORDER_NORMAL_COLOR
this.main.style.borderTopColor = this.BORDER_ACTIVE_COLOR
this.main.style.borderLeftColor = this.BORDER_ACTIVE_COLOR
this.main.style.borderRightColor = this.BORDER_ACTIVE_COLOR
this.main.style.borderBottomColor = this.BORDER_ACTIVE_COLOR
}
this.focus = this.main
}
}
static set_index (index: string) {
this.index = index
this.input.value = index
}
}
export class Item {
index: string
type?: 'EN_OALD' | 'JP_JTS' | 'JP_GRAMMAR'
_id?: any
content: string
origin?: string
word_root?: string
assets?: { [key: string]: string }
proncs: string[]
// --- 添加的属性
i: number
constructor (data: Partial<Item>, i: number) {
this.i = i
Object.assign(this, data)
}
render () {
if (this.type === 'JP_JTS')
return '<h1 class="index">' + this.index + '</h1>' + this.content
// ------------ this.type === 'EN_OALD'
let $dom = $load(this.content)
$dom.find('img').attr('src', (i, src) => 'data:image/' + src.split('.').pop() + ';base64,' + this.assets[src.slice(1)])
// --- 去除英音
$dom.find('[resource="phon-gb"]').remove()
$dom.find('.phon-gb').remove()
$dom.find('[resource="uk_pron"]').remove()
// --- 单词语音
$dom.find('a[type="sound"]').each( (i, e) => {
let $e = $(e)
const asset_key = 'proncs/' + $e.attr('href').split('/').pop()
$e.replaceWith(`<span id="audio-${i}" onclick="Dict.item.play_spx(${asset_key.quote()})" style="cursor:pointer">▶</span>`)
if (i === 0)
this.play_spx(asset_key)
})
if (this.origin) {
let $origin = $load(this.origin)
$($origin.find('object')[1]).attr('data', (i, link) => 'http://www.dicts.cn' + link)
$dom.append($origin.html())
}
if (this.word_root) {
const word_root = this.word_root
.rm(/来自.*?\*/g)
.rm(/PIE\*/g)
.space()
.replace(/[.。]/g, '<br>')
$dom.find('.h').after(`<div class='word-root'>${word_root}</div>`)
}
return $dom.html()
}
play_spx (asset_key: string) {
const { Speex } = window
// 测试 spx base64 字符串位于 spx_test.txt 文件
const spx = atob(this.assets[asset_key])
const [samples, header] = Speex.decodeFile(spx)
Speex.util.play(samples, header.rate)
}
click (event: React.MouseEvent<HTMLDivElement, MouseEvent>) {
if ((event.target as HTMLElement).tagName === 'A') {
const a = event.target as HTMLAnchorElement
if (a.href.startsWith('entry://')) {
const index = a.href.rm('entry://')
Dict.input.value = index
Dict.search(index)
return
}
}
}
}
export interface Grammar extends Item {
id: number
index: string
type: 'JP_GRAMMAR'
/** 语法级别 */
level?: 'N1' | 'N2' | 'N3' | 'N4' | 'N5' | '+收藏'
range?: string
contents: {
explainations: {
cn?: string[]
jp?: string[]
}
continuation: string
meaning: string
situation: string
sentences: string[]
notes: string
confusion?: string
}[]
synonyms: string[]
related_words: { index: string }[]
}
function $load (html: string) {
return $($.parseHTML((html || '').surround_tag('div'), true))
}
export default Dict