fix load event & loading creating colab

This commit is contained in:
2025-02-23 12:33:04 +08:00
parent d7a755d9ed
commit 9d9025f833
4 changed files with 40 additions and 36 deletions

View File

@@ -7,13 +7,7 @@ import { ComponentGlobal_NotifikasiGagal } from "@/app_modules/_global/notif_glo
import { ComponentGlobal_NotifikasiPeringatan } from "@/app_modules/_global/notif_global/notifikasi_peringatan";
import { clientLogger } from "@/util/clientLogger";
import mqtt_client from "@/util/mqtt_client";
import {
Button,
Select,
Stack,
TextInput,
Textarea
} from "@mantine/core";
import { Button, Select, Stack, TextInput, Textarea } from "@mantine/core";
import { useShallowEffect } from "@mantine/hooks";
import { useRouter } from "next/navigation";
import { useState } from "react";
@@ -51,7 +45,6 @@ export default function Colab_Create() {
}
}
if (listIndustri == null) {
return (
<>
@@ -194,34 +187,32 @@ function ButtonAction({ value }: { value: any }) {
if (value.projectCollaborationMaster_IndustriId === 0)
return ComponentGlobal_NotifikasiPeringatan("Pilih Industri");
const res = await colab_funCreateProyek(value);
try {
setLoading(true)
setLoading(true);
const res = await colab_funCreateProyek(value);
if (res.status === 201) {
setLoading(true);
router.back();
ComponentGlobal_NotifikasiBerhasil(res.message);
} else {
setLoading(false)
setLoading(false);
ComponentGlobal_NotifikasiGagal(res.message);
}
} catch (error) {
setLoading(false)
setLoading(false);
clientLogger.error("Error create proyek", error);
}
}
return (
<>
<Button
disabled={
!value.title ||
!value.lokasi ||
!value.purpose ||
!value.benefit ||
value.projectCollaborationMaster_IndustriId === 0
!value.lokasi ||
!value.purpose ||
!value.benefit ||
value.projectCollaborationMaster_IndustriId === 0
? true
: false
}

View File

@@ -9,22 +9,27 @@ import { MODEL_COLLABORATION } from "../../model/interface";
export default async function colab_funCreateProyek(
value: MODEL_COLLABORATION
) {
const userLoginId = await funGetUserIdByToken();
try {
const userLoginId = await funGetUserIdByToken();
if (!userLoginId) return { status: 400, message: "Gagal Membuat Proyek" };
const data = await prisma.projectCollaboration.create({
data: {
title: value.title,
lokasi: value.lokasi,
purpose: value.purpose,
benefit: value.benefit,
projectCollaborationMaster_IndustriId:
value.projectCollaborationMaster_IndustriId,
userId: userLoginId,
// jumlah_partisipan: + value.jumlah_partisipan,
},
});
const data = await prisma.projectCollaboration.create({
data: {
title: value.title,
lokasi: value.lokasi,
purpose: value.purpose,
benefit: value.benefit,
projectCollaborationMaster_IndustriId:
value.projectCollaborationMaster_IndustriId,
userId: userLoginId,
// jumlah_partisipan: + value.jumlah_partisipan,
},
});
if (!data) return { status: 400, message: "Gagal Membuat Proyek" };
revalidatePath(RouterColab.beranda);
return { data, status: 201, message: "Berhasil Membuat Proyek" };
if (!data) return { status: 400, message: "Gagal Membuat Proyek" };
revalidatePath(RouterColab.beranda);
return { data, status: 201, message: "Berhasil Membuat Proyek" };
} catch (error) {
return { status: 500, message: "Gagal Membuat Proyek" };
}
}