ConceptPortal-public/rsconcept/frontend/src/features/library/components/pick-schema.tsx
Ivan c5e41acc31
Some checks failed
Frontend CI / build (22.x) (push) Has been cancelled
Frontend CI / notify-failure (push) Has been cancelled
F: Merge with shadcn styling
Revert "F: Merge with shadcn styling"

This reverts commit b9f8143b3e0a7f4726ab7751757b31532b0834f9.

F: Merge with shadcn styling
2025-04-12 21:49:18 +03:00

160 lines
4.9 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { useState } from 'react';
import { useIntl } from 'react-intl';
import { MiniButton } from '@/components/control';
import { createColumnHelper, DataTable, type IConditionalStyle } from '@/components/data-table';
import { Dropdown, useDropdown } from '@/components/dropdown';
import { IconClose, IconFolderTree } from '@/components/icons';
import { SearchBar } from '@/components/input';
import { type Styling } from '@/components/props';
import { cn } from '@/components/utils';
import { APP_COLORS } from '@/styling/colors';
import { prefixes } from '@/utils/constants';
import { type ILibraryItem, type LibraryItemType } from '../backend/types';
import { matchLibraryItem } from '../models/library-api';
import { SelectLocation } from './select-location';
interface PickSchemaProps extends Styling {
id?: string;
value: number | null;
onChange: (newValue: number) => void;
initialFilter?: string;
rows?: number;
items: ILibraryItem[];
itemType: LibraryItemType;
baseFilter?: (target: ILibraryItem) => boolean;
}
const columnHelper = createColumnHelper<ILibraryItem>();
export function PickSchema({
id,
initialFilter = '',
rows = 4,
items,
itemType,
value,
onChange,
baseFilter,
className,
...restProps
}: PickSchemaProps) {
const intl = useIntl();
const locationMenu = useDropdown();
const [filterText, setFilterText] = useState(initialFilter);
const [filterLocation, setFilterLocation] = useState('');
const baseFiltered = items
.filter(item => item.item_type === itemType && (!baseFilter || baseFilter(item)))
.filter(item => matchLibraryItem(item, filterText));
const filtered =
filterLocation.length > 0
? baseFiltered.filter(item => item.location === filterLocation || item.location.startsWith(`${filterLocation}/`))
: baseFiltered;
const columns = [
columnHelper.accessor('alias', {
id: 'alias',
header: 'Шифр',
size: 150,
minSize: 80,
maxSize: 150
}),
columnHelper.accessor('title', {
id: 'title',
header: 'Название',
size: 1200,
minSize: 200,
maxSize: 1200,
cell: props => <div className='text-ellipsis'>{props.getValue()}</div>
}),
columnHelper.accessor('time_update', {
id: 'time_update',
header: 'Дата',
cell: props => (
<div className='whitespace-nowrap'>
{new Date(props.getValue()).toLocaleString(intl.locale, {
year: '2-digit',
month: '2-digit',
day: '2-digit'
})}
</div>
)
})
];
const conditionalRowStyles: IConditionalStyle<ILibraryItem>[] = [
{
when: (item: ILibraryItem) => item.id === value,
style: { backgroundColor: APP_COLORS.bgSelected }
}
];
function handleLocationClick(event: React.MouseEvent<Element>, newValue: string) {
event.preventDefault();
event.stopPropagation();
locationMenu.hide();
setFilterLocation(newValue);
}
return (
<div className={cn('border divide-y', className)} {...restProps}>
<div className='flex justify-between bg-input items-center pr-1 rounded-t-md'>
<SearchBar
id={id ? `${id}__search` : undefined}
className='grow rounded-t-md'
noBorder
query={filterText}
onChangeQuery={newValue => setFilterText(newValue)}
/>
<div className='relative' ref={locationMenu.ref} onBlur={locationMenu.handleBlur}>
<MiniButton
title='Фильтр по расположению'
icon={<IconFolderTree size='1.25rem' className={!!filterLocation ? 'icon-green' : 'icon-primary'} />}
className='mt-1'
onClick={() => locationMenu.toggle()}
/>
<Dropdown isOpen={locationMenu.isOpen} stretchLeft className='w-80 h-50'>
<SelectLocation
value={filterLocation}
prefix={prefixes.folders_list}
dense
onClick={(event, target) => handleLocationClick(event, target.getPath())}
/>
</Dropdown>
</div>
{filterLocation.length > 0 ? (
<MiniButton
icon={<IconClose size='1.25rem' className='icon-red' />}
title='Сбросить фильтр'
onClick={() => setFilterLocation('')}
/>
) : null}
</div>
<DataTable
id={id}
rows={rows}
dense
noHeader
noFooter
className='text-sm select-none cc-scroll-y'
data={filtered}
columns={columns}
conditionalRowStyles={conditionalRowStyles}
noDataComponent={
<div className='cc-column dense p-3 items-center min-h-24'>
<p>Список схем пуст</p>
<p>Измените параметры фильтра</p>
</div>
}
onRowClicked={rowData => onChange(rowData.id)}
/>
</div>
);
}