summaryrefslogtreecommitdiff
path: root/app/page.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'app/page.tsx')
-rw-r--r--app/page.tsx128
1 files changed, 54 insertions, 74 deletions
diff --git a/app/page.tsx b/app/page.tsx
index add141f..af5ada3 100644
--- a/app/page.tsx
+++ b/app/page.tsx
@@ -6,7 +6,14 @@ import SjCamera from "./lib/camera/component/sjCamera";
import DispatchCamera from "./lib/camera/component/dispatchCamera";
import useCameraStore from "./lib/camera/hooks/useCameraStore";
import Header from "./lib/camera/component/hedear";
-import { Button, FormControl, InputLabel, MenuItem, Select, FormHelperText } from "@mui/material";
+import {
+ Button,
+ FormControl,
+ InputLabel,
+ MenuItem,
+ Select,
+ FormHelperText,
+} from "@mui/material";
import { SaveAsOutlined } from "@mui/icons-material";
import axios from "axios";
import odooApi from "./lib/api/odooApi";
@@ -14,18 +21,18 @@ import { useEffect, useState } from "react";
import { useRouter } from "next/navigation";
import { getAuth } from "./lib/api/auth";
import { getCookie } from "cookies-next";
+import { clearOdooSession } from "./lib/api/clearOdooSession";
type Role = "driver" | "dispatch";
type ShipMethod = "" | "self_pickup" | "indoteknik_delivery" | "ekspedisi";
export default function Home() {
- const [isLogin, setIsLogin] = useState<boolean>(true);
+ const [isLogin, setIsLogin] = useState<boolean>(false); // start false biar nggak nge-flash
const [isDriver, setIsDriver] = useState<boolean>(false);
const [isDispatch, setIsDispatch] = useState<boolean>(false);
const [shippingMethod, setShippingMethod] = useState<ShipMethod>("");
const [shipTouched, setShipTouched] = useState(false);
-
const {
barcode,
imageSj,
@@ -40,18 +47,20 @@ export default function Home() {
const [isLoading, setIsLoading] = useState<boolean>(false);
const router = useRouter();
+ // Single effect: auth gate + set role
useEffect(() => {
const auth = getAuth();
if (!auth) {
- router.push("/login");
+ void clearOdooSession(process.env.NEXT_PUBLIC_ODOO_API_HOST ?? "");
+ router.replace("/login");
return;
}
- const roleCookie = (getCookie("web_role") as string | undefined)?.toLowerCase() as Role | undefined;
- const role: Role | null = roleCookie === "driver" || roleCookie === "dispatch" ? roleCookie : null;
-
+ const roleCookie = (
+ getCookie("web_role") as string | undefined
+ )?.toLowerCase() as Role | undefined;
+ setIsDriver(roleCookie === "driver");
+ setIsDispatch(roleCookie === "dispatch");
setIsLogin(true);
- setIsDriver(role === "driver");
- setIsDispatch(role === "dispatch");
}, [router]);
const handleSubmit = async (event: React.FormEvent<HTMLFormElement>) => {
@@ -72,7 +81,6 @@ export default function Home() {
return;
}
-
// Validasi foto sesuai role & shipping method
if (isDispatch) {
if (!imageDispatch) {
@@ -80,7 +88,7 @@ export default function Home() {
setIsLoading(false);
return;
}
- // SJ opsional untuk self_pickup & ekspedisi → tidak divalidasi
+ // SJ opsional untuk self_pickup & ekspedisi
} else {
// Driver: SJ & Penerima wajib
if (!imageSj || !imagePackage) {
@@ -92,7 +100,9 @@ export default function Home() {
try {
const newSjImage = imageSj ? imageSj.replace(/^.*?,/, "") : undefined;
- const newPackageImage = imagePackage ? imagePackage.replace(/^.*?,/, "") : undefined;
+ const newPackageImage = imagePackage
+ ? imagePackage.replace(/^.*?,/, "")
+ : undefined;
const newDispatchImage =
imageDispatch && imageDispatch.startsWith("data:")
? imageDispatch.replace(/^.*?,/, "")
@@ -107,7 +117,6 @@ export default function Home() {
if (submittedSj) data.sj_document = newSjImage!;
if (submittedPackage) data.paket_document = newPackageImage!;
if (submittedDispatch) data.dispatch_document = newDispatchImage!;
- // (opsional) kirim shippingMethod jika backend mau simpan
if (isDispatch && shippingMethod) data.shipping_method = shippingMethod;
const response = (await odooApi(
@@ -141,23 +150,23 @@ export default function Home() {
}
};
+ // === UI helpers ===
// dispatch: SJ hanya utk self_pickup & ekspedisi
const showSjForDispatch =
- isDispatch && (shippingMethod === "self_pickup" || shippingMethod === "ekspedisi");
-
+ isDispatch &&
+ (shippingMethod === "self_pickup" || shippingMethod === "ekspedisi");
// dispatch: kamera dispatch tampil utk semua method (asal sudah dipilih)
const showDispatchForDispatch = isDispatch && shippingMethod !== "";
-
// preview SJ: sembunyikan kalau dispatch belum pilih method
const showSjPreview = !!imageSj && (!isDispatch || showSjForDispatch);
-
// preview Dispatch: sembunyikan kalau dispatch belum pilih method
- const showDispatchPreview = !!imageDispatch && (!isDispatch || showDispatchForDispatch);
+ const showDispatchPreview =
+ !!imageDispatch && (!isDispatch || showDispatchForDispatch);
return (
<div className="bg-white h-screen overflow-auto">
<Header />
- {isLogin && (
+ {isLogin ? (
<div className="py-4 px-4 sm:px-96 pt-20">
<form onSubmit={handleSubmit}>
<div>
@@ -167,19 +176,32 @@ export default function Home() {
{/* Shipping Method (khusus dispatch) */}
{isDispatch && (
<div className="mt-4">
- <FormControl fullWidth size="small" required error={shipTouched && !shippingMethod}>
- {/* shrink = kunci agar label tidak tumpuk dengan placeholder */}
- <InputLabel id="shipping-label" shrink>Shipping Method</InputLabel>
+ <FormControl
+ fullWidth
+ size="small"
+ required
+ error={shipTouched && !shippingMethod}
+ >
+ <InputLabel id="shipping-label" shrink>
+ Shipping Method
+ </InputLabel>
<Select
labelId="shipping-label"
id="shipping"
label="Shipping Method"
value={shippingMethod}
displayEmpty
- onChange={(e) => setShippingMethod(e.target.value as ShipMethod)}
+ onChange={(e) =>
+ setShippingMethod(e.target.value as ShipMethod)
+ }
onBlur={() => setShipTouched(true)}
renderValue={(selected) => {
- if (!selected) return <span style={{ opacity: 0.6 }}>Pilih Shipping Method</span>;
+ if (!selected)
+ return (
+ <span style={{ opacity: 0.6 }}>
+ Pilih Shipping Method
+ </span>
+ );
const map: Record<string, string> = {
self_pickup: "Self Pickup",
indoteknik_delivery: "Indoteknik Delivery",
@@ -192,17 +214,20 @@ export default function Home() {
<em>Pilih Shipping Method</em>
</MenuItem>
<MenuItem value="self_pickup">Self Pickup</MenuItem>
- <MenuItem value="indoteknik_delivery">Indoteknik Delivery</MenuItem>
+ <MenuItem value="indoteknik_delivery">
+ Indoteknik Delivery
+ </MenuItem>
<MenuItem value="ekspedisi">Ekspedisi</MenuItem>
</Select>
{shipTouched && !shippingMethod && (
- <FormHelperText>Wajib pilih shipping method.</FormHelperText>
+ <FormHelperText>
+ Wajib pilih shipping method.
+ </FormHelperText>
)}
</FormControl>
</div>
)}
-
<div className="h-4" />
<div className="flex justify-between">
@@ -210,19 +235,16 @@ export default function Home() {
<>
{showSjForDispatch && <SjCamera />}
{showDispatchForDispatch && <DispatchCamera />}
- {/* dispatch TIDAK perlu kamera penerima */}
</>
) : (
<>
{/* driver / non-dispatch */}
<SjCamera />
<PackageCamera />
- {/* driver tidak menampilkan kamera dispatch */}
</>
)}
</div>
-
<div className="h-2" />
{/* Preview SJ */}
@@ -271,48 +293,7 @@ export default function Home() {
</label>
<div className="relative w-full h-[300px] border-2 border-gray-200 p-2 rounded-sm">
<Image
- src={imageDispatch}
- alt="Captured"
- fill
- unoptimized
- className="p-2"
- style={{ objectFit: "cover" }}
- />
- </div>
- </>
- )}
-
-
- <div className="h-2" />
-
- {!isDispatch && imagePackage && (
- <>
- <label className="block mt-2 text-sm font-medium text-gray-700 text-center">
- Gambar Foto Penerima
- </label>
- <div className="relative w-full h-[300px] border-2 border-gray-200 p-2 rounded-sm">
- <Image
- src={imagePackage}
- alt="Captured"
- fill
- unoptimized
- className="p-2"
- style={{ objectFit: "cover" }}
- />
- </div>
- </>
- )}
-
- <div className="h-2" />
-
- {!isDriver && imageDispatch && (
- <>
- <label className="block mt-2 text-sm font-medium text-gray-700 text-center">
- Gambar Foto Dispatch
- </label>
- <div className="relative w-full h-[300px] border-2 border-gray-200 p-2 rounded-sm">
- <Image
- src={imageDispatch}
+ src={imageDispatch!}
alt="Captured"
fill
unoptimized
@@ -336,8 +317,7 @@ export default function Home() {
</Button>
</form>
</div>
- )}
- {!isLogin && (
+ ) : (
<div className="py-4 px-4 sm:px-96 pt-20">
<div className="text-center">
<p className="text-2xl font-bold">Loading...</p>