- SectionProgress: progress bar animated, badge persentase, label status, task count - SectionReport: header ikon, left accent border, TextExpandable dengan label Indonesia - SectionLink: tap langsung buka URL, ikon per domain, long press untuk hapus - SectionFile: icon container konsisten 30×30 di semua section - SectionCancel: card subtle dengan warna error, konsisten dengan visual language baru - TextExpandable: fix bug show/hide tidak muncul setelah content diupdate - Tambah 14 style class baru di Styles.ts untuk menggantikan inline style - Terapkan semua perubahan ke fitur division/task - Fix menu "Edit Tugas" di sectionTanggalTugasTask yang terpotong karena overflow Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
57 lines
2.1 KiB
TypeScript
57 lines
2.1 KiB
TypeScript
import Styles from "@/constants/Styles";
|
|
import { apiGetProjectOne } from "@/lib/api";
|
|
import { useAuthSession } from "@/providers/AuthProvider";
|
|
import { useTheme } from "@/providers/ThemeProvider";
|
|
import { MaterialCommunityIcons } from "@expo/vector-icons";
|
|
import { useLocalSearchParams } from "expo-router";
|
|
import { useEffect, useState } from "react";
|
|
import { View } from "react-native";
|
|
import { useSelector } from "react-redux";
|
|
import Text from "../Text";
|
|
import TextExpandable from "../textExpandable";
|
|
|
|
export default function SectionReportProject({ refreshing }: { refreshing?: boolean }) {
|
|
const { colors } = useTheme();
|
|
const update = useSelector((state: any) => state.projectUpdate)
|
|
const { token, decryptToken } = useAuthSession();
|
|
const { id } = useLocalSearchParams<{ id: string }>();
|
|
const [data, setData] = useState("");
|
|
|
|
async function handleLoad() {
|
|
try {
|
|
const hasil = await decryptToken(String(token?.current));
|
|
const response = await apiGetProjectOne({ user: hasil, cat: "data", id: id });
|
|
setData(response.data.report);
|
|
} catch (error) {
|
|
console.error(error);
|
|
}
|
|
}
|
|
|
|
useEffect(() => { handleLoad() }, [update.report]);
|
|
useEffect(() => { if (refreshing) handleLoad() }, [refreshing]);
|
|
|
|
if (!data || data === "") return null;
|
|
|
|
return (
|
|
<View style={[
|
|
Styles.wrapPaper,
|
|
Styles.mb15,
|
|
Styles.sectionCard,
|
|
{ backgroundColor: colors.card, borderColor: colors.icon + '18' },
|
|
]}>
|
|
<View style={Styles.sectionHeader}>
|
|
<View style={[Styles.sectionIconBox, Styles.mr10, { backgroundColor: colors.tabActive + '18' }]}>
|
|
<MaterialCommunityIcons name="text-box-outline" size={18} color={colors.tabActive} />
|
|
</View>
|
|
<Text style={[Styles.textDefaultSemiBold, { color: colors.text }]}>
|
|
Laporan Kegiatan
|
|
</Text>
|
|
</View>
|
|
|
|
<View style={[Styles.reportContent, { borderLeftColor: colors.tabActive + '50' }]}>
|
|
<TextExpandable content={data} maxLines={2} />
|
|
</View>
|
|
</View>
|
|
);
|
|
}
|