stable-diffusion-webui
/
extensions
/sd-webui-infinite-image-browsing
/vue
/src
/page
/fileTransfer
/stackView.vue
<script setup lang="ts"> | |
import { DownOutlined, LeftCircleOutlined, RightCircleOutlined } from '@/icon' | |
import { useGlobalStore } from '@/store/useGlobalStore' | |
import { | |
useFileTransfer, | |
useFilesDisplay, | |
useHookShareState, | |
useLocation, | |
usePreview, | |
useFileItemActions, | |
useMobileOptimization, | |
stackCache | |
} from './hook' | |
import { SearchSelect } from 'vue3-ts-util' | |
import { toRawFileUrl } from '@/util/file' | |
import 'multi-nprogress/nprogress.css' | |
// @ts-ignore | |
import { RecycleScroller } from '@zanllp/vue-virtual-scroller' | |
import '@zanllp/vue-virtual-scroller/dist/vue-virtual-scroller.css' | |
import { watch } from 'vue' | |
import FileItem from '@/components/FileItem.vue' | |
import fullScreenContextMenu from './fullScreenContextMenu.vue' | |
import { copy2clipboardI18n } from '@/util' | |
import { openFolder } from '@/api' | |
import { sortMethods } from './fileSort' | |
import { isTauri } from '@/util/env' | |
const global = useGlobalStore() | |
const props = defineProps<{ | |
tabIdx: number | |
paneIdx: number | |
/** | |
* 初始打开路径 | |
*/ | |
path?: string | |
walkModePath?: string | |
/** | |
* 页面栈,跳过不必要的api请求 | |
*/ | |
stackKey?: string | |
}>() | |
const { | |
scroller, | |
stackViewEl, | |
props: _props, | |
multiSelectedIdxs, | |
spinning | |
} = useHookShareState().toRefs() | |
const { currLocation, currPage, refresh, copyLocation, back, openNext, stack, quickMoveTo, | |
addToSearchScanPathAndQuickMove, searchPathInfo, locInputValue, isLocationEditing, | |
onLocEditEnter, onEditBtnClick, share, selectAll, onCreateFloderBtnClick, onWalkBtnClick, | |
showWalkButton, searchInCurrentDir | |
} = useLocation() | |
const { | |
gridItems, | |
sortMethodConv, | |
moreActionsDropdownShow, | |
sortedFiles, | |
sortMethod, | |
itemSize, | |
loadNextDir, | |
loadNextDirLoading, | |
canLoadNext, | |
onScroll, | |
cellWidth | |
} = useFilesDisplay() | |
const { onDrop, onFileDragStart, onFileDragEnd } = useFileTransfer() | |
const { onFileItemClick, onContextMenuClick, showGenInfo, imageGenInfo, q } = useFileItemActions({ openNext }) | |
const { previewIdx, onPreviewVisibleChange, previewing, previewImgMove, canPreview } = usePreview() | |
const { showMenuIdx } = useMobileOptimization() | |
watch( | |
() => props, | |
() => { | |
_props.value = props | |
const stackC = stackCache.get(props.stackKey ?? '') | |
if (stackC) { | |
stack.value = stackC.slice() // 浅拷贝 | |
} | |
}, | |
{ immediate: true } | |
) | |
</script> | |
<template> | |
<ASpin :spinning="spinning" size="large"> | |
<ASelect style="display: none"></ASelect> | |
<div ref="stackViewEl" @dragover.prevent @drop.prevent="onDrop($event)" class="container"> | |
<AModal v-model:visible="showGenInfo" width="70vw" mask-closable @ok="showGenInfo = false"> | |
<template #cancelText /> | |
<ASkeleton active :loading="!q.isIdle"> | |
<div style=" | |
width: 100%; | |
word-break: break-all; | |
white-space: pre-line; | |
max-height: 70vh; | |
overflow: auto; | |
z-index: 9999; | |
" @dblclick="copy2clipboardI18n(imageGenInfo)"> | |
<div class="hint">{{ $t('doubleClickToCopy') }}</div> | |
{{ imageGenInfo }} | |
</div> | |
</ASkeleton> | |
</AModal> | |
<div class="location-bar"> | |
<div v-if="props.walkModePath" class="breadcrumb"> | |
<a-tooltip> | |
<template #title>{{ $t('walk-mode-move-message') }}</template><a-breadcrumb style="flex: 1"> | |
<a-breadcrumb-item v-for="(item, idx) in stack" :key="idx"> | |
<span>{{ item.curr === '/' ? $t('root') : item.curr.replace(/:\/$/, $t('drive')) }}</span> | |
</a-breadcrumb-item> | |
</a-breadcrumb> | |
</a-tooltip> | |
</div> | |
<div class="breadcrumb" :style="{ flex: isLocationEditing ? 1 : '' }" v-else> | |
<AInput v-if="isLocationEditing" style="flex: 1" v-model:value="locInputValue" @click.stop @keydown.stop | |
@press-enter="onLocEditEnter" allow-clear></AInput> | |
<a-breadcrumb style="flex: 1" v-else> | |
<a-breadcrumb-item v-for="(item, idx) in stack" :key="idx"> | |
<a @click.prevent="back(idx)">{{ item.curr === '/' ? $t('root') : item.curr.replace(/:\/$/, $t('drive')) | |
}}</a> | |
</a-breadcrumb-item> | |
</a-breadcrumb> | |
<AButton size="small" v-if="isLocationEditing" @click="onLocEditEnter" type="primary">{{ $t('go') }}</AButton> | |
<div v-else class="location-act"> | |
<a @click.prevent="copyLocation" class="copy">{{ $t('copy') }}</a> | |
<a @click.prevent.stop="onEditBtnClick">{{ $t('edit') }}</a> | |
</div> | |
</div> | |
<div class="actions"> | |
<a class="opt" @click.prevent="refresh"> {{ $t('refresh') }} </a> | |
<a-dropdown> | |
<a class="opt" @click.prevent> | |
{{ $t('search') }} | |
<down-outlined /> | |
</a> | |
<template #overlay> | |
<a-menu> | |
<a-menu-item key="tag-search"> | |
<a @click.prevent="searchInCurrentDir('tag-search')">{{ $t('imgSearch') }}</a> | |
</a-menu-item> | |
<a-menu-item key="tag-search"> | |
<a @click.prevent="searchInCurrentDir('fuzzy-search')">{{ $t('fuzzy-search') }}</a> | |
</a-menu-item> | |
</a-menu> | |
</template> | |
</a-dropdown> | |
<a class="opt" @click.prevent="onWalkBtnClick" v-if="showWalkButton"> Walk </a> | |
<a class="opt" @click.prevent.stop="selectAll"> {{ $t('selectAll') }} </a> | |
<a class="opt" @click.prevent="share" v-if="!isTauri"> {{ $t('share') }} </a> | |
<a-dropdown> | |
<a class="opt" @click.prevent> | |
{{ $t('quickMove') }} | |
<down-outlined /> | |
</a> | |
<template #overlay> | |
<a-menu> | |
<a-menu-item v-for="item in global.quickMovePaths" :key="item.dir"> | |
<a @click.prevent="quickMoveTo(item.dir)">{{ item.zh }}</a> | |
</a-menu-item> | |
</a-menu> | |
</template> | |
</a-dropdown> | |
<a-dropdown :trigger="['click']" v-model:visible="moreActionsDropdownShow" placement="bottomLeft" | |
:getPopupContainer="trigger => trigger.parentNode as HTMLDivElement"> | |
<a class="opt" @click.prevent> | |
{{ $t('more') }} | |
</a> | |
<template #overlay> | |
<div style=" | |
width: 512px; | |
background: var(--zp-primary-background); | |
padding: 16px; | |
border-radius: 4px; | |
box-shadow: 0 0 4px var(--zp-secondary-background); | |
border: 1px solid var(--zp-secondary-background); | |
"> | |
<a-form v-bind="{ | |
labelCol: { span: 6 }, | |
wrapperCol: { span: 18 } | |
}"> | |
<a-form-item :label="$t('gridCellWidth')"> | |
<numInput v-model="cellWidth" :max="1024" :min="64" :step="64" /> | |
</a-form-item> | |
<a-form-item :label="$t('sortingMethod')"> | |
<search-select v-model:value="sortMethod" @click.stop :conv="sortMethodConv" :options="sortMethods" /> | |
</a-form-item> | |
<div style="padding: 4px;"> | |
<a @click.prevent="addToSearchScanPathAndQuickMove" v-if="!searchPathInfo">{{ | |
$t('addToSearchScanPathAndQuickMove') }}</a> | |
<a @click.prevent="addToSearchScanPathAndQuickMove" v-else-if="searchPathInfo.can_delete">{{ | |
$t('removeFromSearchScanPathAndQuickMove') }}</a> | |
</div> | |
<div style="padding: 4px;"> | |
<a @click.prevent="openFolder(currLocation + '/')">{{ $t('openWithLocalFileBrowser') }}</a> | |
</div> | |
<div style="padding: 4px;"> | |
<a @click.prevent="onCreateFloderBtnClick">{{ $t('createFolder') }}</a> | |
</div> | |
</a-form> | |
</div> | |
</template> | |
</a-dropdown> | |
</div> | |
</div> | |
<div v-if="currPage" class="view"> | |
<RecycleScroller class="file-list" :items="sortedFiles" ref="scroller" @scroll="onScroll" | |
:item-size="itemSize.first" key-field="fullpath" :item-secondary-size="itemSize.second" :gridItems="gridItems"> | |
<template v-slot="{ item: file, index: idx }"> | |
<!-- idx 和file有可能丢失 --> | |
<file-item :idx="parseInt(idx)" :file="file" | |
:full-screen-preview-image-url="sortedFiles[previewIdx] ? toRawFileUrl(sortedFiles[previewIdx]) : ''" | |
v-model:show-menu-idx="showMenuIdx" :selected="multiSelectedIdxs.includes(idx)" :cell-width="cellWidth" | |
@file-item-click="onFileItemClick" @dragstart="onFileDragStart" @dragend="onFileDragEnd" | |
@preview-visible-change="onPreviewVisibleChange" @context-menu-click="onContextMenuClick" | |
:is-selected-mutil-files="multiSelectedIdxs.length > 1" /> | |
</template> | |
<template v-if="props.walkModePath" #after> | |
<div style="padding: 16px 0 32px;"> | |
<AButton @click="loadNextDir" :loading="loadNextDirLoading" block type="primary" :disabled="!canLoadNext" | |
ghost> | |
{{ $t('loadNextPage') }}</AButton> | |
</div> | |
</template> | |
</RecycleScroller> | |
<div v-if="previewing" class="preview-switch"> | |
<LeftCircleOutlined @click="previewImgMove('prev')" :class="{ disable: !canPreview('prev') }" /> | |
<RightCircleOutlined @click="previewImgMove('next')" :class="{ disable: !canPreview('next') }" /> | |
</div> | |
</div> | |
</div> | |
<fullScreenContextMenu v-if="previewing" :file="sortedFiles[previewIdx]" :idx="previewIdx" | |
@context-menu-click="onContextMenuClick" /> | |
</ASpin> | |
</template> | |
<style lang="scss" scoped> | |
.preview-switch { | |
position: fixed; | |
top: 0; | |
bottom: 0; | |
left: 0; | |
right: 0; | |
display: flex; | |
align-items: center; | |
justify-content: space-between; | |
z-index: 11111; | |
pointer-events: none; | |
&>* { | |
color: white; | |
margin: 16px; | |
font-size: 4em; | |
pointer-events: all; | |
cursor: pointer; | |
&.disable { | |
opacity: 0; | |
pointer-events: none; | |
cursor: none; | |
} | |
} | |
} | |
.location-act { | |
margin-left: 8px; | |
.copy { | |
margin-right: 4px; | |
} | |
@media (max-width: 768px) { | |
display: flex; | |
flex-direction: column; | |
&>*, .copy { | |
margin: 2px; | |
} | |
} | |
} | |
.breadcrumb { | |
display: flex; | |
align-items: center; | |
&>* { | |
margin-right: 4px; | |
} | |
@media (max-width: 768px) { | |
width: 100%; | |
.ant-breadcrumb>* { | |
display: inline-block; | |
} | |
} | |
} | |
.container { | |
background: var(--zp-secondary-background); | |
height: var(--pane-max-height); | |
} | |
.location-bar { | |
padding: 4px 16px; | |
background: var(--zp-primary-background); | |
border-bottom: 1px solid var(--zp-border); | |
display: flex; | |
align-items: center; | |
justify-content: space-between; | |
@media (max-width: 768px) { | |
flex-direction: column; | |
::-webkit-scrollbar { | |
height: 2px; // 滚动条宽度 | |
background-color: var(--zp-secondary-variant-background); // 滚动条背景颜色 | |
} | |
.actions { | |
padding: 4px 0; | |
width: 100%; | |
overflow: auto; | |
display: flex; | |
align-items: center; | |
&>* { | |
flex-shrink: 0; | |
} | |
} | |
} | |
.actions { | |
display: flex; | |
align-items: center; | |
flex-shrink: 0; | |
} | |
a.opt { | |
margin-left: 8px; | |
} | |
} | |
.view { | |
padding: 8px; | |
height: calc(100vh - 48px); | |
.file-list { | |
list-style: none; | |
padding: 8px; | |
height: 100%; | |
overflow: auto; | |
} | |
} | |
.hint { | |
padding: 4px; | |
border: 4px; | |
background: var(--zp-secondary-background); | |
border: 1px solid var(--zp-border); | |
}</style> | |