File size: 6,515 Bytes
0070fce |
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 216 217 |
import { useGlobalStore, type FileTransferTabPane } from '@/store/useGlobalStore'
import { useImgSliStore } from '@/store/useImgSli'
import { onLongPress } from '@vueuse/core'
import { ref, computed, watch, reactive } from 'vue'
import {
createTypedShareStateHook,
delay,
typedEventEmitter
} from 'vue3-ts-util'
import { type FileNodeInfo } from '@/api/files'
import { sortFiles } from '../fileSort'
import { last, range } from 'lodash-es'
import * as Path from '@/util/path'
import { isMediaFile } from '@/util/file'
import { useTagStore } from '@/store/useTagStore'
import { useBatchDownloadStore } from '@/store/useBatchDownloadStore'
import { Walker } from '../walker'
export const stackCache = new Map<string, Page[]>()
export const global = useGlobalStore()
export const batchDownload = useBatchDownloadStore()
export const tagStore = useTagStore()
export const sli = useImgSliStore()
export const imgTransferBus = new BroadcastChannel('iib-image-transfer-bus')
export const { eventEmitter: events, useEventListen } = typedEventEmitter<{
removeFiles (_: { paths: string[]; loc: string }): void
addFiles (_: { files: FileNodeInfo[]; loc: string }): void
}>()
export * from './useLocation'
export * from './usePreview'
export * from './useFilesDisplay'
export * from './useFileTransfer'
export * from './useFileItemActions'
export * from './useGenInfoDiff'
export interface Scroller {
$_startIndex: number
$_endIndex: number
scrollToItem (idx: number): void
}
export const { useHookShareState } = createTypedShareStateHook(
(_inst, { images }) => {
const props = ref<Props>({ tabIdx: -1, paneIdx: -1 })
const currPage = computed(() => last(stack.value))
const stack = ref<Page[]>([])
const basePath = computed(() =>
stack.value.map((v) => v.curr).slice(global.conf?.is_win && props.value.mode !== 'scanned-fixed' ? 1 : 0)
)
const currLocationScannedOnlyAvailable = computed(() => Path.join(...basePath.value))
const currLocation = computed(() => {
if(props.value.mode === 'scanned-fixed') return stack.value?.[0]?.curr ?? ''
if(props.value.mode === 'walk') return props.value.path ?? ''
return stack.value.length === 1 ? '/' : currLocationScannedOnlyAvailable.value
})
const sortMethod = ref(global.defaultSortingMethod)
const walker = ref(props.value.mode == 'walk' ? new Walker(props.value.path!, sortMethod.value) : undefined)
watch([() => props.value.mode, () => props.value.path, sortMethod], async ([mode, path, method]) => {
if (mode === 'walk') {
walker.value = new Walker(path!, method)
stack.value = [{ files: [], curr: path! }]
await delay()
await walker.value?.reset()
events.eventEmitter.emit('loadNextDir')
} else {
walker.value = undefined
}
})
const deletedFiles = reactive(new Set<string>())
watch(currPage, () => deletedFiles.clear())
const sortedFiles = computed(() => {
if (images.value) {
return images.value
}
if (walker.value) {
return walker.value.images.filter(v => !deletedFiles.has(v.fullpath))
}
if (!currPage.value) {
return []
}
const files = currPage.value?.files ?? []
const method = sortMethod.value
const filter = (files: FileNodeInfo[]) =>
global.onlyFoldersAndImages
? files.filter((file) => file.type === 'dir' || isMediaFile(file.name))
: files
return sortFiles(filter(files), method).filter(v => !deletedFiles.has(v.fullpath))
})
const multiSelectedIdxs = ref([] as number[])
const previewIdx = ref(-1)
const canLoadNext = computed(() => walker.value ? !walker.value.isCompleted : false)
const spinning = ref(false)
const previewing = ref(false)
const scroller = ref<Scroller>()
const getPane = () => {
return global.tabList?.[props.value.tabIdx]?.panes?.[props.value.paneIdx] as FileTransferTabPane
}
const events = typedEventEmitter<{
loadNextDir (isFullscreenPreview?: boolean): Promise<void>
refresh (): Promise<void>
selectAll (): void
viewableAreaFilesChange(): void
}>()
events.useEventListen('selectAll', () => {
console.log(`select all 0 -> ${sortedFiles.value.length}`)
multiSelectedIdxs.value = range(0, sortedFiles.value.length)
})
const getViewableAreaFiles = () => {
const s = scroller.value
if (s) {
const startIdx = Math.max(s.$_startIndex - 10, 0)
// console.log('area change', startIdx, s.$_endIndex + 10)
return sortedFiles.value.slice(startIdx, s.$_endIndex + 10)
}
return []
}
return {
previewing,
spinning,
canLoadNext,
multiSelectedIdxs,
previewIdx,
basePath,
currLocation,
currPage,
stack,
sortMethod,
sortedFiles,
scroller,
stackViewEl: ref<HTMLDivElement>(),
props,
getPane,
walker,
deletedFiles,
getViewableAreaFiles,
...events
}
},
() => ({ images: ref<FileNodeInfo[]>() })
)
export interface Props {
tabIdx: number
paneIdx: number
path?: string
mode?: 'walk' | 'scanned' | 'scanned-fixed'
fixed?: boolean
}
export interface Page {
files: FileNodeInfo[]
curr: string
}
export function useKeepMultiSelect () {
const { eventEmitter, multiSelectedIdxs, sortedFiles } = useHookShareState().toRefs()
const onSelectAll = () => eventEmitter.value.emit('selectAll')
const onReverseSelect = () => {
multiSelectedIdxs.value = sortedFiles.value.map((_, idx) => idx)
.filter(v => !multiSelectedIdxs.value.includes(v))
}
const onClearAllSelected = () => {
multiSelectedIdxs.value = []
}
return {
onSelectAll,
onReverseSelect,
onClearAllSelected
}
}
/**
* 针对移动端端操作优化,使用长按提到右键
*/
export const useMobileOptimization = () => {
const { stackViewEl } = useHookShareState().toRefs()
const showMenuIdx = ref(-1)
onLongPress(stackViewEl, (e) => {
let fileEl = e.target as HTMLDivElement
while (fileEl.parentElement) {
fileEl = fileEl.parentElement as any
if (fileEl.tagName.toLowerCase() === 'li' && fileEl.classList.contains('file-item-trigger')) {
const idx = fileEl.dataset?.idx
if (idx && Number.isSafeInteger(+idx)) {
showMenuIdx.value = +idx
}
return
}
}
})
return {
showMenuIdx
}
}
|