fix tampilan admin menu inovasi, sisa menu lingkungan

This commit is contained in:
2025-09-22 10:53:48 +08:00
parent 8e25c91e85
commit 0fc47c28ff
52 changed files with 3787 additions and 1723 deletions

View File

@@ -1,19 +1,54 @@
/* eslint-disable @typescript-eslint/no-explicit-any */
// /api/berita/findManyPaginated.ts
import prisma from "@/lib/prisma";
import { Context } from "elysia";
async function ajukanIdeInovatifFindMany(context: Context) {
const page = Number(context.query.page) || 1;
const limit = Number(context.query.limit) || 10;
const search = (context.query.search as string) || '';
const skip = (page - 1) * limit;
// Buat where clause
const where: any = { isActive: true };
// Tambahkan pencarian (jika ada)
if (search) {
where.OR = [
{ name: { contains: search, mode: 'insensitive' } },
{ alamat: { contains: search, mode: 'insensitive' } },
];
}
export default async function ajukanIdeInovatifFindMany() {
try {
const data = await prisma.ajukanIdeInovatif.findMany({});
const [data, total] = await Promise.all([
prisma.ajukanIdeInovatif.findMany({
where: where, // Use the where clause that includes search conditions
skip,
take: limit,
orderBy: { createdAt: 'desc' },
}),
prisma.ajukanIdeInovatif.count({
where: where // Also update the count query to use the same where clause
})
]);
return {
success: true,
message: "Success fetch ajukan ide inovatif",
message: "Success fetch ajukan ide inovatif with pagination",
data,
page,
limit,
totalPages: Math.ceil(total / limit),
total,
};
} catch (error) {
console.error("Find many error:", error);
} catch (e) {
console.error("Find many paginated error:", e);
return {
success: false,
message: "Failed fetch ajukan ide inovatif",
message: "Failed fetch ajukan ide inovatif with pagination",
};
}
}
export default ajukanIdeInovatifFindMany;

View File

@@ -23,16 +23,16 @@ async function administrasiOnlineFindMany(context: Context) {
try {
const [data, total] = await Promise.all([
prisma.administrasiOnline.findMany({
where: { isActive: true },
where: where, // Use the where clause that includes search conditions
include: {
jenisLayanan: true,
},
skip,
take: limit,
orderBy: { createdAt: 'desc' }, // opsional, kalau mau urut berdasarkan waktu
orderBy: { createdAt: 'desc' },
}),
prisma.administrasiOnline.count({
where: { isActive: true }
where: where // Also update the count query to use the same where clause
})
]);

View File

@@ -1,3 +1,4 @@
/* eslint-disable @typescript-eslint/no-explicit-any */
// /api/berita/findManyPaginated.ts
import prisma from "@/lib/prisma";
import { Context } from "elysia";
@@ -5,12 +6,24 @@ import { Context } from "elysia";
async function pengaduanMasyarakatFindMany(context: Context) {
const page = Number(context.query.page) || 1;
const limit = Number(context.query.limit) || 10;
const search = (context.query.search as string) || '';
const skip = (page - 1) * limit;
// Buat where clause
const where: any = { isActive: true };
// Tambahkan pencarian (jika ada)
if (search) {
where.OR = [
{ name: { contains: search, mode: 'insensitive' } },
{ judulPengaduan: { contains: search, mode: 'insensitive' } },
];
}
try {
const [data, total] = await Promise.all([
prisma.pengaduanMasyarakat.findMany({
where: { isActive: true },
where: where,
include: {
jenisPengaduan: true,
image: true,
@@ -20,7 +33,7 @@ async function pengaduanMasyarakatFindMany(context: Context) {
orderBy: { createdAt: 'desc' }, // opsional, kalau mau urut berdasarkan waktu
}),
prisma.pengaduanMasyarakat.count({
where: { isActive: true }
where: where
})
]);
@@ -29,6 +42,7 @@ async function pengaduanMasyarakatFindMany(context: Context) {
message: "Success fetch pengaduan masyarakat with pagination",
data,
page,
limit,
totalPages: Math.ceil(total / limit),
total,
};

View File

@@ -1,15 +1,53 @@
/* eslint-disable @typescript-eslint/no-explicit-any */
import prisma from "@/lib/prisma";
import { Context } from "elysia";
export default async function jenisPengaduanFindMany() {
const data = await prisma.jenisPengaduan.findMany();
return {
export default async function jenisPengaduanFindMany(context: Context) {
// Ambil parameter dari query
const page = Number(context.query.page) || 1;
const limit = Number(context.query.limit) || 10;
const search = (context.query.search as string) || '';
const skip = (page - 1) * limit;
// Buat where clause
const where: any = { isActive: true };
// Tambahkan pencarian (jika ada)
if (search) {
where.OR = [
{ nama: { contains: search, mode: 'insensitive' } }
];
}
try {
const [data, total] = await Promise.all([
prisma.jenisPengaduan.findMany({
where,
skip,
take: limit,
orderBy: { createdAt: 'desc' },
}),
prisma.jenisLayanan.count({ where }),
]);
return {
success: true,
data: data.map((item: any) => {
return {
id: item.id,
nama: item.nama,
nama: item.nama
}
}),
page,
limit,
total,
totalPages: Math.ceil(total / limit),
};
} catch (e) {
console.error("Error di findMany paginated:", e);
return {
success: false,
message: "Gagal mengambil data jenis pengaduan",
};
}
}

View File

@@ -1,3 +1,4 @@
/* eslint-disable @typescript-eslint/no-explicit-any */
import prisma from "@/lib/prisma";
import { Context } from "elysia";
@@ -5,29 +6,39 @@ import { Context } from "elysia";
export default async function programKreatifFindMany(context: Context) {
const page = Number(context.query.page) || 1;
const limit = Number(context.query.limit) || 10;
const search = (context.query.search as string) || '';
const skip = (page - 1) * limit;
// Buat where clause
const where: any = { isActive: true };
// Tambahkan pencarian (jika ada)
if (search) {
where.OR = [
{ name: { contains: search, mode: 'insensitive' } },
{ deskripsi: { contains: search, mode: 'insensitive' } },
];
}
try {
const [data, total] = await Promise.all([
prisma.programKreatif.findMany({
where: { isActive: true },
where: where,
skip,
take: limit,
orderBy: { createdAt: 'desc' },
}),
prisma.programKreatif.count({
where: { isActive: true }
where: where
})
]);
const totalPages = Math.ceil(total / limit);
return {
success: true,
message: "Success fetch program kreatif with pagination",
data,
page,
totalPages,
limit,
totalPages: Math.ceil(total / limit),
total,
};
} catch (e) {
@@ -35,10 +46,6 @@ export default async function programKreatifFindMany(context: Context) {
return {
success: false,
message: "Failed fetch program kreatif with pagination",
data: [],
page: 1,
totalPages: 1,
total: 0,
};
}
}