fix (donasi)

deskripsi:
- fix notifikasi to all user
This commit is contained in:
2025-01-20 11:33:00 +08:00
parent 9286de9ecb
commit 5f477a83d8
18 changed files with 419 additions and 185 deletions

View File

@@ -7,11 +7,14 @@ import notifikasi_getByUserId from "../../fun/get/get_notifiaksi_by_id";
import notifikasi_countUserNotifikasi from "../../fun/count/fun_count_by_id";
import notifikasi_funUpdateIsReadById from "../../fun/update/fun_update_is_read_by_user_id";
import { ComponentGlobal_NotifikasiPeringatan } from "@/app_modules/_global/notif_global";
import { notifikasi_checkAuthorDonasiById } from "../../fun/check/fun_check_author_donasi_by_id";
export async function redirectDonasiPage({
appId,
dataId,
categoryPage,
userId,
userLoginId,
router,
onLoadDataEvent,
onSetMenuId,
@@ -21,6 +24,8 @@ export async function redirectDonasiPage({
appId: string;
dataId: string;
categoryPage: string;
userId: string;
userLoginId: string;
router: AppRouterInstance;
onLoadDataEvent: (val: any) => void;
onSetMenuId(val: number): void;
@@ -28,29 +33,38 @@ export async function redirectDonasiPage({
onLoadCountNtf(val: number): void;
}) {
const check = await notifikasi_funDonasiCheckStatus({ id: appId });
const checkAuthor = await notifikasi_checkAuthorDonasiById({
donasiId: appId,
userId: userId,
});
if (check.status == 200) {
const loadListNotifikasi = await notifikasi_getByUserId({
page: 1,
kategoriApp: categoryPage as any,
});
onLoadDataEvent(loadListNotifikasi);
// const loadListNotifikasi = await notifikasi_getByUserId({
// page: 1,
// kategoriApp: categoryPage as any,
// });
// onLoadDataEvent(loadListNotifikasi);
const loadCountNotifikasi = await notifikasi_countUserNotifikasi();
onLoadCountNtf(loadCountNotifikasi);
// const loadCountNotifikasi = await notifikasi_countUserNotifikasi();
// onLoadCountNtf(loadCountNotifikasi);
const updateReadNotifikasi = await notifikasi_funUpdateIsReadById({
notifId: dataId,
});
if (updateReadNotifikasi.status == 200) {
onSetVisible(true);
const pathToCreator = `/dev/donasi/detail/${check.statusName}/${appId}`;
const pathToAllUser = `/dev/donasi/detail/main/${appId}`;
const path = `/dev/donasi/detail/${check.statusName}/${appId}`;
onSetMenuId(1);
router.push(path, { scroll: false });
if (checkAuthor) {
router.push(pathToCreator, { scroll: false });
} else {
router.push(pathToAllUser, { scroll: false });
onSetMenuId(1);
}
}
} else {
onSetVisible(false);
ComponentGlobal_NotifikasiPeringatan("Status tidak ditemukan");
}
}