Portal/rsconcept/frontend/src/features/library/pages/library-page/view-side-location.tsx
2025-07-02 12:37:47 +03:00

104 lines
3.9 KiB
TypeScript

import { toast } from 'react-toastify';
import clsx from 'clsx';
import { useAuthSuspense } from '@/features/auth';
import { HelpTopic } from '@/features/help';
import { BadgeHelp } from '@/features/help/components/badge-help';
import { MiniButton } from '@/components/control';
import { IconFolderEdit, IconFolderTree } from '@/components/icons';
import { useFitHeight } from '@/stores/app-layout';
import { prefixes } from '@/utils/constants';
import { infoMsg } from '@/utils/labels';
import { useLibrary } from '../../backend/use-library';
import { IconShowSubfolders } from '../../components/icon-show-subfolders';
import { SelectLocation } from '../../components/select-location';
import { type FolderNode } from '../../models/folder-tree';
import { useLibrarySearchStore } from '../../stores/library-search';
interface ViewSideLocationProps {
isVisible: boolean;
onRenameLocation: () => void;
}
export function ViewSideLocation({ isVisible, onRenameLocation }: ViewSideLocationProps) {
const { user, isAnonymous } = useAuthSuspense();
const { items } = useLibrary();
const location = useLibrarySearchStore(state => state.location);
const setLocation = useLibrarySearchStore(state => state.setLocation);
const toggleFolderMode = useLibrarySearchStore(state => state.toggleFolderMode);
const subfolders = useLibrarySearchStore(state => state.subfolders);
const toggleSubfolders = useLibrarySearchStore(state => state.toggleSubfolders);
const canRename = (() => {
if (location.length <= 3 || isAnonymous) {
return false;
}
if (user.is_staff) {
return true;
}
const owned = items.filter(item => item.owner == user.id);
const located = owned.filter(item => item.location == location || item.location.startsWith(`${location}/`));
return located.length !== 0;
})();
const maxHeight = useFitHeight('4.5rem');
function handleClickFolder(event: React.MouseEvent<Element>, target: FolderNode) {
event.preventDefault();
event.stopPropagation();
if (event.ctrlKey || event.metaKey) {
navigator.clipboard
.writeText(target.getPath())
.then(() => toast.success(infoMsg.pathReady))
.catch(console.error);
} else {
setLocation(target.getPath());
}
}
return (
<div
className={clsx(
'max-w-40 sm:max-w-60 flex flex-col text:xs sm:text-sm select-none cc-side-location',
isVisible && 'open min-w-[10rem] sm:min-w-[15rem]'
)}
>
<div className='h-8 flex justify-between items-center pr-1 pl-0.5'>
<BadgeHelp topic={HelpTopic.UI_LIBRARY} contentClass='text-sm' offset={5} place='right-start' />
<div className='cc-icons'>
{canRename ? (
<MiniButton
titleHtml='<b>Редактирование пути</b><br/>Перемещаются только Ваши схемы<br/>в указанной папке (и подпапках)'
aria-label='Редактирование расположения'
icon={<IconFolderEdit size='1.25rem' className='icon-primary' />}
onClick={onRenameLocation}
/>
) : null}
{!!location ? (
<MiniButton
title={subfolders ? 'Вложенные папки: Вкл' : 'Вложенные папки: Выкл'}
aria-label='Переключатель отображения вложенных папок'
icon={<IconShowSubfolders value={subfolders} />}
onClick={toggleSubfolders}
/>
) : null}
<MiniButton
title='Переключение в режим Таблица'
icon={<IconFolderTree size='1.25rem' className='text-primary' />}
onClick={toggleFolderMode}
/>
</div>
</div>
<SelectLocation
value={location}
prefix={prefixes.folders_list}
onClick={handleClickFolder}
style={{ maxHeight: maxHeight }}
/>
</div>
);
}