Feature: Add : - Collaboration/BoxDetailSection - detail-participant - /detail-project-main Fix: - participant # No Issue
92 lines
2.5 KiB
TypeScript
92 lines
2.5 KiB
TypeScript
import {
|
|
AlertDefaultSystem,
|
|
BackButton,
|
|
ButtonCustom,
|
|
DotButton,
|
|
DrawerCustom,
|
|
MenuDrawerDynamicGrid,
|
|
TextAreaCustom,
|
|
ViewWrapper,
|
|
} from "@/components";
|
|
import Collaboration_BoxDetailSection from "@/screens/Collaboration/BoxDetailSection";
|
|
import { Ionicons } from "@expo/vector-icons";
|
|
import { router, Stack, useLocalSearchParams } from "expo-router";
|
|
import { useState } from "react";
|
|
|
|
export default function CollaborationDetail() {
|
|
const { id } = useLocalSearchParams();
|
|
const [openDrawerPartisipasi, setOpenDrawerPartisipasi] = useState(false);
|
|
const [openDrawerMenu, setOpenDrawerMenu] = useState(false);
|
|
return (
|
|
<>
|
|
<Stack.Screen
|
|
options={{
|
|
title: "Detail Proyek",
|
|
headerLeft: () => <BackButton />,
|
|
headerRight: () => (
|
|
<DotButton onPress={() => setOpenDrawerMenu(true)} />
|
|
),
|
|
}}
|
|
/>
|
|
<ViewWrapper>
|
|
<Collaboration_BoxDetailSection id={id as string} />
|
|
|
|
<ButtonCustom onPress={() => setOpenDrawerPartisipasi(true)}>
|
|
Partisipasi
|
|
</ButtonCustom>
|
|
</ViewWrapper>
|
|
|
|
{/* Drawer Partisipasi */}
|
|
<DrawerCustom
|
|
isVisible={openDrawerPartisipasi}
|
|
closeDrawer={() => setOpenDrawerPartisipasi(false)}
|
|
height={300}
|
|
>
|
|
<TextAreaCustom
|
|
label="Dekripsi diri"
|
|
placeholder="Masukan dekripsi diri"
|
|
required
|
|
showCount
|
|
maxLength={500}
|
|
/>
|
|
|
|
<ButtonCustom
|
|
style={{ alignSelf: "flex-end" }}
|
|
onPress={() => {
|
|
AlertDefaultSystem({
|
|
title: "Simpan data deskripsi",
|
|
message: "Apakah anda sudah yakin ingin menyimpan data ini ?",
|
|
textLeft: "Batal",
|
|
textRight: "Simpan",
|
|
onPressRight: () => router.replace(`/collaboration/(tabs)/group`),
|
|
});
|
|
}}
|
|
>
|
|
Simpan
|
|
</ButtonCustom>
|
|
</DrawerCustom>
|
|
|
|
{/* Drawer Menu */}
|
|
<DrawerCustom
|
|
isVisible={openDrawerMenu}
|
|
closeDrawer={() => setOpenDrawerMenu(false)}
|
|
height={250}
|
|
>
|
|
<MenuDrawerDynamicGrid
|
|
data={[
|
|
{
|
|
icon: <Ionicons name="people" size={24} color="white" />,
|
|
label: "Daftar Partisipan",
|
|
path: `/collaboration/${id}/list-of-participants`,
|
|
},
|
|
]}
|
|
onPressItem={(item) => {
|
|
router.push(item.path as any);
|
|
setOpenDrawerMenu(false);
|
|
}}
|
|
/>
|
|
</DrawerCustom>
|
|
</>
|
|
);
|
|
}
|