ConceptPortal-public/rsconcept/frontend/src/pages/RSFormPage/elements/ViewSideConstituents.tsx

228 lines
7.3 KiB
TypeScript
Raw Normal View History

2023-09-10 20:17:18 +03:00
import { useCallback, useLayoutEffect, useMemo, useState } from 'react';
2023-07-25 20:27:29 +03:00
2023-09-10 20:17:18 +03:00
import DataTable, { createColumnHelper, IConditionalStyle, VisibilityState } from '../../../components/DataTable';
2023-07-28 00:03:37 +03:00
import { useRSForm } from '../../../context/RSFormContext';
import { useConceptTheme } from '../../../context/ThemeContext';
2023-07-28 00:03:37 +03:00
import useLocalStorage from '../../../hooks/useLocalStorage';
2023-09-10 20:17:18 +03:00
import useWindowSize from '../../../hooks/useWindowSize';
import { prefixes } from '../../../utils/constants';
import { applyGraphFilter, CstMatchMode, CstType, DependencyMode, extractGlobals, IConstituenta, matchConstituenta } from '../../../utils/models';
import { getCstDescription, getCstStatusFgColor, getMockConstituenta } from '../../../utils/staticUI';
2023-07-30 16:48:25 +03:00
import ConstituentaTooltip from './ConstituentaTooltip';
import DependencyModePicker from './DependencyModePicker';
import MatchModePicker from './MatchModePicker';
2023-07-20 17:11:03 +03:00
// Height that should be left to accomodate navigation panel + bottom margin
2023-08-27 15:39:49 +03:00
const LOCAL_NAVIGATION_H = '2.1rem';
2023-09-10 20:17:18 +03:00
// Window width cutoff for expression show
const COLUMN_EXPRESSION_HIDE_THRESHOLD = 1500;
2023-07-28 00:03:37 +03:00
interface ViewSideConstituentsProps {
2023-07-20 17:11:03 +03:00
expression: string
baseHeight: string
activeID?: number
onOpenEdit: (cstID: number) => void
}
function isMockCst(cst: IConstituenta) {
return cst.id <= 0;
2023-07-20 17:11:03 +03:00
}
const columnHelper = createColumnHelper<IConstituenta>();
function ViewSideConstituents({ expression, baseHeight, activeID, onOpenEdit }: ViewSideConstituentsProps) {
2023-09-10 20:17:18 +03:00
const windowSize = useWindowSize();
2023-08-27 15:39:49 +03:00
const { noNavigation, colors } = useConceptTheme();
const { schema } = useRSForm();
2023-09-10 20:17:18 +03:00
const [columnVisibility, setColumnVisibility] = useState<VisibilityState>({'expression': true})
const [filterMatch, setFilterMatch] = useLocalStorage('side-filter-match', CstMatchMode.ALL);
const [filterText, setFilterText] = useLocalStorage('side-filter-text', '');
const [filterSource, setFilterSource] = useLocalStorage('side-filter-dependency', DependencyMode.ALL);
2023-07-25 20:27:29 +03:00
const [filteredData, setFilteredData] = useState<IConstituenta[]>(schema?.items ?? []);
2023-07-20 17:11:03 +03:00
2023-09-10 20:17:18 +03:00
useLayoutEffect(
() => {
setColumnVisibility(prev => {
const newValue = (windowSize.width ?? 0) >= COLUMN_EXPRESSION_HIDE_THRESHOLD;
if (newValue === prev['expression']) {
return prev;
} else {
return {'expression': newValue}
}
});
}, [windowSize]);
useLayoutEffect(
() => {
2023-07-20 17:11:03 +03:00
if (!schema?.items) {
setFilteredData([]);
return;
}
let filtered: IConstituenta[] = [];
if (filterSource === DependencyMode.EXPRESSION) {
const aliases = extractGlobals(expression);
filtered = schema.items.filter((cst) => aliases.has(cst.alias));
const names = filtered.map(cst => cst.alias)
2023-07-25 20:27:29 +03:00
const diff = Array.from(aliases).filter(name => !names.includes(name));
if (diff.length > 0) {
diff.forEach(
(alias, index) => filtered.push(
getMockConstituenta(
schema.id,
-index,
alias,
CstType.BASE,
'Конституента отсутствует'
)
)
);
}
} else if (!activeID) {
filtered = schema.items
2023-07-20 17:11:03 +03:00
} else {
filtered = applyGraphFilter(schema, activeID, filterSource);
2023-07-20 17:11:03 +03:00
}
if (filterText) {
filtered = filtered.filter((cst) => matchConstituenta(filterText, cst, filterMatch));
}
setFilteredData(filtered);
}, [filterText, setFilteredData, filterSource, expression, schema, filterMatch, activeID]);
2023-07-20 17:11:03 +03:00
const handleRowClicked = useCallback(
2023-07-25 20:27:29 +03:00
(cst: IConstituenta, event: React.MouseEvent<Element, MouseEvent>) => {
if (event.altKey && !isMockCst(cst)) {
onOpenEdit(cst.id);
2023-07-20 17:11:03 +03:00
}
}, [onOpenEdit]);
2023-07-20 17:11:03 +03:00
const handleDoubleClick = useCallback(
(cst: IConstituenta) => {
if (!isMockCst(cst)) {
onOpenEdit(cst.id);
}
}, [onOpenEdit]);
2023-07-20 17:11:03 +03:00
const columns = useMemo(
() => [
columnHelper.accessor('alias', {
id: 'alias',
header: 'Имя',
size: 65,
minSize: 65,
cell: props => {
const cst = props.row.original;
return (<>
<div
id={`${prefixes.cst_list}${cst.alias}`}
className='w-full px-1 text-center rounded-md whitespace-nowrap'
style={{
borderWidth: '1px',
borderColor: getCstStatusFgColor(cst.status, colors),
color: getCstStatusFgColor(cst.status, colors),
fontWeight: 600,
backgroundColor: isMockCst(cst) ? colors.bgWarning : colors.bgInput
}}
>
{cst.alias}
</div>
<ConstituentaTooltip data={cst} anchor={`#${prefixes.cst_list}${cst.alias}`} />
</>);
}
}),
columnHelper.accessor(cst => getCstDescription(cst), {
id: 'description',
header: 'Описание',
2023-09-10 20:17:18 +03:00
size: 500,
minSize: 350,
2023-09-10 20:17:18 +03:00
maxSize: 500,
cell: props =>
<div style={{
fontSize: 12,
color: isMockCst(props.row.original) ? colors.fgWarning : undefined
}}>
{props.getValue()}
</div>
}),
columnHelper.accessor('definition_formal', {
id: 'expression',
header: 'Выражение',
2023-09-10 20:17:18 +03:00
size: 1000,
minSize: 0,
2023-09-10 20:17:18 +03:00
maxSize: 1000,
enableHiding: true,
cell: props =>
<div style={{
fontSize: 12,
color: isMockCst(props.row.original) ? colors.fgWarning : undefined
}}>
{props.getValue()}
</div>
})
2023-08-27 00:19:19 +03:00
], [colors]);
2023-09-10 20:17:18 +03:00
const conditionalRowStyles = useMemo(
(): IConditionalStyle<IConstituenta>[] => [
{
when: (cst: IConstituenta) => cst.id === activeID,
style: {
backgroundColor: colors.bgSelected
},
}
], [activeID, colors]);
const maxHeight = useMemo(
() => {
const siblingHeight = `${baseHeight} - ${LOCAL_NAVIGATION_H}`
return (noNavigation ?
`calc(min(100vh - 5.2rem, ${siblingHeight}))`
: `calc(min(100vh - 8.7rem, ${siblingHeight}))`);
}, [noNavigation, baseHeight]);
return (<>
2023-09-05 23:18:21 +03:00
<div className='sticky top-0 left-0 right-0 flex items-start justify-between w-full gap-1 px-2 py-1 border-b rounded clr-input'>
<MatchModePicker
value={filterMatch}
onChange={setFilterMatch}
/>
<input type='text'
2023-08-27 00:19:19 +03:00
className='w-full px-2 outline-none select-none hover:text-clip clr-input'
placeholder='наберите текст фильтра'
value={filterText}
onChange={event => setFilterText(event.target.value)}
/>
2023-08-24 11:10:04 +03:00
<DependencyModePicker
value={filterSource}
onChange={setFilterSource}
/>
</div>
<div className='overflow-y-auto text-sm' style={{maxHeight : `${maxHeight}`}}>
<DataTable
2023-07-20 17:11:03 +03:00
data={filteredData}
columns={columns}
2023-09-10 20:17:18 +03:00
conditionalRowStyles={conditionalRowStyles}
dense
2023-09-10 20:17:18 +03:00
enableHiding
columnVisibility={columnVisibility}
onColumnVisibilityChange={setColumnVisibility}
noDataComponent={
<span className='flex flex-col justify-center p-2 text-center min-h-[5rem]'>
<p>Список конституент пуст</p>
<p>Измените параметры фильтра</p>
</span>
}
2023-07-20 17:11:03 +03:00
onRowDoubleClicked={handleDoubleClick}
onRowClicked={handleRowClicked}
/>
</div>
</>);
2023-07-20 17:11:03 +03:00
}
2023-07-28 00:03:37 +03:00
export default ViewSideConstituents;