File size: 6,117 Bytes
3a1d71c |
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 |
import type { GlobalConf } from '@/api'
import type { MatchImageByTagsReq } from '@/api/db'
import { FileNodeInfo } from '@/api/files'
import { i18n, t } from '@/i18n'
import { getPreferredLang } from '@/i18n'
import { SortMethod } from '@/page/fileTransfer/fileSort'
import type { getQuickMovePaths } from '@/page/taskRecord/autoComplete'
import { type Dict, type ReturnTypeAsync } from '@/util'
import { cloneDeep, uniqueId } from 'lodash-es'
import { defineStore } from 'pinia'
import { VNode, computed, onMounted, reactive, toRaw, watch } from 'vue'
import { ref } from 'vue'
interface TabPaneBase {
name: string | VNode
nameFallbackStr?: string
readonly key: string
}
interface OtherTabPane extends TabPaneBase {
type: 'empty' | 'global-setting' | 'tag-search' | 'fuzzy-search' | 'batch-download'
}
// logDetailId
interface TagSearchMatchedImageGridTabPane extends TabPaneBase {
type: 'tag-search-matched-image-grid'
selectedTagIds: MatchImageByTagsReq
id: string
}
export interface ImgSliTabPane extends TabPaneBase {
type: 'img-sli'
left: FileNodeInfo
right: FileNodeInfo
}
export interface FileTransferTabPane extends TabPaneBase {
type: 'local'
path?: string
walkModePath?: string
stackKey?: string
}
export type TabPane = FileTransferTabPane | OtherTabPane | TagSearchMatchedImageGridTabPane | ImgSliTabPane
/**
* This interface represents a tab, which contains an array of panes, an ID, and a key
*/
export interface Tab {
/**
* An array of panes that belong to this tab
*/
panes: TabPane[]
/**
* A unique identifier for this tab
*/
id: string
/**
* A value indicating which pane is currently selected within the tab
*/
key: string
}
export type Shortcut = Record<`toggle_tag_${string}` | 'delete' | 'download', string | undefined>
export const copyPane = (pane: TabPane) => {
return cloneDeep({
...pane,
name: typeof pane.name === 'string' ? pane.name : pane.nameFallbackStr ?? ''
})
}
export const copyTab = (tab: Tab) => {
return {
...tab,
panes: tab.panes.map(copyPane)
}
}
export type ActionConfirmRequired = 'deleteOneOnly'
export const useGlobalStore = defineStore(
'useGlobalStore',
() => {
const conf = ref<GlobalConf>()
const quickMovePaths = ref([] as ReturnTypeAsync<typeof getQuickMovePaths>)
const enableThumbnail = ref(true)
const gridThumbnailResolution = ref(512)
const defaultSortingMethod = ref(SortMethod.CREATED_TIME_DESC)
const defaultGridCellWidth = ref(256)
const createEmptyPane = (): TabPane => ({
type: 'empty',
name: t('emptyStartPage'),
key: uniqueId()
})
const tabList = ref<Tab[]>([])
onMounted(() => {
const emptyPane = createEmptyPane()
tabList.value.push({ panes: [emptyPane], key: emptyPane.key, id: uniqueId() })
})
const dragingTab = ref<{ tabIdx: number; paneIdx: number }>()
const recent = ref(new Array<{ path: string; key: string }>())
const time = Date.now()
const tabListHistoryRecord = ref<{ time: number; tabs: Tab[] }[]>() // [curr,last]
const saveRecord = () => {
const tabs = toRaw(tabList.value).map(copyTab)
if (tabListHistoryRecord.value?.[0].time !== time) {
tabListHistoryRecord.value = [{ tabs, time }, ...(tabListHistoryRecord.value ?? [])]
} else {
tabListHistoryRecord.value[0].tabs = tabs
}
tabListHistoryRecord.value = tabListHistoryRecord.value.slice(0, 2)
}
const openTagSearchMatchedImageGridInRight = async (
tabIdx: number,
id: string,
tagIds: MatchImageByTagsReq
) => {
let pane = tabList.value
.map((v) => v.panes)
.flat()
.find(
(v) => v.type === 'tag-search-matched-image-grid' && v.id === id
) as TagSearchMatchedImageGridTabPane
if (pane) {
pane.selectedTagIds = cloneDeep(tagIds)
return
} else {
pane = {
type: 'tag-search-matched-image-grid',
id: id,
selectedTagIds: cloneDeep(tagIds),
key: uniqueId(),
name: t('searchResults')
}
}
const tab = tabList.value[tabIdx + 1]
if (!tab) {
tabList.value.push({ panes: [pane], key: pane.key, id: uniqueId() })
} else {
tab.key = pane.key
tab.panes.push(pane)
}
}
const lang = ref(getPreferredLang())
watch(lang, (v) => (i18n.global.locale.value = v as any))
const longPressOpenContextMenu = ref(false)
const shortcut = ref<Shortcut>({
delete: '',
download: ''
})
const pathAliasMap = computed((): Dict<string> => {
const keys = ['outdir_extras_samples','outdir_save','outdir_txt2img_samples',
'outdir_img2img_samples','outdir_img2img_grids','outdir_txt2img_grids']
const res = quickMovePaths.value.filter((v) => keys.includes(v.key)).map(v => [v.zh, v.dir])
return Object.fromEntries(res)
})
const ignoredConfirmActions = reactive<Record<ActionConfirmRequired, boolean>>({ deleteOneOnly: false })
return {
defaultSortingMethod,
defaultGridCellWidth,
pathAliasMap,
createEmptyPane,
lang,
tabList,
conf,
quickMovePaths,
enableThumbnail,
dragingTab,
saveRecord,
recent,
tabListHistoryRecord,
gridThumbnailResolution,
longPressOpenContextMenu,
openTagSearchMatchedImageGridInRight,
onlyFoldersAndImages: ref(true),
fullscreenPreviewInitialUrl: ref(''),
shortcut,
dontShowAgain: ref(false),
dontShowAgainNewImgOpts: ref(false),
ignoredConfirmActions
}
},
{
persist: {
// debug: true,
paths: [
'dontShowAgainNewImgOpts',
'defaultSortingMethod',
'defaultGridCellWidth',
'dontShowAgain',
'lang',
'enableThumbnail',
'tabListHistoryRecord',
'recent',
'gridThumbnailResolution',
'longPressOpenContextMenu',
'onlyFoldersAndImages',
'shortcut',
'ignoredConfirmActions'
]
}
}
)
|