Deskripsi: - fitur ganti mode tema - penerapan tema pada semua fitur NO Issues
90 lines
2.5 KiB
TypeScript
90 lines
2.5 KiB
TypeScript
import Styles from "@/constants/Styles";
|
|
import { apiGetDivisionOneFeature } from "@/lib/api";
|
|
import { useAuthSession } from "@/providers/AuthProvider";
|
|
import { router, useLocalSearchParams } from "expo-router";
|
|
import { useEffect, useState } from "react";
|
|
import { View } from "react-native";
|
|
import Text from "../Text";
|
|
import DiscussionItem from "../discussionItem";
|
|
import Skeleton from "../skeleton";
|
|
import { useTheme } from "@/providers/ThemeProvider";
|
|
|
|
type Props = {
|
|
id: string;
|
|
title: string;
|
|
desc: string;
|
|
user: string;
|
|
date: string;
|
|
};
|
|
|
|
export default function DiscussionDivisionDetail({ refreshing }: { refreshing: boolean }) {
|
|
const { colors } = useTheme();
|
|
const { token, decryptToken } = useAuthSession();
|
|
const { id } = useLocalSearchParams<{ id: string }>();
|
|
const [data, setData] = useState<Props[]>([]);
|
|
const [loading, setLoading] = useState(true)
|
|
|
|
async function handleLoad(loading: boolean) {
|
|
try {
|
|
setLoading(loading)
|
|
const hasil = await decryptToken(String(token?.current));
|
|
const response = await apiGetDivisionOneFeature({
|
|
user: hasil,
|
|
id,
|
|
cat: "new-discussion",
|
|
});
|
|
setData(response.data);
|
|
} catch (error) {
|
|
console.error(error);
|
|
} finally {
|
|
setLoading(false)
|
|
}
|
|
}
|
|
|
|
useEffect(() => {
|
|
if (refreshing)
|
|
handleLoad(false)
|
|
}, [refreshing])
|
|
|
|
useEffect(() => {
|
|
handleLoad(true)
|
|
}, [])
|
|
|
|
|
|
return (
|
|
<View style={[Styles.mb15]}>
|
|
<Text style={[Styles.textDefaultSemiBold, Styles.mv10]}>Diskusi</Text>
|
|
<View style={[Styles.wrapPaper, { backgroundColor: colors.card, borderColor: colors.background }]}>
|
|
|
|
{
|
|
loading ?
|
|
<>
|
|
<Skeleton width={100} height={70} borderRadius={10} widthType="percent" />
|
|
<Skeleton width={100} height={70} borderRadius={10} widthType="percent" />
|
|
</>
|
|
:
|
|
data.length > 0 ? (
|
|
data.map((item, index) => (
|
|
<DiscussionItem
|
|
key={index}
|
|
title={item.desc}
|
|
user={item.user}
|
|
date={item.date}
|
|
onPress={() => {
|
|
router.push(`/division/${id}/discussion/${item.id}`);
|
|
}}
|
|
/>
|
|
))
|
|
) : (
|
|
<Text
|
|
style={[Styles.textDefault, Styles.cGray, { textAlign: "center" }]}
|
|
>
|
|
Tidak ada diskusi
|
|
</Text>
|
|
)
|
|
}
|
|
</View>
|
|
</View>
|
|
);
|
|
}
|