Fix: - modified: app/(application)/(user)/event/[id]/publish.tsx - modified: app/(application)/(user)/event/create.tsx - modified: app/(application)/(user)/portofolio/[id]/create.tsx - modified: app/(application)/(user)/portofolio/[id]/edit.tsx - modified: app/(application)/admin/collaboration/[id]/group.tsx - modified: app/(application)/admin/collaboration/group.tsx - modified: app/(application)/admin/collaboration/publish.tsx - modified: app/(application)/admin/forum/[id]/list-report-comment.tsx - modified: app/(application)/admin/forum/[id]/list-report-posting.tsx - modified: app/(application)/admin/forum/posting.tsx - modified: app/(application)/admin/forum/report-comment.tsx - modified: app/(application)/admin/forum/report-posting.tsx - modified: app/(application)/admin/voting/[status]/status.tsx - modified: app/(application)/admin/voting/history.tsx - modified: components/Select/SelectCustom.tsx - modified: components/_ShareComponent/GridSpan_4_8.tsx - modified: screens/Authentication/LoginView.tsx - modified: screens/Collaboration/BoxPublishSection.tsx - modified: screens/Event/BoxDetailPublishSection.tsx - modified: screens/Home/topFeatureSection.tsx - modified: screens/Portofolio/ButtonCreatePortofolio.tsx Add: - app/(application)/admin/app-information/business-field/[id]/bidang-update.tsx - app/(application)/admin/app-information/business-field/[id]/sub-bidang-update.tsx ### No Issue
130 lines
3.1 KiB
TypeScript
130 lines
3.1 KiB
TypeScript
/* eslint-disable react-hooks/exhaustive-deps */
|
|
import {
|
|
BoxButtonOnFooter,
|
|
ButtonCustom,
|
|
StackCustom,
|
|
TextCustom,
|
|
TextInputCustom,
|
|
ViewWrapper,
|
|
} from "@/components";
|
|
import AdminBackButtonAntTitle from "@/components/_ShareComponent/Admin/BackButtonAntTitle";
|
|
import { MainColor } from "@/constants/color-palet";
|
|
import {
|
|
apiAdminMasterBusinessFieldById,
|
|
apiAdminMasterBusinessFieldUpdate,
|
|
} from "@/service/api-admin/api-master-admin";
|
|
import { router, useFocusEffect, useLocalSearchParams } from "expo-router";
|
|
import { useCallback, useState } from "react";
|
|
import { Switch } from "react-native-paper";
|
|
import Toast from "react-native-toast-message";
|
|
|
|
export default function AdminAppInformation_BusinessFieldDetail() {
|
|
const { id } = useLocalSearchParams();
|
|
const [data, setData] = useState<any | null>(null);
|
|
const [isLoading, setIsLoading] = useState(false);
|
|
|
|
useFocusEffect(
|
|
useCallback(() => {
|
|
onLoadDetail();
|
|
}, [id])
|
|
);
|
|
|
|
const onLoadDetail = async () => {
|
|
try {
|
|
const response = await apiAdminMasterBusinessFieldById({
|
|
id: id as string,
|
|
category: "bidang"
|
|
});
|
|
|
|
setData(response.data);
|
|
} catch (error) {
|
|
console.log("[ERROR]", error);
|
|
setData(null);
|
|
}
|
|
};
|
|
|
|
const handlerSubmit = async () => {
|
|
if (!data.name) {
|
|
Toast.show({
|
|
type: "error",
|
|
text1: "Lengkapi Data",
|
|
});
|
|
return;
|
|
}
|
|
|
|
try {
|
|
setIsLoading(true);
|
|
const response = await apiAdminMasterBusinessFieldUpdate({
|
|
id: id as string,
|
|
data: data,
|
|
category: "bidang",
|
|
});
|
|
|
|
if (!response.success) {
|
|
Toast.show({
|
|
type: "error",
|
|
text1: "Gagal update data",
|
|
});
|
|
return;
|
|
}
|
|
|
|
Toast.show({
|
|
type: "success",
|
|
text1: "Data berhasil di update",
|
|
});
|
|
router.back();
|
|
} catch (error) {
|
|
console.log(error);
|
|
} finally {
|
|
setIsLoading(false);
|
|
}
|
|
};
|
|
|
|
const buttonSubmit = (
|
|
<BoxButtonOnFooter>
|
|
<ButtonCustom
|
|
disabled={!data?.name}
|
|
isLoading={isLoading}
|
|
onPress={() => handlerSubmit()}
|
|
>
|
|
Update
|
|
</ButtonCustom>
|
|
</BoxButtonOnFooter>
|
|
);
|
|
return (
|
|
<>
|
|
<ViewWrapper footerComponent={buttonSubmit}>
|
|
<StackCustom>
|
|
<AdminBackButtonAntTitle title="Update Bidang Bisnis" />
|
|
|
|
<TextInputCustom
|
|
label="Nama Bidang Bisnis"
|
|
placeholder="Masukan Nama Bidang Bisnis"
|
|
required
|
|
value={data?.name}
|
|
onChangeText={(value) => setData({ ...data, name: value })}
|
|
/>
|
|
|
|
<StackCustom
|
|
gap={"sm"}
|
|
style={{
|
|
alignContent: "flex-start",
|
|
}}
|
|
>
|
|
<TextCustom>Status</TextCustom>
|
|
|
|
<Switch
|
|
style={{
|
|
alignSelf: "flex-start",
|
|
}}
|
|
color={MainColor.yellow}
|
|
value={data?.active}
|
|
onValueChange={(value) => setData({ ...data, active: value })}
|
|
/>
|
|
</StackCustom>
|
|
</StackCustom>
|
|
</ViewWrapper>
|
|
</>
|
|
);
|
|
}
|