74 lines
2.9 KiB
TypeScript
74 lines
2.9 KiB
TypeScript
import Styles from "@/constants/Styles"
|
|
import { apiUpdateStatusDivision } from "@/lib/api"
|
|
import { setUpdateDivision } from "@/lib/divisionUpdate"
|
|
import { useAuthSession } from "@/providers/AuthProvider"
|
|
import { MaterialCommunityIcons } from "@expo/vector-icons"
|
|
import { router } from "expo-router"
|
|
import { useState } from "react"
|
|
import { View } from "react-native"
|
|
import Toast from "react-native-toast-message"
|
|
import { useDispatch, useSelector } from "react-redux"
|
|
import AlertKonfirmasi from "../alertKonfirmasi"
|
|
import ButtonMenuHeader from "../buttonMenuHeader"
|
|
import DrawerBottom from "../drawerBottom"
|
|
import MenuItemRow from "../menuItemRow"
|
|
|
|
type Props = {
|
|
id: string | string[]
|
|
active: boolean | undefined
|
|
}
|
|
|
|
export default function HeaderRightDivisionInfo({ id, active }: Props) {
|
|
const [isVisible, setVisible] = useState(false)
|
|
const { token, decryptToken } = useAuthSession()
|
|
const update = useSelector((state: any) => state.divisionUpdate)
|
|
const dispatch = useDispatch()
|
|
|
|
async function handleUpdateStatus() {
|
|
try {
|
|
const hasil = await decryptToken(String(token?.current))
|
|
const response = await apiUpdateStatusDivision({ data: { user: hasil, isActive: Boolean(active) }, id: String(id) })
|
|
if (response.success) {
|
|
dispatch(setUpdateDivision(!update))
|
|
Toast.show({ type: 'small', text1: 'Berhasil mengubah status', })
|
|
} else {
|
|
Toast.show({ type: 'small', text1: response.message, })
|
|
}
|
|
} catch (error) {
|
|
console.error(error)
|
|
Toast.show({ type: 'small', text1: 'Terjadi kesalahan', })
|
|
} finally {
|
|
setVisible(false)
|
|
}
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<ButtonMenuHeader onPress={() => { setVisible(true) }} />
|
|
<DrawerBottom animation="slide" isVisible={isVisible} setVisible={setVisible} title="Menu">
|
|
<View style={Styles.rowItemsCenter}>
|
|
<MenuItemRow
|
|
icon={<MaterialCommunityIcons name="pencil-outline" color="black" size={25} />}
|
|
title="Edit Divisi"
|
|
onPress={() => {
|
|
setVisible(false)
|
|
router.push(`/division/${id}/edit`)
|
|
}}
|
|
/>
|
|
<MenuItemRow
|
|
icon={<MaterialCommunityIcons name="toggle-switch-off-outline" color="black" size={25} />}
|
|
title={active ? "Non Aktifkan" : "Aktifkan"}
|
|
onPress={() => {
|
|
setVisible(false)
|
|
AlertKonfirmasi({
|
|
title: 'Konfirmasi',
|
|
desc: active ? 'Apakah anda yakin ingin menonaktifkan divisi?' : 'Apakah anda yakin ingin mengaktifkan divisi?',
|
|
onPress: () => { handleUpdateStatus() }
|
|
})
|
|
}}
|
|
/>
|
|
</View>
|
|
</DrawerBottom>
|
|
</>
|
|
)
|
|
} |