304 lines
10 KiB
Vue
304 lines
10 KiB
Vue
<script setup lang="ts">
|
|
import { DownOutlined, LeftCircleOutlined, RightCircleOutlined } from '@/icon'
|
|
import { useGlobalStore } from '@/store/useGlobalStore'
|
|
import {
|
|
useFileTransfer,
|
|
useFilesDisplay,
|
|
useHookShareState,
|
|
useLocation,
|
|
usePreview,
|
|
useFileItemActions,
|
|
stackCache,
|
|
useMobileOptimization
|
|
} 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
|
|
} = 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">
|
|
<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
|
|
@press-enter="onLocEditEnter"></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 style="margin-left: 8px;">
|
|
<a @click.prevent="copyLocation" style="margin-right: 4px;">{{ $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 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="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" />
|
|
</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;
|
|
}
|
|
}
|
|
}
|
|
|
|
.breadcrumb {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
&>* {
|
|
margin-right: 4px;
|
|
}
|
|
}
|
|
|
|
.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;
|
|
|
|
.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>
|