mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-26 04:50:36 +03:00
89 lines
2.7 KiB
TypeScript
89 lines
2.7 KiB
TypeScript
'use client';
|
||
|
||
import clsx from 'clsx';
|
||
import { useState } from 'react';
|
||
import { TabList, TabPanel, Tabs } from 'react-tabs';
|
||
|
||
import Modal from '@/components/ui/Modal';
|
||
import TabLabel from '@/components/ui/TabLabel';
|
||
import { ReferenceType } from '@/models/language';
|
||
import { HelpTopic } from '@/models/miscellaneous';
|
||
import { IRSForm } from '@/models/rsform';
|
||
import { useDialogsStore } from '@/stores/dialogs';
|
||
import { labelReferenceType } from '@/utils/labels';
|
||
|
||
import TabEntityReference from './TabEntityReference';
|
||
import TabSyntacticReference from './TabSyntacticReference';
|
||
|
||
export interface IReferenceInputState {
|
||
type: ReferenceType;
|
||
refRaw?: string;
|
||
text?: string;
|
||
mainRefs: string[];
|
||
basePosition: number;
|
||
}
|
||
|
||
export interface DlgEditReferenceProps {
|
||
schema: IRSForm;
|
||
initial: IReferenceInputState;
|
||
onSave: (newRef: string) => void;
|
||
}
|
||
|
||
export enum TabID {
|
||
ENTITY = 0,
|
||
SYNTACTIC = 1
|
||
}
|
||
|
||
function DlgEditReference() {
|
||
const { schema, initial, onSave } = useDialogsStore(state => state.props as DlgEditReferenceProps);
|
||
const [activeTab, setActiveTab] = useState(initial.type === ReferenceType.ENTITY ? TabID.ENTITY : TabID.SYNTACTIC);
|
||
const [reference, setReference] = useState('');
|
||
const [isValid, setIsValid] = useState(false);
|
||
|
||
function handleSubmit() {
|
||
onSave(reference);
|
||
return true;
|
||
}
|
||
|
||
return (
|
||
<Modal
|
||
header='Редактирование ссылки'
|
||
submitText='Сохранить ссылку'
|
||
canSubmit={isValid}
|
||
onSubmit={handleSubmit}
|
||
className='w-[40rem] px-6 h-[32rem]'
|
||
helpTopic={HelpTopic.TERM_CONTROL}
|
||
>
|
||
<Tabs
|
||
selectedTabClassName='clr-selected'
|
||
className='flex flex-col'
|
||
selectedIndex={activeTab}
|
||
onSelect={setActiveTab}
|
||
>
|
||
<TabList className={clsx('mb-3 self-center', 'flex', 'border divide-x rounded-none', 'bg-prim-200')}>
|
||
<TabLabel title='Отсылка на термин в заданной словоформе' label={labelReferenceType(ReferenceType.ENTITY)} />
|
||
<TabLabel
|
||
title='Установление синтаксической связи с отсылкой на термин'
|
||
label={labelReferenceType(ReferenceType.SYNTACTIC)}
|
||
/>
|
||
</TabList>
|
||
|
||
<TabPanel>
|
||
<TabEntityReference
|
||
initial={initial}
|
||
schema={schema}
|
||
onChangeReference={setReference}
|
||
onChangeValid={setIsValid}
|
||
/>
|
||
</TabPanel>
|
||
|
||
<TabPanel>
|
||
<TabSyntacticReference initial={initial} onChangeReference={setReference} onChangeValid={setIsValid} />
|
||
</TabPanel>
|
||
</Tabs>
|
||
</Modal>
|
||
);
|
||
}
|
||
|
||
export default DlgEditReference;
|