Files
XCDesktop/src/modules/remote/components/file-transfer/LocalFilePanel.tsx

184 lines
6.0 KiB
TypeScript

import React, { useState, useEffect, useCallback } from 'react'
import { Folder, FileText, ChevronLeft, RefreshCw, HardDrive } from 'lucide-react'
import { clsx } from 'clsx'
import type { FileItem } from '@/lib/api'
import { fetchSystemFiles, fetchSystemDrives } from '../../api'
interface LocalFilePanelProps {
selectedFile: FileItem | null
onSelect: (file: FileItem | null) => void
onUpload: () => void
onPathChange?: (path: string) => void
disabled?: boolean
}
export const LocalFilePanel: React.FC<LocalFilePanelProps> = ({
selectedFile,
onSelect,
onUpload,
onPathChange,
disabled,
}) => {
const [currentPath, setCurrentPath] = useState('')
const [files, setFiles] = useState<FileItem[]>([])
const [loading, setLoading] = useState(false)
const [pathHistory, setPathHistory] = useState<string[]>([''])
const [isAtDrives, setIsAtDrives] = useState(true)
const loadFiles = useCallback(async (systemPath: string) => {
setLoading(true)
try {
const items = await fetchSystemFiles(systemPath)
setFiles(items)
} catch (err) {
console.error('Failed to load local files:', err)
} finally {
setLoading(false)
}
}, [])
const loadDrives = useCallback(async () => {
setLoading(true)
try {
const items = await fetchSystemDrives()
setFiles(items)
} catch (err) {
console.error('Failed to load drives:', err)
} finally {
setLoading(false)
}
}, [])
useEffect(() => {
if (isAtDrives) {
loadDrives()
onPathChange?.('')
} else {
loadFiles(currentPath)
}
}, [currentPath, isAtDrives, loadFiles, loadDrives])
const handleGoBack = () => {
if (pathHistory.length > 1) {
const newHistory = [...pathHistory]
newHistory.pop()
const prevPath = newHistory[newHistory.length - 1]
setPathHistory(newHistory)
setCurrentPath(prevPath)
if (prevPath === '') {
setIsAtDrives(true)
onPathChange?.('')
} else {
onPathChange?.(prevPath)
}
onSelect(null)
}
}
const handleGoInto = (file: FileItem) => {
setIsAtDrives(false)
setPathHistory([...pathHistory, file.path])
setCurrentPath(file.path)
onSelect(null)
onPathChange?.(file.path)
}
const handleRefresh = () => {
if (isAtDrives) {
loadDrives()
} else {
loadFiles(currentPath)
}
}
const getDisplayPath = () => {
if (isAtDrives) return '本地磁盘'
const parts = currentPath.split(/[/\\]/)
return parts[parts.length - 1] || currentPath
}
return (
<div className="flex flex-col h-full border border-gray-200 dark:border-gray-700 overflow-hidden">
<div className="h-12 flex items-center justify-between px-4 bg-gray-50 dark:bg-gray-800 border-b border-gray-200 dark:border-gray-700">
<div className="flex items-center gap-2">
<button
onClick={handleGoBack}
disabled={pathHistory.length <= 1}
className="p-1 rounded hover:bg-gray-200 dark:hover:bg-gray-700 disabled:opacity-30 disabled:cursor-not-allowed"
title="返回上级"
>
<ChevronLeft size={18} />
</button>
<span className="text-base font-medium text-gray-700 dark:text-gray-300 truncate max-w-[180px]">
{getDisplayPath()}
</span>
</div>
<button
onClick={handleRefresh}
disabled={loading}
className="p-1.5 rounded hover:bg-gray-200 dark:hover:bg-gray-700"
title="刷新"
>
<RefreshCw size={16} className={clsx(loading && 'animate-spin')} />
</button>
</div>
<div className="flex-1 overflow-y-auto p-2" onClick={(e) => {
if ((e.target as HTMLElement).classList.contains('space-y-1') || (e.target as HTMLElement).classList.contains('p-2')) {
onSelect(null)
}
}}>
{loading ? (
<div className="flex items-center justify-center h-full text-gray-400">
...
</div>
) : files.length === 0 ? (
<div className="flex items-center justify-center h-full text-gray-400">
</div>
) : (
<div className="space-y-1">
{files.map((file) => (
<div
key={file.path}
onClick={() => onSelect(selectedFile?.path === file.path ? null : file)}
onDoubleClick={() => file.type === 'dir' && handleGoInto(file)}
className={clsx(
'flex items-center gap-2 px-2 py-1.5 rounded-md cursor-pointer transition-colors text-sm',
selectedFile?.path === file.path
? 'bg-gray-100 text-gray-800 dark:bg-gray-700/60 dark:text-gray-200'
: 'hover:bg-gray-100 dark:hover:bg-gray-700/50 text-gray-700 dark:text-gray-200'
)}
>
{file.type === 'dir' || file.path.match(/^[A-Z]:\\?$/i) ? (
file.path.match(/^[A-Z]:\\?$/i) ? (
<HardDrive size={16} className="text-blue-500 dark:text-blue-400 shrink-0" />
) : (
<Folder size={16} className="text-gray-500 dark:text-gray-400 shrink-0" />
)
) : (
<FileText size={16} className="text-gray-500 dark:text-gray-400 shrink-0" />
)}
<span className="flex-1 truncate">
{file.name}
</span>
</div>
))}
</div>
)}
</div>
<div className="p-3 border-t border-gray-200 dark:border-gray-700 bg-gray-50 dark:bg-gray-800">
<button
onClick={onUpload}
disabled={!selectedFile || disabled}
className="w-full flex items-center justify-center gap-2 px-4 py-2 bg-gray-600 hover:bg-gray-700 disabled:bg-gray-400 dark:disabled:bg-gray-700 dark:disabled:text-gray-500 text-white rounded-lg transition-colors"
>
<span></span>
</button>
</div>
</div>
)
}