stable-diffusion-webui
/
extensions
/sd-webui-infinite-image-browsing
/vue
/src
/page
/SplitViewTab
/extraPathControlFunc.ts
import { ExtraPathType, addExtraPath, removeExtraPath } from '@/api/db' | |
import { globalEvents } from '@/util' | |
import { Input, Modal, message } from 'ant-design-vue' | |
import { open } from '@tauri-apps/api/dialog' | |
import { checkPathExists } from '@/api' | |
import { h, ref } from 'vue' | |
import { t } from '@/i18n' | |
export const addToExtraPath = async (type: ExtraPathType) => { | |
let path: string | |
if (import.meta.env.TAURI_ARCH) { | |
const ret = await open({ directory: true }) | |
if (typeof ret === 'string') { | |
path = ret | |
} else { | |
return | |
} | |
} else { | |
path = await new Promise<string>((resolve) => { | |
const key = ref('') | |
Modal.confirm({ | |
title: t('inputTargetFolderPath'), | |
content: () => { | |
return h(Input, { | |
value: key.value, | |
'onUpdate:value': (v: string) => (key.value = v) | |
}) | |
}, | |
async onOk () { | |
const path = key.value | |
const res = await checkPathExists([path]) | |
if (res[path]) { | |
resolve(key.value) | |
} else { | |
message.error(t('pathDoesNotExist')) | |
} | |
} | |
}) | |
}) | |
} | |
Modal.confirm({ | |
content: t('confirmToAddToExtraPath'), | |
async onOk () { | |
await addExtraPath({ type, path }) | |
message.success(t('addCompleted')) | |
globalEvents.emit('searchIndexExpired') | |
globalEvents.emit('updateGlobalSetting') | |
} | |
}) | |
} | |
export const onRemoveExtraPathClick = (path: string, type: ExtraPathType) => { | |
Modal.confirm({ | |
content: t('confirmDelete'), | |
closable: true, | |
async onOk () { | |
await removeExtraPath({ type, path }) | |
message.success(t('removeCompleted')) | |
globalEvents.emit('searchIndexExpired') | |
globalEvents.emit('updateGlobalSetting') | |
} | |
}) | |
} |