Deskripsi: - fitur ganti mode tema - penerapan tema pada semua fitur NO Issues
144 lines
4.5 KiB
TypeScript
144 lines
4.5 KiB
TypeScript
import AppHeader from "@/components/AppHeader";
|
|
import ButtonSaveHeader from "@/components/buttonSaveHeader";
|
|
import { InputForm } from "@/components/inputForm";
|
|
import Styles from "@/constants/Styles";
|
|
import { apiEditProject, apiGetProjectOne } from "@/lib/api";
|
|
import { setUpdateProject } from "@/lib/projectUpdate";
|
|
import { useAuthSession } from "@/providers/AuthProvider";
|
|
import { useTheme } from "@/providers/ThemeProvider";
|
|
import { router, Stack, useLocalSearchParams } from "expo-router";
|
|
import { useEffect, useState } from "react";
|
|
import { SafeAreaView, ScrollView, View } from "react-native";
|
|
import Toast from "react-native-toast-message";
|
|
import { useDispatch, useSelector } from "react-redux";
|
|
|
|
export default function EditProject() {
|
|
const { colors } = useTheme();
|
|
const { token, decryptToken } = useAuthSession();
|
|
const { id } = useLocalSearchParams<{ id: string }>();
|
|
const dispatch = useDispatch()
|
|
const update = useSelector((state: any) => state.projectUpdate)
|
|
const [judul, setJudul] = useState("");
|
|
const [error, setError] = useState(false);
|
|
const [disable, setDisable] = useState(false);
|
|
const [loading, setLoading] = useState(false)
|
|
|
|
async function handleLoad() {
|
|
try {
|
|
const hasil = await decryptToken(String(token?.current));
|
|
const response = await apiGetProjectOne({
|
|
user: hasil,
|
|
cat: "data",
|
|
id: id,
|
|
});
|
|
setJudul(response.data.title);
|
|
} catch (error) {
|
|
console.error(error);
|
|
}
|
|
}
|
|
|
|
useEffect(() => {
|
|
handleLoad();
|
|
}, []);
|
|
|
|
function onValidation(val: string) {
|
|
setJudul(val)
|
|
if (val == "" || val == "null") {
|
|
setError(true)
|
|
} else {
|
|
setError(false)
|
|
}
|
|
}
|
|
|
|
function checkAll() {
|
|
if (judul == "" || judul == "null" || error) {
|
|
setDisable(true)
|
|
} else {
|
|
setDisable(false)
|
|
}
|
|
}
|
|
|
|
useEffect(() => {
|
|
checkAll()
|
|
}, [judul, error]);
|
|
|
|
async function handleUpdate() {
|
|
try {
|
|
setLoading(true)
|
|
const hasil = await decryptToken(String(token?.current));
|
|
const response = await apiEditProject({
|
|
name: judul,
|
|
user: hasil,
|
|
}, id);
|
|
if (response.success) {
|
|
dispatch(setUpdateProject({ ...update, data: !update.data }))
|
|
Toast.show({ type: 'small', text1: 'Berhasil mengubah data', })
|
|
router.back();
|
|
} else {
|
|
Toast.show({ type: 'small', text1: response.message, })
|
|
}
|
|
} catch (error) {
|
|
console.error(error);
|
|
Toast.show({ type: 'small', text1: 'Terjadi kesalahan', })
|
|
} finally {
|
|
setLoading(false)
|
|
}
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
<SafeAreaView style={{ flex: 1, backgroundColor: colors.background }}>
|
|
<Stack.Screen
|
|
options={{
|
|
// headerLeft: () => (
|
|
// <ButtonBackHeader
|
|
// onPress={() => {
|
|
// router.back();
|
|
// }}
|
|
// />
|
|
// ),
|
|
headerTitle: "Edit Judul Kegiatan",
|
|
headerTitleAlign: "center",
|
|
// headerRight: () => (
|
|
// <ButtonSaveHeader
|
|
// disable={disable || loading}
|
|
// category="update"
|
|
// onPress={() => { handleUpdate() }}
|
|
// />
|
|
// ),
|
|
header: () => (
|
|
<AppHeader
|
|
title="Edit Judul Kegiatan"
|
|
showBack={true}
|
|
onPressLeft={() => router.back()}
|
|
right={
|
|
<ButtonSaveHeader
|
|
disable={disable || loading}
|
|
category="update"
|
|
onPress={() => { handleUpdate() }}
|
|
/>
|
|
}
|
|
/>
|
|
)
|
|
}}
|
|
/>
|
|
<ScrollView style={{ backgroundColor: colors.background }}>
|
|
<View style={[Styles.p15, Styles.mb100]}>
|
|
<InputForm
|
|
label="Judul Kegiatan"
|
|
type="default"
|
|
placeholder="Judul Kegiatan"
|
|
required
|
|
bg={colors.card}
|
|
value={judul}
|
|
onChange={(val) => { onValidation(val) }}
|
|
error={error}
|
|
errorText="Judul Kegiatan harus diisi"
|
|
/>
|
|
</View>
|
|
</ScrollView>
|
|
</SafeAreaView>
|
|
);
|
|
}
|