Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 935e519662 | |||
| c6dbd152d5 | |||
| 714cf5cd5a | |||
| a68343599d | |||
| 419b87fc92 | |||
| 0271c87ba9 | |||
| 5551f30721 |
@@ -2,6 +2,12 @@
|
|||||||
|
|
||||||
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
|
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
|
||||||
|
|
||||||
|
## [1.6.3](https://wibugit.wibudev.com/wibu/hipmi/compare/v1.6.2...v1.6.3) (2026-03-03)
|
||||||
|
|
||||||
|
## [1.6.2](https://wibugit.wibudev.com/wibu/hipmi/compare/v1.6.1...v1.6.2) (2026-02-25)
|
||||||
|
|
||||||
|
## [1.6.1](https://wibugit.wibudev.com/wibu/hipmi/compare/v1.6.0...v1.6.1) (2026-02-25)
|
||||||
|
|
||||||
## [1.6.0](https://wibugit.wibudev.com/wibu/hipmi/compare/v1.5.40...v1.6.0) (2026-02-23)
|
## [1.6.0](https://wibugit.wibudev.com/wibu/hipmi/compare/v1.5.40...v1.6.0) (2026-02-23)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,15 +1,16 @@
|
|||||||
{
|
{
|
||||||
"name": "hipmi",
|
"name": "hipmi",
|
||||||
"version": "1.6.0",
|
"version": "1.6.3",
|
||||||
"private": true,
|
"private": true,
|
||||||
"prisma": {
|
"prisma": {
|
||||||
"seed": "bun prisma/seed.ts"
|
"seed": "bun prisma/seed.ts"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "next dev --experimental-https",
|
"dev": "next dev --experimental-https",
|
||||||
"build": "next build",
|
"build": "prisma generate && next build",
|
||||||
"build:dev": "next build",
|
"build:dev": "prisma generate && next build",
|
||||||
"start": "next start",
|
"start": "next start",
|
||||||
|
"postbuild": "node scripts/postbuild.js",
|
||||||
"lint": "next lint",
|
"lint": "next lint",
|
||||||
"ver": "bunx commit-and-tag-version -- --prerelease"
|
"ver": "bunx commit-and-tag-version -- --prerelease"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -14,8 +14,6 @@ export async function POST(req: Request) {
|
|||||||
try {
|
try {
|
||||||
const { data } = await req.json();
|
const { data } = await req.json();
|
||||||
|
|
||||||
console.log("data >>", data);
|
|
||||||
|
|
||||||
const cekUsername = await prisma.user.findUnique({
|
const cekUsername = await prisma.user.findUnique({
|
||||||
where: {
|
where: {
|
||||||
username: data.username,
|
username: data.username,
|
||||||
@@ -29,12 +27,12 @@ export async function POST(req: Request) {
|
|||||||
});
|
});
|
||||||
|
|
||||||
// ✅ Validasi wajib setuju Terms
|
// ✅ Validasi wajib setuju Terms
|
||||||
if (data.termsOfServiceAccepted !== true) {
|
// if (data.termsOfServiceAccepted !== true) {
|
||||||
return NextResponse.json({
|
// return NextResponse.json({
|
||||||
success: false,
|
// success: false,
|
||||||
message: "You must agree to the Terms of Service",
|
// message: "You must agree to the Terms of Service",
|
||||||
});
|
// });
|
||||||
}
|
// }
|
||||||
|
|
||||||
const createUser = await prisma.user.create({
|
const createUser = await prisma.user.create({
|
||||||
data: {
|
data: {
|
||||||
|
|||||||
@@ -28,13 +28,10 @@ export default function Login({ version }: { version: string }) {
|
|||||||
const [countryCode, setCountryCode] = useState<string>("62"); // default ke Indonesia
|
const [countryCode, setCountryCode] = useState<string>("62"); // default ke Indonesia
|
||||||
|
|
||||||
async function onLogin() {
|
async function onLogin() {
|
||||||
console.log("phone >>", phone);
|
|
||||||
|
|
||||||
const nomor = phone;
|
const nomor = phone;
|
||||||
if (nomor.length <= 4) return setError(true);
|
if (nomor.length <= 4) return setError(true);
|
||||||
|
|
||||||
const fixPhone = `${countryCode}${nomor}`;
|
const fixPhone = `${countryCode}${nomor}`;
|
||||||
console.log("fixPhone >>", fixPhone);
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
setLoading(true);
|
setLoading(true);
|
||||||
@@ -46,7 +43,6 @@ export default function Login({ version }: { version: string }) {
|
|||||||
router.push("/validasi", { scroll: false });
|
router.push("/validasi", { scroll: false });
|
||||||
} else {
|
} else {
|
||||||
setLoading(false);
|
setLoading(false);
|
||||||
console.log("respone >>", respone);
|
|
||||||
ComponentGlobal_NotifikasiPeringatan(respone?.message);
|
ComponentGlobal_NotifikasiPeringatan(respone?.message);
|
||||||
}
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
@@ -108,9 +104,6 @@ export default function Login({ version }: { version: string }) {
|
|||||||
// Simpan hasil akhir
|
// Simpan hasil akhir
|
||||||
setCountryCode(dialCode);
|
setCountryCode(dialCode);
|
||||||
setPhone(localNumber);
|
setPhone(localNumber);
|
||||||
|
|
||||||
// console.log("Country Code:", dialCode);
|
|
||||||
// console.log("Clean Local Number:", localNumber);
|
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
|||||||
@@ -25,15 +25,21 @@ export default function WaitingRoom_View({
|
|||||||
const [isLoadingHome, setIsLoadingHome] = useState(false);
|
const [isLoadingHome, setIsLoadingHome] = useState(false);
|
||||||
|
|
||||||
async function onClickLogout() {
|
async function onClickLogout() {
|
||||||
setLoading(true);
|
try {
|
||||||
const res = await fetch(`/api/auth/logout?id=${userLoginId}`, {
|
setLoading(true);
|
||||||
method: "GET",
|
const res = await fetch(`/api/auth/logout?id=${userLoginId}`, {
|
||||||
});
|
method: "GET",
|
||||||
|
});
|
||||||
|
|
||||||
const result = await res.json();
|
const result = await res.json();
|
||||||
if (res.status === 200) {
|
if (res.status === 200) {
|
||||||
ComponentGlobal_NotifikasiBerhasil(result.message);
|
ComponentGlobal_NotifikasiBerhasil(result.message);
|
||||||
router.push("/", { scroll: false });
|
router.push("/", { scroll: false });
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
console.error("Error button to home", error);
|
||||||
|
} finally {
|
||||||
|
setLoading(false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -83,7 +89,8 @@ export default function WaitingRoom_View({
|
|||||||
</Text>
|
</Text>
|
||||||
<Text fw={"bold"} c={"white"} align="center">
|
<Text fw={"bold"} c={"white"} align="center">
|
||||||
Harap tunggu, Anda akan menerima pemberitahuan melalui
|
Harap tunggu, Anda akan menerima pemberitahuan melalui
|
||||||
Whatsapp setelah disetujui.
|
Whatsapp setelah disetujui, untuk sementara anda bisa
|
||||||
|
menunggu pada halaman ini atau keluar.
|
||||||
</Text>
|
</Text>
|
||||||
</Stack>
|
</Stack>
|
||||||
{isAccess && (
|
{isAccess && (
|
||||||
@@ -110,6 +117,10 @@ export default function WaitingRoom_View({
|
|||||||
Home
|
Home
|
||||||
</Button>
|
</Button>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
|
<Button color="red" loading={loading} onClick={onClickLogout}>
|
||||||
|
Keluar
|
||||||
|
</Button>
|
||||||
</Stack>
|
</Stack>
|
||||||
)}
|
)}
|
||||||
</ComponentGlobal_CardStyles>
|
</ComponentGlobal_CardStyles>
|
||||||
|
|||||||
@@ -65,7 +65,7 @@ export const middleware = async (req: NextRequest) => {
|
|||||||
|
|
||||||
const { pathname } = req.nextUrl;
|
const { pathname } = req.nextUrl;
|
||||||
|
|
||||||
const apiBaseUrl = new URL(req.url).origin || process.env.NEXT_PUBLIC_API_URL;
|
const apiBaseUrl = process.env.NEXT_PUBLIC_API_URL || new URL(req.url).origin;
|
||||||
// Removed excessive logging that was causing high CPU usage
|
// Removed excessive logging that was causing high CPU usage
|
||||||
// const dbUrl = process.env.DATABASE_URL;
|
// const dbUrl = process.env.DATABASE_URL;
|
||||||
// console.log("DATABASE_URL >>", dbUrl);
|
// console.log("DATABASE_URL >>", dbUrl);
|
||||||
|
|||||||
4
types/env.d.ts
vendored
4
types/env.d.ts
vendored
@@ -11,5 +11,9 @@ declare namespace NodeJS {
|
|||||||
NEXT_PUBLIC_BASE_SESSION_KEY?: string;
|
NEXT_PUBLIC_BASE_SESSION_KEY?: string;
|
||||||
RESEND_APIKEY?: string;
|
RESEND_APIKEY?: string;
|
||||||
WA_SERVER_TOKEN?: string;
|
WA_SERVER_TOKEN?: string;
|
||||||
|
FIREBASE_ADMIN_PRIVATE_KEY?: string;
|
||||||
|
FIREBASE_ADMIN_CLIENT_EMAIL?: string;
|
||||||
|
FIREBASE_ADMIN_PROJECT_ID?: string;
|
||||||
|
NEXT_PUBLIC_API_URL?: string;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user