import Button, { EButtonVariant } from "@Front/Components/DesignSystem/Button"; import Form from "@Front/Components/DesignSystem/Form"; import InputField from "@Front/Components/DesignSystem/Form/Elements/InputField"; import Select, { IOption } from "@Front/Components/DesignSystem/Select"; import Typography, { ITypo } from "@Front/Components/DesignSystem/Typography"; import BackArrow from "@Front/Components/Elements/BackArrow"; import DefaultNotaryDashboard, { IDashBoardFolder } from "@Front/Components/LayoutTemplates/DefaultNotaryDashboard"; import { useRouter } from "next/router"; import BasePage from "../../Base"; import classes from "./classes.module.scss"; import Link from "next/link"; import Module from "@Front/Config/Module"; type IProps = { selectedFolderUid: string; }; type IState = { selectedFolder: IDashBoardFolder | null; selectedOption?: IOption; }; 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