Schema Updates: - Added fields to Umkm model (name, owner, productType, description, timestamps) - Added fields to Posyandu model (name, location, schedule, type, timestamps) - Added fields to SecurityReport model (reportNumber, title, description, location, reportedBy, status, timestamps) - Added fields to EmploymentRecord model (companyName, position, startDate, endDate, isActive, timestamps) - Added fields to PopulationDynamic model (type, residentName, eventDate, description, timestamps) - Added fields to BudgetTransaction model (transactionNumber, type, category, amount, description, date, timestamps) - Added fields to HealthRecord model (type, notes, timestamps) New Seeders: - seed-discussions.ts: Documents, Discussions, DivisionMetrics - seed-phase2.ts: UMKM, Posyandu, SecurityReports, EmploymentRecords, PopulationDynamics, BudgetTransactions Enhanced Seeders: - seed-auth.ts: Added seedApiKeys() function - seed-public-services.ts: Added seedComplaintUpdates() and getComplaintIds() New NPM Scripts: - seed:documents - Seed documents and discussions - seed:phase2 - Seed Phase 2+ features All 33 Prisma models now have seeder coverage (82% direct, 12% stubs, 6% auto-managed) Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
204 lines
4.6 KiB
TypeScript
204 lines
4.6 KiB
TypeScript
import {
|
|
DocumentCategory,
|
|
Priority,
|
|
PrismaClient,
|
|
} from "../../generated/prisma";
|
|
|
|
const prisma = new PrismaClient();
|
|
|
|
/**
|
|
* Seed Documents
|
|
* Creates sample documents for divisions (SK, laporan, dokumentasi)
|
|
*/
|
|
export async function seedDocuments(divisionIds: string[], userId: string) {
|
|
console.log("Seeding Documents...");
|
|
|
|
const documents = [
|
|
{
|
|
title: "SK Kepala Desa No. 1/2025",
|
|
category: DocumentCategory.SURAT_KEPUTUSAN,
|
|
type: "PDF",
|
|
fileUrl: "/documents/sk-kepala-desa-001.pdf",
|
|
fileSize: 245000,
|
|
divisionId: divisionIds[0] || null,
|
|
uploadedBy: userId,
|
|
},
|
|
{
|
|
title: "Laporan Keuangan Q1 2025",
|
|
category: DocumentCategory.LAPORAN_KEUANGAN,
|
|
type: "PDF",
|
|
fileUrl: "/documents/laporan-keuangan-q1-2025.pdf",
|
|
fileSize: 512000,
|
|
divisionId: divisionIds[0] || null,
|
|
uploadedBy: userId,
|
|
},
|
|
{
|
|
title: "Dokumentasi Gotong Royong",
|
|
category: DocumentCategory.DOKUMENTASI,
|
|
type: "Gambar",
|
|
fileUrl: "/images/gotong-royong-2025.jpg",
|
|
fileSize: 1024000,
|
|
divisionId: divisionIds[3] || null,
|
|
uploadedBy: userId,
|
|
},
|
|
{
|
|
title: "Notulensi Rapat Desa",
|
|
category: DocumentCategory.NOTULENSI_RAPAT,
|
|
type: "Dokumen",
|
|
fileUrl: "/documents/notulensi-rapat-desa.pdf",
|
|
fileSize: 128000,
|
|
divisionId: divisionIds[0] || null,
|
|
uploadedBy: userId,
|
|
},
|
|
{
|
|
title: "Data Penduduk 2025",
|
|
category: DocumentCategory.UMUM,
|
|
type: "Excel",
|
|
fileUrl: "/documents/data-penduduk-2025.xlsx",
|
|
fileSize: 350000,
|
|
divisionId: null,
|
|
uploadedBy: userId,
|
|
},
|
|
];
|
|
|
|
for (const doc of documents) {
|
|
await prisma.document.create({
|
|
data: doc,
|
|
});
|
|
}
|
|
|
|
console.log("✅ Documents seeded successfully");
|
|
}
|
|
|
|
/**
|
|
* Seed Discussions
|
|
* Creates sample discussions for divisions and activities
|
|
*/
|
|
export async function seedDiscussions(divisionIds: string[], userId: string) {
|
|
console.log("Seeding Discussions...");
|
|
|
|
const discussions = [
|
|
{
|
|
message: "Mohon update progress pembangunan jalan",
|
|
senderId: userId,
|
|
divisionId: divisionIds[1] || null,
|
|
isResolved: false,
|
|
},
|
|
{
|
|
message: "Baik, akan segera kami tindak lanjuti",
|
|
senderId: userId,
|
|
divisionId: divisionIds[1] || null,
|
|
isResolved: false,
|
|
parentId: null, // Will be set as reply
|
|
},
|
|
{
|
|
message: "Jadwal rapat koordinasi minggu depan?",
|
|
senderId: userId,
|
|
divisionId: divisionIds[0] || null,
|
|
isResolved: true,
|
|
},
|
|
{
|
|
message: "Rapat dijadwalkan hari Senin, 10:00 WITA",
|
|
senderId: userId,
|
|
divisionId: divisionIds[0] || null,
|
|
isResolved: true,
|
|
parentId: null, // Will be set as reply
|
|
},
|
|
{
|
|
message: "Program pemberdayaan UMKM butuh anggaran tambahan",
|
|
senderId: userId,
|
|
divisionId: divisionIds[2] || null,
|
|
isResolved: false,
|
|
},
|
|
];
|
|
|
|
// Create parent discussions first
|
|
const parentDiscussions = [];
|
|
for (let i = 0; i < discussions.length; i += 2) {
|
|
const discussion = await prisma.discussion.create({
|
|
data: {
|
|
message: discussions[i].message,
|
|
senderId: discussions[i].senderId,
|
|
divisionId: discussions[i].divisionId,
|
|
isResolved: discussions[i].isResolved,
|
|
},
|
|
});
|
|
parentDiscussions.push(discussion);
|
|
}
|
|
|
|
// Create replies
|
|
for (let i = 1; i < discussions.length; i += 2) {
|
|
const parentIndex = Math.floor((i - 1) / 2);
|
|
if (parentIndex < parentDiscussions.length) {
|
|
await prisma.discussion.update({
|
|
where: { id: parentDiscussions[parentIndex].id },
|
|
data: {
|
|
replies: {
|
|
create: {
|
|
message: discussions[i].message,
|
|
senderId: discussions[i].senderId,
|
|
isResolved: discussions[i].isResolved,
|
|
},
|
|
},
|
|
},
|
|
});
|
|
}
|
|
}
|
|
|
|
console.log("✅ Discussions seeded successfully");
|
|
}
|
|
|
|
/**
|
|
* Seed Division Metrics
|
|
* Creates performance metrics for each division
|
|
*/
|
|
export async function seedDivisionMetrics(divisionIds: string[]) {
|
|
console.log("Seeding Division Metrics...");
|
|
|
|
const metrics = [
|
|
{
|
|
divisionId: divisionIds[0] || "",
|
|
period: "2025-Q1",
|
|
activityCount: 12,
|
|
completionRate: 75.5,
|
|
avgProgress: 82.3,
|
|
},
|
|
{
|
|
divisionId: divisionIds[1] || "",
|
|
period: "2025-Q1",
|
|
activityCount: 8,
|
|
completionRate: 62.5,
|
|
avgProgress: 65.0,
|
|
},
|
|
{
|
|
divisionId: divisionIds[2] || "",
|
|
period: "2025-Q1",
|
|
activityCount: 10,
|
|
completionRate: 80.0,
|
|
avgProgress: 70.5,
|
|
},
|
|
{
|
|
divisionId: divisionIds[3] || "",
|
|
period: "2025-Q1",
|
|
activityCount: 15,
|
|
completionRate: 86.7,
|
|
avgProgress: 88.2,
|
|
},
|
|
];
|
|
|
|
for (const metric of metrics) {
|
|
await prisma.divisionMetric.upsert({
|
|
where: {
|
|
divisionId_period: {
|
|
divisionId: metric.divisionId,
|
|
period: metric.period,
|
|
},
|
|
},
|
|
update: metric,
|
|
create: metric,
|
|
});
|
|
}
|
|
|
|
console.log("✅ Division Metrics seeded successfully");
|
|
}
|