upd: upload gambar

Deskripsi:
- fungsi upload gambar
- verifikasi nomer hp
- get list pengaduan by nomer hp

NO Issues
This commit is contained in:
2025-11-05 17:19:44 +08:00
parent 13f88efb35
commit c2d07b3edf
7 changed files with 461 additions and 40 deletions

View File

@@ -0,0 +1,15 @@
export function normalizePhoneNumber({ phone }: { phone: string }) {
// Hapus semua spasi, tanda hubung, atau karakter non-digit (+ tetap dipertahankan untuk dicek)
let cleaned = phone.trim().replace(/[\s-]/g, "");
// Jika diawali dengan +62 → ganti jadi 62
if (cleaned.startsWith("+62")) {
cleaned = "62" + cleaned.slice(3);
}
// Jika diawali dengan 0 → ganti jadi 62
else if (cleaned.startsWith("0")) {
cleaned = "62" + cleaned.slice(1);
}
return cleaned;
}