Ringkasan Perubahan

File yang Dimodifikasi:
     1. `service/api-admin/api-admin-investment.ts` - Tambah parameter page
        untuk pagination
     2. `app/(application)/admin/investment/[id]/list-of-investor.tsx` - Clean
         route file

    File Baru:
     3. `screens/Admin/Investment/ScreenInvestmentListOfInvestor.tsx` - Screen
         component dengan pagination
     4. `screens/Admin/Investment/BoxInvestmentListOfInvestor.tsx` - Box
        component untuk list item

### No Issue
This commit is contained in:
2026-02-19 14:06:02 +08:00
parent f284e2ec02
commit 4862975402
14 changed files with 789 additions and 508 deletions

View File

@@ -4,14 +4,16 @@ import { apiConfig } from "../api-config";
export async function apiAdminInvestment({
category,
search,
page = "1",
}: {
category: "dashboard" | "publish" | "review" | "reject";
search?: string;
page?: string;
}) {
const propsQuery =
category === "dashboard"
? `category=${category}`
: `category=${category}&search=${search}`;
? `category=${category}&page=${page}`
: `category=${category}&search=${search}&page=${page}`;
try {
const response = await apiConfig.get(
@@ -57,15 +59,23 @@ export async function apiAdminInvestasiUpdateByStatus({
export async function apiAdminInvestmentListOfInvestor({
id,
status,
page = "1",
}: {
id: string;
status: "berhasil" | "gagal" | "proses" | "menunggu" | null;
page?: string;
}) {
const query = status && status !== null ? `?status=${status}` : "";
const queryParams = new URLSearchParams();
if (status && status !== null) {
queryParams.append("status", status);
}
queryParams.append("page", page);
try {
const response = await apiConfig.get(
`/mobile/admin/investment/${id}/investor${query}`
`/mobile/admin/investment/${id}/investor?${queryParams.toString()}`
);
return response.data;
} catch (error) {