72 lines
2.5 KiB
TypeScript
72 lines
2.5 KiB
TypeScript
'use client'
|
|
import colors from '@/con/colors';
|
|
import { Box, Button, Group, Paper, Stack, Text, TextInput, Title } from '@mantine/core';
|
|
import { IconArrowBack } from '@tabler/icons-react';
|
|
import { useRouter } from 'next/navigation';
|
|
import { useProxy } from 'valtio/utils';
|
|
import CreateEditor from '../../../_com/createEditor';
|
|
import programKreatifState from '../../../_state/inovasi/program-kreatif';
|
|
import SelectIconProgram from '../../../_com/selectIcon';
|
|
|
|
|
|
function CreateProgramKreatifDesa() {
|
|
const stateCreate = useProxy(programKreatifState)
|
|
const router = useRouter();
|
|
|
|
const resetForm = () => {
|
|
stateCreate.create.form = {
|
|
name: "",
|
|
slug: "",
|
|
deskripsi: "",
|
|
icon: "",
|
|
}
|
|
}
|
|
|
|
const handleSubmit = async () => {
|
|
await stateCreate.create.create();
|
|
resetForm();
|
|
router.push("/admin/inovasi/program-kreatif-desa")
|
|
}
|
|
return (
|
|
<Box>
|
|
<Box mb={10}>
|
|
<Button onClick={() => router.back()} variant='subtle' color={'blue'}>
|
|
<IconArrowBack color={colors['blue-button']} size={25} />
|
|
</Button>
|
|
</Box>
|
|
|
|
<Paper w={{ base: '100%', md: '50%' }} bg={colors['white-1']} p={'md'}>
|
|
<Stack gap={"xs"}>
|
|
<Title order={3}>Create Program Kreatif Desa</Title>
|
|
<TextInput
|
|
label={<Text fz={"sm"} fw={"bold"}>Nama Program Kreatif Desa</Text>}
|
|
placeholder="masukkan nama program kreatif desa"
|
|
onChange={(val) => stateCreate.create.form.name = val.target.value}
|
|
/>
|
|
<Box>
|
|
<Text fz={"sm"} fw={"bold"}>Ikon Program Kreatif Desa</Text>
|
|
<SelectIconProgram onChange={(value) => stateCreate.create.form.icon = value} />
|
|
</Box>
|
|
<TextInput
|
|
onChange={(e) => stateCreate.create.form.slug = e.currentTarget.value}
|
|
label={<Text fw={"bold"} fz={"sm"}>Deskripsi Singkat Program Kreatif Desa</Text>}
|
|
placeholder='Masukkan deskripsi singkat program kreatif desa'
|
|
/>
|
|
<Box>
|
|
<Text fw={"bold"} fz={"sm"}>Deskripsi Program Kreatif Desa</Text>
|
|
<CreateEditor
|
|
value={stateCreate.create.form.deskripsi}
|
|
onChange={(htmlContent) => stateCreate.create.form.deskripsi = htmlContent}
|
|
/>
|
|
</Box>
|
|
<Group>
|
|
<Button bg={colors['blue-button']} onClick={handleSubmit}>Submit</Button>
|
|
</Group>
|
|
</Stack>
|
|
</Paper>
|
|
</Box>
|
|
);
|
|
}
|
|
|
|
export default CreateProgramKreatifDesa;
|