import Button, { EButtonstyletype, EButtonVariant } from "@Front/Components/DesignSystem/Button"; import Form from "@Front/Components/DesignSystem/Form"; import Select, { IOptionOld } from "@Front/Components/DesignSystem/Form/SelectFieldOld"; import TextField from "@Front/Components/DesignSystem/Form/TextField"; import Typography, { ETypo } from "@Front/Components/DesignSystem/Typography"; import BackArrow from "@Front/Components/Elements/BackArrow"; import DefaultNotaryDashboard from "@Front/Components/LayoutTemplates/DefaultNotaryDashboard"; import Module from "@Front/Config/Module"; import { OfficeFolder } from "le-coffre-resources/dist/Notary"; import Link from "next/link"; import { useRouter } from "next/router"; import BasePage from "../../Base"; import classes from "./classes.module.scss"; type IProps = { selectedFolderUid: string; }; type IState = { selectedFolder: OfficeFolder | null; selectedOption?: IOptionOld; }; class UpdateFolderMetadataClass extends BasePage { constructor(props: IProps) { super(props); this.state = { selectedFolder: null, }; this.onSelectedFolder = this.onSelectedFolder.bind(this); this.onSelectedOption = this.onSelectedOption.bind(this); } public override render(): JSX.Element { const selectOptions = [ { value: "adazzdsqaad", label: "Acte de mariage" }, { value: "adazzqsdaad", label: "Vente immobilière" }, { value: "adazzqsdaad", label: "Acte de divorce" }, ]; const backwardPath = Module.getInstance() .get() .modules.pages.Folder.pages.FolderInformation.props.path.replace("[folderUid]", this.props.selectedFolderUid); return (
Modifier les informations du dossier