Deskripsi: - update tema mode light dan dark pada fitur banner, lembaga desa, jabatan, anggota, dan diskusi umum
132 lines
5.1 KiB
TypeScript
132 lines
5.1 KiB
TypeScript
import Styles from "@/constants/Styles";
|
|
import { apiDeleteLinkTask, apiGetTaskOne } from "@/lib/api";
|
|
import { urlCompleted } from "@/lib/fun_urlCompleted";
|
|
import { setUpdateTask } from "@/lib/taskUpdate";
|
|
import { useAuthSession } from "@/providers/AuthProvider";
|
|
import { useTheme } from "@/providers/ThemeProvider";
|
|
import { Feather, Ionicons } from "@expo/vector-icons";
|
|
import { useLocalSearchParams } from "expo-router";
|
|
import { useEffect, useState } from "react";
|
|
import { Linking, View } from "react-native";
|
|
import Toast from "react-native-toast-message";
|
|
import { useDispatch, useSelector } from "react-redux";
|
|
import AlertKonfirmasi from "../alertKonfirmasi";
|
|
import BorderBottomItem from "../borderBottomItem";
|
|
import DrawerBottom from "../drawerBottom";
|
|
import MenuItemRow from "../menuItemRow";
|
|
import Text from "../Text";
|
|
|
|
type Props = {
|
|
id: string
|
|
link: string
|
|
}
|
|
|
|
export default function SectionLinkTask({ refreshing, isMemberDivision }: { refreshing: boolean, isMemberDivision: boolean }) {
|
|
const { colors } = useTheme()
|
|
const [isModal, setModal] = useState(false)
|
|
const { token, decryptToken } = useAuthSession()
|
|
const { detail } = useLocalSearchParams<{ detail: string }>()
|
|
const [data, setData] = useState<Props[]>([])
|
|
const update = useSelector((state: any) => state.taskUpdate)
|
|
const dispatch = useDispatch()
|
|
const [selectLink, setSelectLink] = useState<Props | null>(null)
|
|
const entityUser = useSelector((state: any) => state.user);
|
|
|
|
async function handleLoad() {
|
|
try {
|
|
const hasil = await decryptToken(String(token?.current))
|
|
const response = await apiGetTaskOne({ id: detail, user: hasil, cat: 'link' })
|
|
setData(response.data)
|
|
} catch (error) {
|
|
console.error(error)
|
|
}
|
|
}
|
|
|
|
useEffect(() => {
|
|
handleLoad()
|
|
}, [update.link])
|
|
|
|
useEffect(() => {
|
|
if (refreshing)
|
|
handleLoad();
|
|
}, [refreshing]);
|
|
|
|
async function handleDelete() {
|
|
try {
|
|
const hasil = await decryptToken(String(token?.current));
|
|
const response = await apiDeleteLinkTask({ user: hasil, idLink: String(selectLink?.id) }, String(detail));
|
|
if (response.success) {
|
|
Toast.show({ type: 'small', text1: 'Berhasil menghapus link', })
|
|
dispatch(setUpdateTask({ ...update, link: !update.link }))
|
|
} else {
|
|
Toast.show({ type: 'small', text1: response.message, })
|
|
}
|
|
} catch (error) {
|
|
console.error(error);
|
|
Toast.show({ type: 'small', text1: 'Terjadi kesalahan', })
|
|
} finally {
|
|
setModal(false)
|
|
}
|
|
}
|
|
|
|
return (
|
|
<>
|
|
{
|
|
data.length > 0 &&
|
|
<>
|
|
<View style={[Styles.mb15]}>
|
|
<Text style={[Styles.textDefaultSemiBold, Styles.mv05]}>Link</Text>
|
|
<View style={[Styles.wrapPaper, { backgroundColor: colors.card, borderColor: colors.background }]}>
|
|
{
|
|
data.map((item, index) => {
|
|
return (
|
|
<BorderBottomItem
|
|
key={index}
|
|
borderType="all"
|
|
icon={<Feather name="link" size={25} color={colors.text} />}
|
|
title={item.link}
|
|
titleWeight="normal"
|
|
onPress={() => { setSelectLink(item); setModal(true) }}
|
|
width={65}
|
|
/>
|
|
)
|
|
})
|
|
}
|
|
</View>
|
|
</View>
|
|
|
|
<DrawerBottom animation="slide" isVisible={isModal} setVisible={setModal} title="Menu">
|
|
<View style={Styles.rowItemsCenter}>
|
|
<MenuItemRow
|
|
icon={<Feather name="external-link" color={colors.text} size={25} />}
|
|
title="Buka Link"
|
|
onPress={() => {
|
|
Linking.openURL(urlCompleted(String(selectLink?.link)))
|
|
}}
|
|
/>
|
|
{
|
|
(entityUser.role != "user" && entityUser.role != "coadmin") || isMemberDivision
|
|
?
|
|
<MenuItemRow
|
|
icon={<Ionicons name="trash-outline" color={colors.text} size={25} />}
|
|
title="Hapus"
|
|
onPress={() => {
|
|
setModal(false)
|
|
AlertKonfirmasi({
|
|
title: 'Konfirmasi',
|
|
desc: 'Apakah Anda yakin ingin menghapus link ini? Link yang dihapus tidak dapat dikembalikan',
|
|
onPress: () => { handleDelete() }
|
|
})
|
|
}}
|
|
/>
|
|
:
|
|
<></>
|
|
}
|
|
|
|
</View>
|
|
</DrawerBottom>
|
|
</>
|
|
}
|
|
</>
|
|
)
|
|
} |