75 lines
2.3 KiB
TypeScript
75 lines
2.3 KiB
TypeScript
'use client'
|
|
import { LayoutNavbarNew, WARNA } from "@/module/_global";
|
|
import LayoutModal from "@/module/_global/layout/layout_modal";
|
|
import { Box, Button, Stack, Textarea, TextInput } from "@mantine/core";
|
|
import { useState } from "react";
|
|
import toast from "react-hot-toast";
|
|
import { HiOutlineChevronRight } from "react-icons/hi2";
|
|
|
|
export default function EditAnnouncement() {
|
|
const [isOpen, setOpen] = useState(false)
|
|
|
|
function onTrue(val: boolean) {
|
|
if (val) {
|
|
toast.success("Sukses! Data tersimpan");
|
|
}
|
|
setOpen(false)
|
|
}
|
|
return (
|
|
<>
|
|
<LayoutNavbarNew back="" title="Edit Pengumuman" menu={<></>} />
|
|
<Stack
|
|
align="center"
|
|
justify="center"
|
|
gap="xs"
|
|
pt={30}
|
|
px={20}
|
|
>
|
|
<TextInput
|
|
size="md" type="text" radius={30} placeholder="Judul Pengumuman" withAsterisk label="Judul" w={"100%"}
|
|
styles={{
|
|
input: {
|
|
color: WARNA.biruTua,
|
|
borderRadius: WARNA.biruTua,
|
|
borderColor: WARNA.biruTua,
|
|
},
|
|
}}
|
|
/>
|
|
<Textarea
|
|
size="md"
|
|
radius={20}
|
|
w={"100%"}
|
|
label="Pengumuman"
|
|
withAsterisk
|
|
placeholder="Deskripsi Pengumuman"
|
|
styles={{
|
|
input: {
|
|
color: WARNA.biruTua,
|
|
borderRadius: WARNA.biruTua,
|
|
borderColor: WARNA.biruTua,
|
|
},
|
|
}}
|
|
/>
|
|
|
|
<Button rightSection={<HiOutlineChevronRight size={14} />} variant="default" fullWidth radius={30} size="md" mt={10}>
|
|
Pilih Anggota
|
|
</Button>
|
|
</Stack>
|
|
<Box mt={30} mx={20}>
|
|
<Button
|
|
c={"white"}
|
|
bg={WARNA.biruTua}
|
|
size="md"
|
|
radius={30}
|
|
fullWidth
|
|
onClick={() => { setOpen(true) }}
|
|
>
|
|
Simpan
|
|
</Button>
|
|
</Box>
|
|
<LayoutModal opened={isOpen} onClose={() => setOpen(false)}
|
|
description="Apakah Anda yakin ingin mengubah data?"
|
|
onYes={(val) => { onTrue(val) }} />
|
|
</>
|
|
)
|
|
} |