-
-
Notifications
You must be signed in to change notification settings - Fork 125
/
defineExportFunc.ts
86 lines (82 loc) · 2.16 KB
/
defineExportFunc.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
import { GridViewFile, TabPane, useGlobalStore } from './store/useGlobalStore'
import { useTagStore } from './store/useTagStore'
import { Dict, globalEvents, switch2IIB } from './util'
import { uniqueId } from 'lodash-es'
export const exportFn = async (g: ReturnType<typeof useGlobalStore>) => {
if (!g.conf?.export_fe_fn) {
return
}
const tag = useTagStore()
const insertTabPane = ({
tabIdx = 0,
paneIdx = 0,
pane
}: {
tabIdx?: number
paneIdx?: number
pane: TabPane
}) => {
const tab = g.tabList[tabIdx]
if (!pane.key) {
(pane as any).key = uniqueId()
}
tab.panes.splice(paneIdx, 0, pane)
tab.key = pane.key
return {
key: pane.key,
ref: getPageRef(pane.key)
}
}
define({
insertTabPane,
getTabList: () => g.tabList,
getPageRef,
switch2IIB,
openIIBInNewTab: () => window.parent.open('/infinite_image_browsing'),
setTagColor(name: string, color: string) {
tag.colorCache.set(name, color)
},
setTags(path: string, tags: string[]) {
tag.set(path, tags)
},
getTags(path: string) {
return tag.tagMap.get(path)
},
createGridViewFile(path: string, tags?: string[]): GridViewFile {
return {
name: path.split(/[/\\]/).pop() ?? '',
size: '-',
bytes: 0,
type: 'file',
created_time: '',
date: '',
fullpath: path,
tags: tags?.map((v) => ({ name: v })),
is_under_scanned_path: true
}
}
})
function getPageRef(key: string) {
return new Proxy(
{},
{
// eslint-disable-next-line @typescript-eslint/no-unused-vars
get(_target, p, _receiver) {
if (p === 'close') {
const tabIdx = g.tabList.findIndex((v) => v.panes.some((v) => v.key === key))
return () => globalEvents.emit('closeTabPane', tabIdx, key)
}
return g.pageFuncExportMap.get(key)?.[p as string]
}
}
)
}
function define(funcs: Dict<(...args: any[]) => any>) {
const w = window as any
for (const key in funcs) {
w[key] = (...args: any) => {
return funcs[key](...args)
}
}
}
}