Deskripsi: - update button save pada tambah edit project - ui edit tugas dan tanggal project - modal menu detail tugas dan tanggal - modal menu detail file - modal menu detail anggota project No Issues
88 lines
3.5 KiB
TypeScript
88 lines
3.5 KiB
TypeScript
import Styles from "@/constants/Styles";
|
|
import { MaterialCommunityIcons } from "@expo/vector-icons";
|
|
import { useState } from "react";
|
|
import { Image, Text, ToastAndroid, View } from "react-native";
|
|
import AlertKonfirmasi from "./alertKonfirmasi";
|
|
import BorderBottomItem from "./borderBottomItem";
|
|
import DrawerBottom from "./drawerBottom";
|
|
import MenuItemRow from "./menuItemRow";
|
|
import { router } from "expo-router";
|
|
|
|
export default function SectionMember() {
|
|
const [isModal, setModal] = useState(false)
|
|
|
|
return (
|
|
<>
|
|
<View style={[Styles.mb15]}>
|
|
<View style={[Styles.rowSpaceBetween, Styles.mv05]}>
|
|
<Text style={[Styles.textDefaultSemiBold]}>Anggota</Text>
|
|
<Text style={[Styles.textDefault]}>Total 5 Anggota</Text>
|
|
</View>
|
|
|
|
<View style={[Styles.wrapPaper]}>
|
|
<BorderBottomItem
|
|
borderType="bottom"
|
|
icon={<Image source={require("../assets/images/user.jpeg")} style={[Styles.userProfileSmall]} />}
|
|
title="Amalia Dwi"
|
|
subtitle="Dinas - Bendahara"
|
|
rightTopInfo="Anggota"
|
|
onPress={() => { setModal(true) }}
|
|
/>
|
|
<BorderBottomItem
|
|
borderType="bottom"
|
|
icon={<Image source={require("../assets/images/user.jpeg")} style={[Styles.userProfileSmall]} />}
|
|
title="Amalia Dwi"
|
|
subtitle="Dinas - Bendahara"
|
|
rightTopInfo="Anggota"
|
|
onPress={() => { setModal(true) }}
|
|
/>
|
|
<BorderBottomItem
|
|
borderType="bottom"
|
|
icon={<Image source={require("../assets/images/user.jpeg")} style={[Styles.userProfileSmall]} />}
|
|
title="Amalia Dwi"
|
|
subtitle="Dinas - Bendahara"
|
|
rightTopInfo="Anggota"
|
|
onPress={() => { setModal(true) }}
|
|
/>
|
|
<BorderBottomItem
|
|
borderType="bottom"
|
|
icon={<Image source={require("../assets/images/user.jpeg")} style={[Styles.userProfileSmall]} />}
|
|
title="Amalia Dwi"
|
|
subtitle="Dinas - Bendahara"
|
|
rightTopInfo="Anggota"
|
|
onPress={() => { setModal(true) }}
|
|
/>
|
|
</View>
|
|
</View>
|
|
|
|
<DrawerBottom animation="slide" isVisible={isModal} setVisible={setModal} title="Menu">
|
|
<View style={Styles.rowItemsCenter}>
|
|
<MenuItemRow
|
|
icon={<MaterialCommunityIcons name="account-eye" color="black" size={25} />}
|
|
title="Lihat Profil"
|
|
onPress={() => {
|
|
setModal(false)
|
|
router.push('/member/123')
|
|
}}
|
|
/>
|
|
|
|
<MenuItemRow
|
|
icon={<MaterialCommunityIcons name="account-remove" color="black" size={25} />}
|
|
title="Keluarkan"
|
|
onPress={() => {
|
|
AlertKonfirmasi({
|
|
title: 'Konfirmasi',
|
|
desc: 'Apakah Anda yakin ingin mengeluarkan anggota?',
|
|
onPress: () => {
|
|
setModal(false)
|
|
ToastAndroid.show('Berhasil mengeluarkan anggota', ToastAndroid.SHORT)
|
|
}
|
|
})
|
|
|
|
}}
|
|
/>
|
|
</View>
|
|
</DrawerBottom>
|
|
</>
|
|
)
|
|
} |