Fixed Admin UI

Admin – Donation Pages
- app/(application)/admin/donation/[id]/detail-disbursement-of-funds.tsx
- app/(application)/admin/donation/[id]/list-disbursement-of-funds.tsx
- app/(application)/admin/donation/[id]/list-of-donatur.tsx
- app/(application)/admin/donation/[status]/status.tsx
- app/(application)/admin/donation/category-update.tsx
- app/(application)/admin/donation/category.tsx

Admin Services
- service/api-admin/api-admin-donation.ts
- service/api-admin/api-master-admin.ts

Admin Screens (Updated)
- screens/Admin/Voting/ScreenEventTypeOfEvent.tsx

Docs
- docs/prompt-for-qwen-code.md

New Donation Components
- screens/Admin/Donation/BoxDonationCategory.tsx
- screens/Admin/Donation/BoxDonationListDisbursementOfFunds.tsx
- screens/Admin/Donation/BoxDonationListOfDonatur.tsx
- screens/Admin/Donation/BoxDonationStatus.tsx

New Donation Screens
- screens/Admin/Donation/ScreenDonationCategory.tsx
- screens/Admin/Donation/ScreenDonationListDisbursementOfFunds.tsx
- screens/Admin/Donation/ScreenDonationListOfDonatur.tsx
- screens/Admin/Donation/ScreenDonationStatus.tsx

### No Issue"
This commit is contained in:
2026-02-18 17:19:46 +08:00
parent 76845b71b4
commit 1d61ad51e5
18 changed files with 690 additions and 573 deletions

View File

@@ -4,13 +4,15 @@ import { apiConfig } from "../api-config";
export async function apiAdminDonation({
category,
search,
page = "1",
}: {
category: "dashboard" | "publish" | "review" | "reject";
search?: string;
page?: string;
}) {
try {
const response = await apiConfig.get(
`/mobile/admin/donation?category=${category}&search=${search}`
`/mobile/admin/donation?category=${category}&search=${search}&page=${page}`
);
return response.data;
} catch (error) {
@@ -131,12 +133,16 @@ export async function apiAdminDonationDisbursementOfFundsCreated({
export async function apiAdminDonationDisbursementOfFundsListById({
id,
category,
page = "1",
}: {
id: string;
category: "get-all" | "get-one"
category: "get-all" | "get-one";
page?: string;
}) {
try {
const response = await apiConfig.get(`/mobile/admin/donation/${id}/disbursement?category=${category}`);
const response = await apiConfig.get(
`/mobile/admin/donation/${id}/disbursement?category=${category}&page=${page}`
);
return response.data;
} catch (error) {
throw error;

View File

@@ -193,9 +193,9 @@ export async function apiAdminMasterTypeOfEventUpdate({
// ================== START DONATION ================== //
export async function apiAdminMasterDonationCategory() {
export async function apiAdminMasterDonationCategory({ page = "1" }: { page?: string }) {
try {
const response = await apiConfig.get(`/mobile/admin/master/donation`);
const response = await apiConfig.get(`/mobile/admin/master/donation?page=${page}`);
return response.data;
} catch (error) {
throw error;