This commit is contained in:
Anang Yusman 2025-09-23 15:53:32 +08:00
parent d337f9e6ea
commit 41eff52e34
6 changed files with 112 additions and 82 deletions

View File

@ -232,9 +232,9 @@ export default function Login() {
{isFirstLogin ? ( {isFirstLogin ? (
<div className="bg-white rounded-2xl shadow-xl p-8 border border-gray-100"> <div className="bg-white rounded-2xl shadow-xl p-8 border border-gray-100">
<div className="text-center mb-8"> <div className="text-center mb-8">
<div className="w-16 h-16 bg-orange-100 rounded-full flex items-center justify-center mx-auto mb-4"> <div className="w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mx-auto mb-4">
<svg <svg
className="w-8 h-8 text-orange-600" className="w-8 h-8 text-blue-900"
fill="none" fill="none"
stroke="currentColor" stroke="currentColor"
viewBox="0 0 24 24" viewBox="0 0 24 24"
@ -292,7 +292,7 @@ export default function Login() {
<Button <Button
size="lg" size="lg"
className="w-full bg-gradient-to-r from-orange-500 to-orange-600 hover:from-orange-600 hover:to-orange-700 text-white font-semibold py-3 rounded-lg transition-all duration-200 shadow-lg hover:shadow-xl" className="w-full bg-gradient-to-r from-blue-500 to-blue-600 hover:from-blue-600 hover:to-blue-700 text-white font-semibold py-3 rounded-lg transition-all duration-200 shadow-lg hover:shadow-xl"
onClick={submitCheckEmail} onClick={submitCheckEmail}
> >
Submit Submit
@ -486,7 +486,7 @@ export default function Login() {
<Button <Button
size="lg" size="lg"
className="w-full bg-gradient-to-r from-orange-500 to-orange-600 hover:from-orange-600 hover:to-orange-700 text-white font-semibold py-3 rounded-lg transition-all duration-200 shadow-lg hover:shadow-xl" className="w-full bg-gradient-to-r from-blue-500 to-blue-600 hover:from-blue-600 hover:to-blue-700 text-white font-semibold py-3 rounded-lg transition-all duration-200 shadow-lg hover:shadow-xl"
onClick={onSubmit} onClick={onSubmit}
> >
Masuk ke Portal Masuk ke Portal

View File

@ -39,7 +39,9 @@ export default function HeaderNews() {
} }
} }
if (articles.length < 4) return null; if (articles.length === 0) {
return <p className="text-center">Belum ada artikel.</p>;
}
return ( return (
<div className="max-w-7xl mx-auto"> <div className="max-w-7xl mx-auto">
@ -47,21 +49,24 @@ export default function HeaderNews() {
{/* Kiri - berita utama */} {/* Kiri - berita utama */}
<div className="relative overflow-hidden h-full"> <div className="relative overflow-hidden h-full">
<Image <Image
src={articles[0].thumbnailUrl || "/dummy.jpg"} src={articles[0]?.thumbnailUrl || "/dummy.jpg"}
alt={articles[0].title} alt={articles[0]?.title || "No Title"}
fill fill
className="object-cover" className="object-cover"
/> />
<div className="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent"></div> <div className="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent"></div>
<div className="absolute bottom-4 left-4 right-4 text-white"> <div className="absolute bottom-4 left-4 right-4 text-white">
<span className="bg-black/70 text-xs px-2 py-1 rounded"> <span className="bg-black/70 text-xs px-2 py-1 rounded">
{articles[0].categories[0]?.title || "Uncategorized"} {articles[0]?.categories?.[0]?.title || "Uncategorized"}
</span> </span>
<h2 className="text-2xl font-bold mt-2">{articles[0].title}</h2> <h2 className="text-2xl font-bold mt-2">{articles[0]?.title}</h2>
<p className="text-sm mt-1"> <p className="text-sm mt-1">
<span className="font-semibold">{articles[0].createdByName}</span>{" "} <span className="font-semibold">
{articles[0]?.createdByName}
</span>{" "}
{" "} {" "}
{new Date(articles[0].createdAt).toLocaleDateString("id-ID", { {articles[0]?.createdAt &&
new Date(articles[0].createdAt).toLocaleDateString("id-ID", {
day: "numeric", day: "numeric",
month: "long", month: "long",
year: "numeric", year: "numeric",
@ -74,26 +79,34 @@ export default function HeaderNews() {
<div className="grid grid-rows-2 gap-2 h-full"> <div className="grid grid-rows-2 gap-2 h-full">
{/* Atas: 2 berita kecil */} {/* Atas: 2 berita kecil */}
<div className="grid grid-cols-2 gap-4"> <div className="grid grid-cols-2 gap-4">
{articles.slice(1, 3).map((item) => ( {[articles[1], articles[2]].map(
<div key={item.id} className="relative overflow-hidden"> (item, idx) =>
item && (
<div
key={item.id || `dummy-${idx}`}
className="relative overflow-hidden"
>
<Image <Image
src={item.thumbnailUrl || "/dummy.jpg"} src={item.thumbnailUrl || "/dummy.jpg"}
alt={item.title} alt={item.title || "No Title"}
fill fill
className="object-cover" className="object-cover"
/> />
<div className="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent"></div> <div className="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent"></div>
<div className="absolute bottom-2 left-2 right-2 text-white"> <div className="absolute bottom-2 left-2 right-2 text-white">
<span className="bg-black/70 text-[10px] px-2 py-1 rounded"> <span className="bg-black/70 text-[10px] px-2 py-1 rounded">
{item.categories[0]?.title || "Uncategorized"} {item.categories?.[0]?.title || "Uncategorized"}
</span> </span>
<h3 className="text-sm font-semibold mt-1 line-clamp-2"> <h3 className="text-sm font-semibold mt-1 line-clamp-2">
{item.title} {item.title}
</h3> </h3>
<p className="text-[10px]"> <p className="text-[10px]">
<span className="font-semibold">{item.createdByName}</span>{" "} <span className="font-semibold">
{item.createdByName}
</span>{" "}
{" "} {" "}
{new Date(item.createdAt).toLocaleDateString("id-ID", { {item.createdAt &&
new Date(item.createdAt).toLocaleDateString("id-ID", {
day: "numeric", day: "numeric",
month: "short", month: "short",
year: "numeric", year: "numeric",
@ -101,40 +114,49 @@ export default function HeaderNews() {
</p> </p>
</div> </div>
</div> </div>
))} )
)}
</div> </div>
{/* Bawah: 1 berita besar */} {/* Bawah: 1 berita besar */}
{articles[3] && (
<div className="relative overflow-hidden"> <div className="relative overflow-hidden">
<Image <Image
src={articles[3].thumbnailUrl || "/dummy.jpg"} src={articles[3]?.thumbnailUrl || "/dummy.jpg"}
alt={articles[3].title} alt={articles[3]?.title || "No Title"}
fill fill
className="object-cover" className="object-cover"
/> />
<div className="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent"></div> <div className="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent"></div>
<div className="absolute bottom-2 left-2 right-2 text-white"> <div className="absolute bottom-2 left-2 right-2 text-white">
<span className="bg-black/70 text-xs px-2 py-1 rounded"> <span className="bg-black/70 text-xs px-2 py-1 rounded">
{articles[3].categories[0]?.title || "Uncategorized"} {articles[3]?.categories?.[0]?.title || "Uncategorized"}
</span> </span>
<h3 className="text-base font-semibold mt-1"> <h3 className="text-base font-semibold mt-1">
{articles[3].title} {articles[3]?.title}
</h3> </h3>
<p className="text-xs"> <p className="text-xs">
<span className="font-semibold"> <span className="font-semibold">
{articles[3].createdByName} {articles[3]?.createdByName}
</span>{" "} </span>{" "}
{" "} {" "}
{new Date(articles[3].createdAt).toLocaleDateString("id-ID", { {articles[3]?.createdAt &&
new Date(articles[3].createdAt).toLocaleDateString(
"id-ID",
{
day: "numeric", day: "numeric",
month: "long", month: "long",
year: "numeric", year: "numeric",
})} }
)}
</p> </p>
</div> </div>
</div> </div>
)}
</div> </div>
</div> </div>
{/* Banner bawah */}
<div className="w-full relative mb-2 h-[120px] overflow-hidden flex items-center border my-8"> <div className="w-full relative mb-2 h-[120px] overflow-hidden flex items-center border my-8">
<Image <Image
src={"/image-kolom.png"} src={"/image-kolom.png"}

View File

@ -6,7 +6,7 @@ const axiosBaseInstance = axios.create({
baseURL, baseURL,
headers: { headers: {
"Content-Type": "application/json", "Content-Type": "application/json",
"X-Client-Key": "bb65b1ad-e954-4a1a-b4d0-74df5bb0b640" "X-Client-Key": "02080003-5ad6-4b85-8ee6-0e14ec39349d",
}, },
}); });

View File

@ -10,7 +10,7 @@ const axiosInterceptorInstance = axios.create({
baseURL, baseURL,
headers: { headers: {
"Content-Type": "application/json", "Content-Type": "application/json",
"X-Client-Key": "bb65b1ad-e954-4a1a-b4d0-74df5bb0b640" "X-Client-Key": "02080003-5ad6-4b85-8ee6-0e14ec39349d",
}, },
withCredentials: true, withCredentials: true,
}); });

View File

@ -2,11 +2,11 @@ import axiosBaseInstance from "./axios-base-instance";
const defaultHeaders = { const defaultHeaders = {
"Content-Type": "application/json", "Content-Type": "application/json",
"X-Client-Key": "bb65b1ad-e954-4a1a-b4d0-74df5bb0b640" "X-Client-Key": "02080003-5ad6-4b85-8ee6-0e14ec39349d",
}; };
export async function httpGet(pathUrl: any, headers?: any) { export async function httpGet(pathUrl: any, headers?: any) {
console.log("X-HEADERS : ", defaultHeaders) console.log("X-HEADERS : ", defaultHeaders);
const mergedHeaders = { const mergedHeaders = {
...defaultHeaders, ...defaultHeaders,
...headers, ...headers,

View File

@ -5,11 +5,11 @@ import { getCsrfToken } from "../master-user";
const defaultHeaders = { const defaultHeaders = {
"Content-Type": "application/json", "Content-Type": "application/json",
"X-Client-Key": "bb65b1ad-e954-4a1a-b4d0-74df5bb0b640" "X-Client-Key": "02080003-5ad6-4b85-8ee6-0e14ec39349d",
}; };
export async function httpGetInterceptor(pathUrl: any) { export async function httpGetInterceptor(pathUrl: any) {
console.log("X-HEADERS : ", defaultHeaders) console.log("X-HEADERS : ", defaultHeaders);
const response = await axiosInterceptorInstance const response = await axiosInterceptorInstance
.get(pathUrl, { headers: defaultHeaders }) .get(pathUrl, { headers: defaultHeaders })
.catch((error) => error.response); .catch((error) => error.response);
@ -35,7 +35,11 @@ export async function httpGetInterceptor(pathUrl: any) {
} }
} }
export async function httpPostInterceptor(pathUrl: any, data: any, headers?: any) { export async function httpPostInterceptor(
pathUrl: any,
data: any,
headers?: any
) {
const resCsrf = await getCsrfToken(); const resCsrf = await getCsrfToken();
const csrfToken = resCsrf?.data?.csrf_token; const csrfToken = resCsrf?.data?.csrf_token;
@ -67,7 +71,11 @@ export async function httpPostInterceptor(pathUrl: any, data: any, headers?: any
} }
} }
export async function httpPutInterceptor(pathUrl: any, data: any, headers?: any) { export async function httpPutInterceptor(
pathUrl: any,
data: any,
headers?: any
) {
const resCsrf = await getCsrfToken(); const resCsrf = await getCsrfToken();
const csrfToken = resCsrf?.data?.csrf_token; const csrfToken = resCsrf?.data?.csrf_token;