summaryrefslogtreecommitdiff
path: root/app/page.tsx
blob: 07a89f12b8192156001368a07fd54549ae108a02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
"use client";
import Image from "next/image";
import PackageCamera from "./lib/camera/component/pakageCamera";
import BarcodeScanner from "./lib/camera/component/scannerBarcode";
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 } from "@mui/material";
import { SaveAsOutlined } from "@mui/icons-material";
import axios from "axios";
import odooApi from "./lib/api/odooApi";
import { useEffect, useState } from "react";
import { useRouter } from "next/navigation";
import { getAuth } from "./lib/api/auth";

// ====== ROLE EMAIL LISTS ======
const DRIVER_EMAILS = new Set(
  ["driverindoteknik@gmail.com", "sulistianaridwan8@gmail.com"]
    .map(e => e.toLowerCase())
);

const DISPATCH_EMAILS = new Set(
  ["rahmat.afiudin@gmail.com", "it@fixcomart.co.id"]
    .map(e => e.toLowerCase())
);

function extractEmailFromAuth(auth: unknown): string | null {
  if (auth && typeof auth === "object" && "email" in (auth as any)) {
    const email = (auth as any).email;
    if (typeof email === "string") return email;
  }
  if (auth && typeof auth === "object" && "token" in (auth as any)) {
    const t = (auth as any).token;
    if (typeof t === "string") {
      const parts = t.split(".");
      if (parts.length === 3) {
        try {
          const payload = JSON.parse(atob(parts[1]));
          return payload?.email ?? payload?.preferred_username ?? payload?.sub ?? null;
        } catch {}
      }
    }
  }
  if (typeof auth === "string") {
    const parts = auth.split(".");
    if (parts.length === 3) {
      try {
        const payload = JSON.parse(atob(parts[1]));
        return payload?.email ?? payload?.preferred_username ?? payload?.sub ?? null;
      } catch {}
    }
  }
  return null;
}

export default function Home() {
  const [isLogin, setIsLogin] = useState<boolean>(true);
  const [isDriver, setIsDriver] = useState<boolean>(false);
  const [isDispatch, setIsDispatch] = useState<boolean>(false);

  const {
    barcode,
    imageSj,
    imagePackage,
    imageDispatch,
    setBarcode,
    setImageSj,
    setImagePackage,
    setImageDispatch,
  } = useCameraStore();

  const [isLoading, setIsLoading] = useState<boolean>(false);
  const router = useRouter();

  useEffect(() => {
    const token = getAuth();
    console.log("FE auth (akan dipakai untuk header Token):", token);

    if (!token) {
      router.push("/login");
    } else {
      setIsLogin(true);

      const email = extractEmailFromAuth(token);
      const lower = (email ?? "").toLowerCase();

      // PRIORITAS: dispatch > driver
      const dispatchFlag = DISPATCH_EMAILS.has(lower);
      const driverFlag = DRIVER_EMAILS.has(lower) && !dispatchFlag;

      setIsDispatch(dispatchFlag);
      setIsDriver(driverFlag);
    }
  }, [router]);

  const handleSubmit = async (event: React.FormEvent<HTMLFormElement>) => {
    event.preventDefault();
    setIsLoading(true);

    // Hanya role dispatch yang wajib foto Dispatch
    const needDispatch = isDispatch;

    if (!barcode || !imageSj || !imagePackage || (needDispatch && !imageDispatch)) {
      alert(
        needDispatch
          ? "Barcode, Foto SJ, Foto Penerima, dan Foto Dispatch harus tersedia."
          : "Barcode, Foto SJ, dan Foto Penerima harus tersedia."
      );
      setIsLoading(false);
      return;
    }

    try {
      const newSjImage = imageSj.replace(/^.*?,/, "");
      const newPackageImage = imagePackage.replace(/^.*?,/, "");
      const newDispatchImage = imageDispatch ? imageDispatch.replace(/^.*?,/, "") : undefined;

      const data: any = {
        sj_document: newSjImage,
        paket_document: newPackageImage,
      };
      if (!isDriver && newDispatchImage) {
        data.dispatch_document = newDispatchImage;
      }

      const response = await odooApi(
        "PUT",
        `/api/v1/stock-picking/${barcode}/documentation`,
        data
      );

      if (response.status.code == 200) {
        alert("Berhasil Submit Data");
        setBarcode("");
        setImageSj("");
        setImagePackage("");
        setImageDispatch("");
        setIsLoading(false);
      } else if (response.status.code == 404) {
        alert("Gagal Submit Data, Picking Code Tidak Ditemukan ");
        setIsLoading(false);
      } else {
        alert("Gagal Submit Data, Silahkan Coba Lagi");
        setIsLoading(false);
      }
      return response.data;
    } catch (error: unknown) {
      if (error instanceof Error) {
        console.error("Error mengirim data:", error.message);
      } else if (axios.isAxiosError(error)) {
        console.error("Error:", error.response?.data);
      } else {
        console.error("Unknown error:", error);
      }
      setIsLoading(false);
    }
  };

  return (
    <div className="bg-white h-screen overflow-auto">
      <Header />
      {isLogin && (
        <div className="py-4 px-4 sm:px-96 pt-20">
          <form onSubmit={handleSubmit}>
            <div>
              <BarcodeScanner />
            </div>
            <div className="h-4"></div>

            <div className="flex justify-between">
              <SjCamera />
              <PackageCamera />
              {!isDriver && <DispatchCamera />} {/* disembunyikan untuk driver */}
            </div>
            <div className="h-2"></div>

            {imageSj && (
              <>
                <label className="block mt-2 text-sm font-medium text-gray-700 text-center">
                  Gambar Foto Surat Jalan
                </label>
                <div className="relative w-full h-[300px] border-2 border-gray-200 p-2 rounded-sm">
                  <Image
                    src={imageSj}
                    alt="Captured"
                    layout="fill"
                    objectFit="cover"
                    unoptimized
                    className="p-2"
                  />
                </div>
              </>
            )}

            <div className="h-2"></div>

            {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"
                    layout="fill"
                    objectFit="cover"
                    unoptimized
                    className="p-2"
                  />
                </div>
              </>
            )}

            <div className="h-2"></div>

            {!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}
                    alt="Captured"
                    layout="fill"
                    objectFit="cover"
                    unoptimized
                    className="p-2"
                  />
                </div>
              </>
            )}

            <div>
              <div className="h-4"></div>
              <Button
                className="w-[50%] sm:w-[25%]"
                variant="contained"
                color="error"
                startIcon={<SaveAsOutlined />}
                type="submit"
                disabled={isLoading}
              >
                Simpan
              </Button>
            </div>
          </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>
          </div>
        </div>
      )}
    </div>
  );
}