Deskripsi: - tampilan section link pada project dan tugas divisi - tampilan tambah link pada project dan tugas divisi - integrasi api tambah data link pada project dan tugas divisi - integrasi api hapus data link pada project dan tugas divisi No Issues
213 lines
7.7 KiB
TypeScript
213 lines
7.7 KiB
TypeScript
import Styles from "@/constants/Styles"
|
|
import { apiAddLinkTask, apiDeleteTask, apiGetDivisionOneFeature } from "@/lib/api"
|
|
import { setUpdateTask } from "@/lib/taskUpdate"
|
|
import { useAuthSession } from "@/providers/AuthProvider"
|
|
import { AntDesign, Feather, Ionicons, MaterialCommunityIcons, MaterialIcons } from "@expo/vector-icons"
|
|
import { router } from "expo-router"
|
|
import { useEffect, 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 { InputForm } from "../inputForm"
|
|
import MenuItemRow from "../menuItemRow"
|
|
import ModalFloat from "../modalFloat"
|
|
|
|
type Props = {
|
|
id: string | string[]
|
|
division: string
|
|
status: number | undefined
|
|
}
|
|
|
|
export default function HeaderRightTaskDetail({ id, division, status }: Props) {
|
|
const { token, decryptToken } = useAuthSession()
|
|
const [isVisible, setVisible] = useState(false)
|
|
const entityUser = useSelector((state: any) => state.user);
|
|
const [isMemberDivision, setIsMemberDivision] = useState(false);
|
|
const [isAdminDivision, setIsAdminDivision] = useState(false);
|
|
const dispatch = useDispatch()
|
|
const update = useSelector((state: any) => state.taskUpdate)
|
|
const [isAddLink, setAddLink] = useState(false)
|
|
const [link, setLink] = useState("")
|
|
|
|
async function handleCheckMember() {
|
|
try {
|
|
const hasil = await decryptToken(String(token?.current));
|
|
const response = await apiGetDivisionOneFeature({
|
|
id: division,
|
|
user: hasil,
|
|
cat: "check-member",
|
|
});
|
|
|
|
setIsMemberDivision(response.data);
|
|
|
|
const response2 = await apiGetDivisionOneFeature({
|
|
id: division,
|
|
user: hasil,
|
|
cat: "check-admin",
|
|
});
|
|
setIsAdminDivision(response2.data);
|
|
} catch (error) {
|
|
console.error(error);
|
|
}
|
|
}
|
|
|
|
useEffect(() => {
|
|
handleCheckMember()
|
|
}, [])
|
|
|
|
async function handleDelete() {
|
|
try {
|
|
const hasil = await decryptToken(String(token?.current))
|
|
const response = await apiDeleteTask({ user: hasil }, String(id))
|
|
if (response.success) {
|
|
dispatch(setUpdateTask({ ...update, data: !update.data }))
|
|
Toast.show({ type: 'small', text1: 'Berhasil menghapus tugas', })
|
|
router.back()
|
|
} else {
|
|
Toast.show({ type: 'small', text1: response.message, })
|
|
}
|
|
} catch (error) {
|
|
console.error(error)
|
|
} finally {
|
|
setVisible(false)
|
|
}
|
|
}
|
|
|
|
async function handleAddLink() {
|
|
try {
|
|
const hasil = await decryptToken(String(token?.current))
|
|
const response = await apiAddLinkTask({ user: hasil, link, idDivision: division }, String(id))
|
|
if (response.success) {
|
|
dispatch(setUpdateTask({ ...update, link: !update.link }))
|
|
Toast.show({ type: 'small', text1: 'Berhasil menambahkan link', })
|
|
} else {
|
|
Toast.show({ type: 'small', text1: 'Gagal menambahkan link', })
|
|
}
|
|
} catch (error) {
|
|
console.error(error)
|
|
} finally {
|
|
setAddLink(false)
|
|
}
|
|
}
|
|
|
|
return (
|
|
<>
|
|
{
|
|
(entityUser.role == "user" || entityUser.role == "coadmin") && !isMemberDivision
|
|
? <></>
|
|
:
|
|
<ButtonMenuHeader onPress={() => { setVisible(true) }} />
|
|
}
|
|
<DrawerBottom animation="slide" isVisible={isVisible} setVisible={setVisible} title="Menu">
|
|
<View style={Styles.rowItemsCenter}>
|
|
<MenuItemRow
|
|
icon={<AntDesign name="pluscircle" color="black" size={25} />}
|
|
title="Tambah Tugas"
|
|
onPress={() => {
|
|
if (status == 3) return
|
|
setVisible(false)
|
|
router.push(`./${id}/add-task`)
|
|
}}
|
|
disabled={status == 3}
|
|
/>
|
|
<MenuItemRow
|
|
icon={<MaterialCommunityIcons name="file-plus" color="black" size={25} />}
|
|
title="Tambah File"
|
|
onPress={() => {
|
|
if (status == 3) return
|
|
setVisible(false)
|
|
router.push(`./${id}/add-file`)
|
|
}}
|
|
disabled={status == 3}
|
|
/>
|
|
|
|
<MenuItemRow
|
|
icon={<Feather name="link" color="black" size={25} />}
|
|
title="Tambah Link"
|
|
onPress={() => {
|
|
if (status == 3) return
|
|
setVisible(false)
|
|
setTimeout(() => {
|
|
setAddLink(true)
|
|
}, 600)
|
|
}}
|
|
disabled={status == 3}
|
|
/>
|
|
</View>
|
|
|
|
{
|
|
((entityUser.role != "user" && entityUser.role != "coadmin") || isAdminDivision)
|
|
&&
|
|
<View style={[Styles.rowItemsCenter, Styles.mt15]}>
|
|
<MenuItemRow
|
|
icon={<MaterialIcons name="groups" color="black" size={25} />}
|
|
title="Tambah Anggota"
|
|
onPress={() => {
|
|
if (status == 3) return
|
|
setVisible(false)
|
|
router.push(`./${id}/add-member`)
|
|
}}
|
|
disabled={status == 3}
|
|
/>
|
|
<MenuItemRow
|
|
icon={<MaterialCommunityIcons name="pencil-outline" color="black" size={25} />}
|
|
title="Edit"
|
|
onPress={() => {
|
|
if (status == 3) return
|
|
setVisible(false)
|
|
router.push(`./${id}/edit`)
|
|
}}
|
|
disabled={status == 3}
|
|
/>
|
|
{
|
|
status == 3
|
|
?
|
|
<MenuItemRow
|
|
icon={<Ionicons name="trash" color="black" size={25} />}
|
|
title="Hapus"
|
|
onPress={() => {
|
|
setVisible(false)
|
|
AlertKonfirmasi({
|
|
title: 'Konfirmasi',
|
|
desc: 'Apakah Anda yakin ingin menghapus tugas ini? Tugas yang dihapus tidak dapat dikembalikan',
|
|
onPress: () => { handleDelete() }
|
|
})
|
|
}}
|
|
/>
|
|
|
|
:
|
|
<MenuItemRow
|
|
icon={<MaterialIcons name="close" color="black" size={25} />}
|
|
title="Batal"
|
|
onPress={() => {
|
|
setVisible(false)
|
|
router.push(`./${id}/cancel`)
|
|
}}
|
|
/>
|
|
}
|
|
</View>
|
|
}
|
|
</DrawerBottom>
|
|
|
|
<ModalFloat
|
|
title="Tambah Link"
|
|
isVisible={isAddLink}
|
|
setVisible={() => { setAddLink(false) }}
|
|
onSubmit={() => { handleAddLink() }}
|
|
disableSubmit={link == ""}
|
|
>
|
|
<View>
|
|
<InputForm
|
|
type="default"
|
|
placeholder="Masukkan link"
|
|
value={link}
|
|
onChange={(text) => { setLink(text) }}
|
|
/>
|
|
</View>
|
|
</ModalFloat>
|
|
</>
|
|
)
|
|
} |