131 lines
3.9 KiB
TypeScript
131 lines
3.9 KiB
TypeScript
import styled from '@emotion/styled';
|
|
import { ActionIcon, Flex, Stack, Text, Tooltip } from '@mantine/core';
|
|
import { notifications } from '@mantine/notifications';
|
|
import { IconSquareMinus, IconSquarePlus } from '@tabler/icons-react';
|
|
import { invoke } from '@tauri-apps/api';
|
|
import EventEmitter from 'events';
|
|
import { equals, isEmpty, length, map, not } from 'ramda';
|
|
import { FC, PropsWithChildren, useCallback, useContext, useState } from 'react';
|
|
import { EventBusContext } from '../EventBus';
|
|
import { DirItem } from '../models';
|
|
import { loadSubDirectories } from '../queries/directories';
|
|
import {
|
|
currentRootsSelector,
|
|
isExpandedSelector,
|
|
selectDirectories,
|
|
useDirTreeStore
|
|
} from '../states/dirs';
|
|
import { useFileListStore } from '../states/files';
|
|
|
|
const Tree = styled.ul`
|
|
--spacing: 0.5rem;
|
|
list-style-type: none;
|
|
list-style-position: outside;
|
|
padding: 0;
|
|
margin: 0;
|
|
width: max-content;
|
|
li ul {
|
|
padding-left: calc(2 * var(--spacing));
|
|
}
|
|
`;
|
|
|
|
const Branch: FC<PropsWithChildren<{ current: DirItem; expanded: boolean }>> = ({
|
|
children,
|
|
current
|
|
}) => {
|
|
const { directories: allSubDirs } = useDirTreeStore();
|
|
const [subDirs, setSubDirs] = useState<DirItem[]>([]);
|
|
const isCurrentExpanded = useDirTreeStore(isExpandedSelector(current.id));
|
|
const expend = useDirTreeStore.use.expandDir();
|
|
const fold = useDirTreeStore.use.foldDir();
|
|
const selectDir = useDirTreeStore.use.selectDirectory();
|
|
const selectedDirectory = useDirTreeStore.use.selected();
|
|
const storeFiles = useFileListStore.use.updateFiles();
|
|
const ebus = useContext<EventEmitter>(EventBusContext);
|
|
|
|
const handleExpandAction = useCallback(async () => {
|
|
try {
|
|
if (isCurrentExpanded) {
|
|
fold(current.id);
|
|
} else {
|
|
await loadSubDirectories(current);
|
|
setSubDirs(selectDirectories(current.id)(useDirTreeStore.getState().directories));
|
|
expend(current.id);
|
|
}
|
|
} catch (e) {
|
|
notifications.show({
|
|
message: `未能成功加载指定文件夹下的子文件夹,${e}`,
|
|
color: 'red'
|
|
});
|
|
}
|
|
}, [current, allSubDirs, isCurrentExpanded]);
|
|
const handleSelectAction = useCallback(async () => {
|
|
try {
|
|
selectDir(current.id);
|
|
const files = await invoke('scan_directory', { target: current.path });
|
|
console.log('[debug]获取到文件个数:', length(files));
|
|
storeFiles(files);
|
|
ebus.emit('reset_views');
|
|
} catch (e) {
|
|
console.error('[error]打开文件夹', e);
|
|
notifications.show({ message: `未能成功打开指定文件夹,请重试。${e}`, color: 'red' });
|
|
}
|
|
}, [current]);
|
|
|
|
return (
|
|
<li>
|
|
<Flex direction="row" justify="flex-start" align="center" spacing={8} maw={250}>
|
|
<ActionIcon onClick={handleExpandAction}>
|
|
{isCurrentExpanded ? (
|
|
<IconSquareMinus stroke={1.5} size={16} />
|
|
) : (
|
|
<IconSquarePlus stroke={1.5} size={16} />
|
|
)}
|
|
</ActionIcon>
|
|
<Tooltip label={children}>
|
|
<Text
|
|
size="sm"
|
|
truncate
|
|
onClick={handleSelectAction}
|
|
sx={{ cursor: 'pointer' }}
|
|
bg={equals(current.id, selectedDirectory) && 'blue'}
|
|
>
|
|
{children}
|
|
</Text>
|
|
</Tooltip>
|
|
</Flex>
|
|
{not(isEmpty(subDirs)) && isCurrentExpanded && (
|
|
<Tree>
|
|
{map(
|
|
item => (
|
|
<Branch key={item.id} current={item}>
|
|
{item.dirname}
|
|
</Branch>
|
|
),
|
|
subDirs
|
|
)}
|
|
</Tree>
|
|
)}
|
|
</li>
|
|
);
|
|
};
|
|
|
|
export const DirTree: FC = () => {
|
|
const roots = useDirTreeStore(currentRootsSelector());
|
|
|
|
return (
|
|
<Stack w="auto" h="100%" spacing={8} px={4} py={4} sx={{ overflow: 'auto' }}>
|
|
<Tree>
|
|
{map(
|
|
item => (
|
|
<Branch key={item.id} current={item}>
|
|
{item.dirname}
|
|
</Branch>
|
|
),
|
|
roots
|
|
)}
|
|
</Tree>
|
|
</Stack>
|
|
);
|
|
};
|