2025-06-11 06:08:44 +00:00
|
|
|
|
"use client";
|
|
|
|
|
|
import React, {
|
|
|
|
|
|
ChangeEvent,
|
|
|
|
|
|
Fragment,
|
|
|
|
|
|
useEffect,
|
|
|
|
|
|
useRef,
|
|
|
|
|
|
useState,
|
|
|
|
|
|
} from "react";
|
|
|
|
|
|
import { useForm, Controller } from "react-hook-form";
|
|
|
|
|
|
import { Input } from "@/components/ui/input";
|
|
|
|
|
|
import { Button } from "@/components/ui/button";
|
|
|
|
|
|
import { Label } from "@/components/ui/label";
|
|
|
|
|
|
import { Card } from "@/components/ui/card";
|
|
|
|
|
|
import { zodResolver } from "@hookform/resolvers/zod";
|
|
|
|
|
|
import * as z from "zod";
|
|
|
|
|
|
import Swal from "sweetalert2";
|
|
|
|
|
|
import withReactContent from "sweetalert2-react-content";
|
|
|
|
|
|
import { useParams, useRouter } from "next/navigation";
|
|
|
|
|
|
import {
|
|
|
|
|
|
Select,
|
|
|
|
|
|
SelectContent,
|
|
|
|
|
|
SelectItem,
|
|
|
|
|
|
SelectTrigger,
|
|
|
|
|
|
SelectValue,
|
|
|
|
|
|
} from "@/components/ui/select";
|
|
|
|
|
|
import { Checkbox } from "@/components/ui/checkbox";
|
|
|
|
|
|
import { RadioGroup, RadioGroupItem } from "@/components/ui/radio-group";
|
2025-07-04 19:42:42 +00:00
|
|
|
|
|
2025-06-11 06:08:44 +00:00
|
|
|
|
import { register } from "module";
|
|
|
|
|
|
import { Switch } from "@/components/ui/switch";
|
|
|
|
|
|
import Cookies from "js-cookie";
|
|
|
|
|
|
import {
|
|
|
|
|
|
createMedia,
|
|
|
|
|
|
deleteFile,
|
|
|
|
|
|
deleteMedia,
|
|
|
|
|
|
getTagsBySubCategoryId,
|
|
|
|
|
|
listEnableCategory,
|
|
|
|
|
|
uploadThumbnail,
|
|
|
|
|
|
} from "@/service/content/content";
|
|
|
|
|
|
import { detailMedia } from "@/service/curated-content/curated-content";
|
|
|
|
|
|
import { Badge } from "@/components/ui/badge";
|
|
|
|
|
|
import { CloudUpload, MailIcon } from "lucide-react";
|
|
|
|
|
|
import dynamic from "next/dynamic";
|
|
|
|
|
|
import { useDropzone } from "react-dropzone";
|
|
|
|
|
|
import { Icon } from "@iconify/react/dist/iconify.js";
|
|
|
|
|
|
import Image from "next/image";
|
|
|
|
|
|
import { error, loading } from "@/lib/swal";
|
|
|
|
|
|
import { getCsrfToken } from "@/service/auth";
|
|
|
|
|
|
import { Upload } from "tus-js-client";
|
|
|
|
|
|
import { useTranslations } from "next-intl";
|
|
|
|
|
|
|
|
|
|
|
|
const imageSchema = z.object({
|
|
|
|
|
|
title: z.string().min(1, { message: "Judul diperlukan" }),
|
|
|
|
|
|
description: z
|
|
|
|
|
|
.string()
|
|
|
|
|
|
.min(2, { message: "Narasi Penugasan harus lebih dari 2 karakter." }),
|
|
|
|
|
|
creatorName: z.string().min(1, { message: "Creator diperlukan" }),
|
|
|
|
|
|
// tags: z.string().min(1, { message: "Judul diperlukan" }),
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
type Category = {
|
|
|
|
|
|
id: string;
|
|
|
|
|
|
name: string;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
type Detail = {
|
|
|
|
|
|
id: string;
|
|
|
|
|
|
title: string;
|
|
|
|
|
|
description: string;
|
|
|
|
|
|
slug: string;
|
|
|
|
|
|
category: {
|
|
|
|
|
|
id: string;
|
|
|
|
|
|
name: string;
|
|
|
|
|
|
};
|
|
|
|
|
|
publishedFor: string;
|
|
|
|
|
|
|
|
|
|
|
|
publishedForObject: {
|
|
|
|
|
|
id: number;
|
|
|
|
|
|
name: string;
|
|
|
|
|
|
};
|
|
|
|
|
|
creatorName: string;
|
|
|
|
|
|
categoryName: string;
|
|
|
|
|
|
thumbnailLink: string;
|
|
|
|
|
|
tags: string;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
type Option = {
|
|
|
|
|
|
id: string;
|
|
|
|
|
|
name: string;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const CustomEditor = dynamic(
|
|
|
|
|
|
() => {
|
|
|
|
|
|
return import("@/components/editor/custom-editor");
|
|
|
|
|
|
},
|
|
|
|
|
|
{ ssr: false }
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
interface FileWithPreview extends File {
|
|
|
|
|
|
preview: string;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export default function FormImageUpdate() {
|
|
|
|
|
|
const MySwal = withReactContent(Swal);
|
|
|
|
|
|
const router = useRouter();
|
|
|
|
|
|
|
|
|
|
|
|
const { id } = useParams() as { id: string };
|
|
|
|
|
|
console.log(id);
|
|
|
|
|
|
const editor = useRef(null);
|
|
|
|
|
|
type ImageSchema = z.infer<typeof imageSchema>;
|
|
|
|
|
|
|
|
|
|
|
|
let progressInfo: any = [];
|
|
|
|
|
|
let counterUpdateProgress = 0;
|
|
|
|
|
|
const [progressList, setProgressList] = useState<any>([]);
|
|
|
|
|
|
let uploadPersen = 0;
|
|
|
|
|
|
const [isStartUpload, setIsStartUpload] = useState(false);
|
|
|
|
|
|
const [counterProgress, setCounterProgress] = useState(0);
|
|
|
|
|
|
const t = useTranslations("Form");
|
|
|
|
|
|
const [selectedFiles, setSelectedFiles] = useState<File[]>([]);
|
|
|
|
|
|
const taskId = Cookies.get("taskId");
|
|
|
|
|
|
const scheduleId = Cookies.get("scheduleId");
|
|
|
|
|
|
const scheduleType = Cookies.get("scheduleType");
|
|
|
|
|
|
|
|
|
|
|
|
const [categories, setCategories] = useState<Category[]>([]);
|
|
|
|
|
|
const [selectedCategory, setSelectedCategory] = useState<any>();
|
|
|
|
|
|
const [tags, setTags] = useState<any[]>([]);
|
|
|
|
|
|
const [detail, setDetail] = useState<Detail>();
|
|
|
|
|
|
const [refresh, setRefresh] = useState(false);
|
|
|
|
|
|
const [selectedPublishers, setSelectedPublishers] = useState<number[]>([]);
|
|
|
|
|
|
const [articleBody, setArticleBody] = useState<string>("");
|
|
|
|
|
|
const [files, setFiles] = useState<FileWithPreview[]>([]);
|
|
|
|
|
|
const [filesTemp, setFilesTemp] = useState<File[]>([]);
|
|
|
|
|
|
const [publishedFor, setPublishedFor] = useState<string[]>([]);
|
|
|
|
|
|
const inputRef = useRef<HTMLInputElement>(null);
|
|
|
|
|
|
const [selectedOptions, setSelectedOptions] = useState<{
|
|
|
|
|
|
[fileId: number]: string[];
|
|
|
|
|
|
}>({});
|
|
|
|
|
|
|
|
|
|
|
|
const options: Option[] = [
|
|
|
|
|
|
{ id: "all", name: "SEMUA" },
|
|
|
|
|
|
{ id: "5", name: "UMUM" },
|
|
|
|
|
|
{ id: "6", name: "JOURNALIS" },
|
|
|
|
|
|
{ id: "7", name: "POLRI" },
|
|
|
|
|
|
{ id: "8", name: "KSP" },
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
const [selectedTarget, setSelectedTarget] = useState<string | undefined>(
|
|
|
|
|
|
detail?.category.id
|
|
|
|
|
|
);
|
|
|
|
|
|
const [unitSelection, setUnitSelection] = useState({
|
|
|
|
|
|
allUnit: false,
|
|
|
|
|
|
mabes: false,
|
|
|
|
|
|
polda: false,
|
|
|
|
|
|
polres: false,
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
let fileTypeId = "1";
|
|
|
|
|
|
|
|
|
|
|
|
const { getRootProps, getInputProps } = useDropzone({
|
|
|
|
|
|
onDrop: (acceptedFiles) => {
|
|
|
|
|
|
setFiles(acceptedFiles.map((file) => Object.assign(file)));
|
|
|
|
|
|
},
|
|
|
|
|
|
accept: {
|
|
|
|
|
|
"image/*": [],
|
|
|
|
|
|
},
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
const {
|
|
|
|
|
|
control,
|
|
|
|
|
|
handleSubmit,
|
|
|
|
|
|
setValue,
|
|
|
|
|
|
formState: { errors },
|
|
|
|
|
|
} = useForm<ImageSchema>({
|
|
|
|
|
|
resolver: zodResolver(imageSchema),
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
// const handleKeyDown = (e: any) => {
|
|
|
|
|
|
// const newTag = e.target.value.trim(); // Ambil nilai input
|
|
|
|
|
|
// if (e.key === "Enter" && newTag) {
|
|
|
|
|
|
// e.preventDefault(); // Hentikan submit form
|
|
|
|
|
|
// if (!tags.includes(newTag)) {
|
|
|
|
|
|
// setTags((prevTags) => [...prevTags, newTag]); // Tambah tag baru
|
|
|
|
|
|
// setValue("tags", ""); // Kosongkan input
|
|
|
|
|
|
// }
|
|
|
|
|
|
// }
|
|
|
|
|
|
// };
|
|
|
|
|
|
|
|
|
|
|
|
const handleImageChange = (event: ChangeEvent<HTMLInputElement>) => {
|
|
|
|
|
|
if (event.target.files) {
|
|
|
|
|
|
const files = Array.from(event.target.files);
|
|
|
|
|
|
setSelectedFiles((prevImages: any) => [...prevImages, ...files]);
|
|
|
|
|
|
console.log("DATAFILE::", selectedFiles);
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const handleRemoveImage = (index: number) => {
|
|
|
|
|
|
setSelectedFiles((prevImages) => prevImages.filter((_, i) => i !== index));
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// const handleCheckboxChange = (id: number) => {
|
|
|
|
|
|
// setSelectedPublishers((prev) =>
|
|
|
|
|
|
// prev.includes(id) ? prev.filter((item) => item !== id) : [...prev, id]
|
|
|
|
|
|
// );
|
|
|
|
|
|
// };
|
|
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
|
async function initState() {
|
|
|
|
|
|
getCategories();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
initState();
|
|
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
|
|
|
|
const handleAddTag = (e: React.KeyboardEvent<HTMLInputElement>) => {
|
|
|
|
|
|
if (e.key === "Enter" && e.currentTarget.value.trim()) {
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
const newTag = e.currentTarget.value.trim();
|
|
|
|
|
|
if (!tags.includes(newTag)) {
|
|
|
|
|
|
setTags((prevTags) => [...prevTags, newTag]); // Tambahkan tag baru
|
|
|
|
|
|
if (inputRef.current) {
|
|
|
|
|
|
inputRef.current.value = ""; // Kosongkan input
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const handleRemoveTag = (index: number) => {
|
|
|
|
|
|
setTags((prevTags) => prevTags.filter((_, i) => i !== index));
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const handleEditTag = (index: number, newValue: string) => {
|
|
|
|
|
|
setTags((prevTags) =>
|
|
|
|
|
|
prevTags.map((tag, i) => (i === index ? newValue : tag))
|
|
|
|
|
|
);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const getCategories = async () => {
|
|
|
|
|
|
try {
|
|
|
|
|
|
const category = await listEnableCategory(fileTypeId);
|
|
|
|
|
|
const resCategory: Category[] = category?.data?.data?.content;
|
|
|
|
|
|
|
|
|
|
|
|
setCategories(resCategory);
|
|
|
|
|
|
console.log("data category", resCategory);
|
|
|
|
|
|
|
|
|
|
|
|
if (scheduleId && scheduleType === "3") {
|
|
|
|
|
|
const findCategory = resCategory.find((o) =>
|
|
|
|
|
|
o.name.toLowerCase().includes("pers rilis")
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
if (findCategory) {
|
|
|
|
|
|
// setValue("categoryId", findCategory.id);
|
|
|
|
|
|
setSelectedCategory(findCategory.id); // Set the selected category
|
|
|
|
|
|
const response = await getTagsBySubCategoryId(findCategory.id);
|
|
|
|
|
|
setTags(response?.data?.data);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error("Failed to fetch categories:", error);
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
|
async function initState() {
|
|
|
|
|
|
if (id) {
|
|
|
|
|
|
const response = await detailMedia(id);
|
|
|
|
|
|
const details = response?.data?.data;
|
|
|
|
|
|
|
|
|
|
|
|
setDetail(details);
|
|
|
|
|
|
|
|
|
|
|
|
if (details?.files) {
|
|
|
|
|
|
setFiles(details.files);
|
|
|
|
|
|
|
|
|
|
|
|
const initialOptions: { [key: number]: string[] } = {};
|
|
|
|
|
|
details.files.forEach((file: any) => {
|
|
|
|
|
|
if (file.placements) {
|
|
|
|
|
|
initialOptions[file.id] = mapPlacementsToOptions(file.placements);
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
setSelectedOptions(initialOptions);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (details?.publishedFor) {
|
|
|
|
|
|
// Split string "7" to an array ["7"] if needed
|
|
|
|
|
|
setPublishedFor(details.publishedFor.split(","));
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (details?.tags) {
|
|
|
|
|
|
setTags(details.tags.split(",").map((tag: string) => tag.trim()));
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const matchingCategory = categories.find(
|
|
|
|
|
|
(category) => category.id === details.categoryId
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
if (matchingCategory) {
|
|
|
|
|
|
setSelectedTarget(matchingCategory.name);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
setSelectedTarget(details.categoryId); // Untuk dropdown
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
initState();
|
|
|
|
|
|
}, [refresh, setValue]);
|
|
|
|
|
|
|
|
|
|
|
|
const mapPlacementsToOptions = (placements: string): string[] => {
|
|
|
|
|
|
const mapping: Record<string, string> = {
|
|
|
|
|
|
all: "all",
|
|
|
|
|
|
mabes: "nasional",
|
|
|
|
|
|
polda: "wilayah",
|
|
|
|
|
|
polres: "internasional",
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// Jika placements hanya "all", langsung aktifkan semua checkbox
|
|
|
|
|
|
if (placements.trim() === "all") {
|
|
|
|
|
|
return ["all", "nasional", "wilayah", "internasional"];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const options = placements
|
|
|
|
|
|
.split(",")
|
|
|
|
|
|
.map((p) => mapping[p.trim()])
|
|
|
|
|
|
.filter(Boolean);
|
|
|
|
|
|
|
|
|
|
|
|
const allSelected = ["nasional", "wilayah", "internasional"].every((opt) =>
|
|
|
|
|
|
options.includes(opt)
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
return allSelected ? ["all", ...options] : options;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const handleCheckboxChange = (id: string) => {
|
|
|
|
|
|
if (id === "all") {
|
|
|
|
|
|
// Select all options except "all"
|
|
|
|
|
|
const allOptions = options
|
|
|
|
|
|
.filter((opt) => opt.id !== "all")
|
|
|
|
|
|
.map((opt) => opt.id);
|
|
|
|
|
|
setPublishedFor(
|
|
|
|
|
|
publishedFor.length === allOptions.length ? [] : allOptions
|
|
|
|
|
|
);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
// Toggle individual option
|
|
|
|
|
|
setPublishedFor((prev) =>
|
|
|
|
|
|
prev.includes(id) ? prev.filter((item) => item !== id) : [...prev, id]
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const save = async (data: ImageSchema) => {
|
|
|
|
|
|
loading();
|
|
|
|
|
|
const finalTags = tags.join(", ");
|
|
|
|
|
|
const requestData = {
|
|
|
|
|
|
...data,
|
|
|
|
|
|
id: detail?.id,
|
|
|
|
|
|
title: data.title,
|
|
|
|
|
|
description: data.description,
|
|
|
|
|
|
htmlDescription: data.description,
|
|
|
|
|
|
fileTypeId,
|
|
|
|
|
|
categoryId: selectedTarget,
|
|
|
|
|
|
subCategoryId: selectedTarget,
|
|
|
|
|
|
uploadedBy: "2b7c8d83-d298-4b19-9f74-b07924506b58",
|
|
|
|
|
|
statusId: "1",
|
|
|
|
|
|
publishedFor: publishedFor.join(","),
|
|
|
|
|
|
creatorName: data.creatorName,
|
|
|
|
|
|
tags: finalTags,
|
|
|
|
|
|
isYoutube: false,
|
|
|
|
|
|
isInternationalMedia: false,
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const response = await createMedia(requestData);
|
|
|
|
|
|
console.log("Form Data Submitted:", requestData);
|
|
|
|
|
|
|
|
|
|
|
|
const formMedia = new FormData();
|
|
|
|
|
|
const thumbnail = files[0];
|
|
|
|
|
|
formMedia.append("file", thumbnail);
|
|
|
|
|
|
const responseThumbnail = await uploadThumbnail(id, formMedia);
|
|
|
|
|
|
if (responseThumbnail?.error == true) {
|
|
|
|
|
|
error(responseThumbnail?.message);
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const progressInfoArr = [];
|
|
|
|
|
|
for (const item of files) {
|
|
|
|
|
|
progressInfoArr.push({ percentage: 0, fileName: item.name });
|
|
|
|
|
|
}
|
|
|
|
|
|
progressInfo = progressInfoArr;
|
|
|
|
|
|
setIsStartUpload(true);
|
|
|
|
|
|
setProgressList(progressInfoArr);
|
|
|
|
|
|
|
|
|
|
|
|
close();
|
|
|
|
|
|
// showProgress();
|
|
|
|
|
|
files.map(async (item: any, index: number) => {
|
|
|
|
|
|
await uploadResumableFile(
|
|
|
|
|
|
index,
|
|
|
|
|
|
String(id),
|
|
|
|
|
|
item,
|
|
|
|
|
|
fileTypeId == "2" || fileTypeId == "4" ? item.duration : "0"
|
|
|
|
|
|
);
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
MySwal.fire({
|
|
|
|
|
|
title: "Sukses",
|
|
|
|
|
|
text: "Data berhasil disimpan.",
|
|
|
|
|
|
icon: "success",
|
|
|
|
|
|
confirmButtonColor: "#3085d6",
|
|
|
|
|
|
confirmButtonText: "OK",
|
|
|
|
|
|
}).then(() => {
|
|
|
|
|
|
router.push("/in/contributor/content/image");
|
|
|
|
|
|
});
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
async function uploadResumableFile(
|
|
|
|
|
|
idx: number,
|
|
|
|
|
|
id: string,
|
|
|
|
|
|
file: any,
|
|
|
|
|
|
duration: string
|
|
|
|
|
|
) {
|
|
|
|
|
|
console.log(idx, id, file, duration);
|
|
|
|
|
|
|
|
|
|
|
|
// const placements = getPlacement(file.placements);
|
|
|
|
|
|
// console.log("Placementttt: : ", placements);
|
|
|
|
|
|
|
|
|
|
|
|
const resCsrf = await getCsrfToken();
|
|
|
|
|
|
const csrfToken = resCsrf?.data?.token;
|
|
|
|
|
|
console.log("CSRF TOKEN : ", csrfToken);
|
|
|
|
|
|
const headers = {
|
|
|
|
|
|
"X-XSRF-TOKEN": csrfToken,
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const upload = new Upload(file, {
|
|
|
|
|
|
endpoint: `${process.env.NEXT_PUBLIC_API}/media/file/upload`,
|
|
|
|
|
|
headers: headers,
|
|
|
|
|
|
retryDelays: [0, 3000, 6000, 12_000, 24_000],
|
|
|
|
|
|
chunkSize: 20_000,
|
|
|
|
|
|
metadata: {
|
|
|
|
|
|
mediaid: id,
|
|
|
|
|
|
filename: file.name,
|
|
|
|
|
|
filetype: file.type,
|
|
|
|
|
|
duration,
|
|
|
|
|
|
isWatermark: "true", // hardcode
|
|
|
|
|
|
},
|
|
|
|
|
|
onBeforeRequest: function (req) {
|
|
|
|
|
|
var xhr = req.getUnderlyingObject();
|
|
|
|
|
|
xhr.withCredentials = true;
|
|
|
|
|
|
},
|
|
|
|
|
|
onError: async (e: any) => {
|
|
|
|
|
|
console.log("Error upload :", e);
|
|
|
|
|
|
error(e);
|
|
|
|
|
|
},
|
|
|
|
|
|
onChunkComplete: (
|
|
|
|
|
|
chunkSize: any,
|
|
|
|
|
|
bytesAccepted: any,
|
|
|
|
|
|
bytesTotal: any
|
|
|
|
|
|
) => {
|
|
|
|
|
|
const uploadPersen = Math.floor((bytesAccepted / bytesTotal) * 100);
|
|
|
|
|
|
progressInfo[idx].percentage = uploadPersen;
|
|
|
|
|
|
counterUpdateProgress++;
|
|
|
|
|
|
console.log(counterUpdateProgress);
|
|
|
|
|
|
setProgressList(progressInfo);
|
|
|
|
|
|
setCounterProgress(counterUpdateProgress);
|
|
|
|
|
|
},
|
|
|
|
|
|
onSuccess: async () => {
|
|
|
|
|
|
uploadPersen = 100;
|
|
|
|
|
|
progressInfo[idx].percentage = 100;
|
|
|
|
|
|
counterUpdateProgress++;
|
|
|
|
|
|
setCounterProgress(counterUpdateProgress);
|
|
|
|
|
|
successTodo();
|
|
|
|
|
|
},
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
upload.start();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const onSubmit = (data: ImageSchema) => {
|
|
|
|
|
|
MySwal.fire({
|
|
|
|
|
|
title: "Simpan Data",
|
|
|
|
|
|
text: "Apakah Anda yakin ingin menyimpan data ini?",
|
|
|
|
|
|
icon: "warning",
|
|
|
|
|
|
showCancelButton: true,
|
|
|
|
|
|
cancelButtonColor: "#d33",
|
|
|
|
|
|
confirmButtonColor: "#3085d6",
|
|
|
|
|
|
confirmButtonText: "Simpan",
|
|
|
|
|
|
}).then((result) => {
|
|
|
|
|
|
if (result.isConfirmed) {
|
|
|
|
|
|
save(data);
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const successSubmit = (redirect: string) => {
|
|
|
|
|
|
MySwal.fire({
|
|
|
|
|
|
title: "Sukses",
|
|
|
|
|
|
text: "Data berhasil disimpan.",
|
|
|
|
|
|
icon: "success",
|
|
|
|
|
|
confirmButtonColor: "#3085d6",
|
|
|
|
|
|
confirmButtonText: "OK",
|
|
|
|
|
|
}).then(() => {
|
|
|
|
|
|
router.push(redirect);
|
|
|
|
|
|
});
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
function successTodo() {
|
|
|
|
|
|
let counter = 0;
|
|
|
|
|
|
for (const element of progressInfo) {
|
|
|
|
|
|
if (element.percentage == 100) {
|
|
|
|
|
|
counter++;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
if (counter == progressInfo.length) {
|
|
|
|
|
|
setIsStartUpload(false);
|
|
|
|
|
|
// hideProgress();
|
|
|
|
|
|
Cookies.remove("idCreate");
|
|
|
|
|
|
successSubmit("/in/contributor/content/image/");
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const handleRemoveAllFiles = () => {
|
|
|
|
|
|
setFiles([]);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const renderFilePreview = (file: FileWithPreview) => {
|
|
|
|
|
|
if (file?.type?.startsWith("image")) {
|
|
|
|
|
|
return (
|
|
|
|
|
|
<Image
|
|
|
|
|
|
width={48}
|
|
|
|
|
|
height={48}
|
|
|
|
|
|
alt={file.name}
|
|
|
|
|
|
src={URL.createObjectURL(file)}
|
|
|
|
|
|
className=" rounded border p-0.5"
|
|
|
|
|
|
/>
|
|
|
|
|
|
);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
return <Icon icon="tabler:file-description" />;
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const handleRemoveFile = (file: FileWithPreview) => {
|
|
|
|
|
|
const uploadedFiles = files;
|
|
|
|
|
|
const filtered = uploadedFiles.filter((i) => i.name !== file.name);
|
|
|
|
|
|
setFiles([...filtered]);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const fileList = files.map((file: any) => (
|
|
|
|
|
|
<div
|
|
|
|
|
|
key={file.id} // Gunakan ID file sebagai key
|
|
|
|
|
|
className="flex justify-between border px-3.5 py-3 my-6 rounded-md"
|
|
|
|
|
|
>
|
|
|
|
|
|
<div className="flex gap-3 items-center">
|
|
|
|
|
|
<div className="file-preview">{renderFilePreview(file)}</div>
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<div className="text-sm text-card-foreground">
|
|
|
|
|
|
{file.fileName || file.name}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div className="text-xs font-light text-muted-foreground">
|
|
|
|
|
|
{Math.round(file.size / 100) / 10 > 1000 ? (
|
|
|
|
|
|
<>{(Math.round(file.size / 100) / 10000).toFixed(1)}</>
|
|
|
|
|
|
) : (
|
|
|
|
|
|
<>{(Math.round(file.size / 100) / 10).toFixed(1)}</>
|
|
|
|
|
|
)}
|
|
|
|
|
|
{" kb"}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
|
size="icon"
|
|
|
|
|
|
color="destructive"
|
|
|
|
|
|
variant="outline"
|
|
|
|
|
|
className="border-none rounded-full"
|
|
|
|
|
|
onClick={() => handleDeleteFile(file.id)} // Kirim ID spesifik
|
|
|
|
|
|
>
|
|
|
|
|
|
<Icon icon="tabler:x" className="h-5 w-5" />
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
));
|
|
|
|
|
|
|
|
|
|
|
|
const handleCheckboxChangeImage = (fileId: number, value: string) => {
|
|
|
|
|
|
setSelectedOptions((prev: any) => {
|
|
|
|
|
|
const currentSelections = prev[fileId] || [];
|
|
|
|
|
|
if (value === "all") {
|
|
|
|
|
|
// If "all" is clicked, toggle all options
|
|
|
|
|
|
if (currentSelections.includes("all")) {
|
|
|
|
|
|
return { ...prev, [fileId]: [] }; // Deselect all
|
|
|
|
|
|
}
|
|
|
|
|
|
return {
|
|
|
|
|
|
...prev,
|
|
|
|
|
|
[fileId]: ["all", "nasional", "wilayah", "internasional"],
|
|
|
|
|
|
}; // Select all
|
|
|
|
|
|
} else {
|
|
|
|
|
|
// If any other checkbox is clicked, toggle that checkbox
|
|
|
|
|
|
const updatedSelections = currentSelections.includes(value)
|
|
|
|
|
|
? currentSelections.filter((option: any) => option !== value)
|
|
|
|
|
|
: [...currentSelections, value];
|
|
|
|
|
|
|
|
|
|
|
|
// If all individual options are selected, include "all" automatically
|
|
|
|
|
|
const isAllSelected = ["nasional", "wilayah", "internasional"].every(
|
|
|
|
|
|
(opt) => updatedSelections.includes(opt)
|
|
|
|
|
|
);
|
|
|
|
|
|
return {
|
|
|
|
|
|
...prev,
|
|
|
|
|
|
[fileId]: isAllSelected
|
|
|
|
|
|
? ["all", ...updatedSelections]
|
|
|
|
|
|
: updatedSelections.filter((opt: any) => opt !== "all"),
|
|
|
|
|
|
};
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
function success() {
|
|
|
|
|
|
MySwal.fire({
|
|
|
|
|
|
title: "Sukses",
|
|
|
|
|
|
icon: "success",
|
|
|
|
|
|
confirmButtonColor: "#3085d6",
|
|
|
|
|
|
confirmButtonText: "OK",
|
|
|
|
|
|
}).then((result) => {
|
|
|
|
|
|
if (result.isConfirmed) {
|
|
|
|
|
|
// window.location.reload();
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const handleDeleteFile = (id: number) => {
|
|
|
|
|
|
MySwal.fire({
|
|
|
|
|
|
title: "Hapus file",
|
|
|
|
|
|
text: "Apakah Anda yakin ingin menghapus file ini?",
|
|
|
|
|
|
icon: "warning",
|
|
|
|
|
|
showCancelButton: true,
|
|
|
|
|
|
cancelButtonColor: "#3085d6",
|
|
|
|
|
|
confirmButtonColor: "#d33",
|
|
|
|
|
|
confirmButtonText: "Hapus",
|
|
|
|
|
|
}).then((result) => {
|
|
|
|
|
|
if (result.isConfirmed) {
|
|
|
|
|
|
doDelete(id);
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
async function doDelete(id: number) {
|
|
|
|
|
|
const data = { id };
|
|
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
const response = await deleteFile(data);
|
|
|
|
|
|
if (response?.error) {
|
|
|
|
|
|
error(response.message);
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Jika berhasil, hapus file dari state lokal
|
|
|
|
|
|
setFiles((prevFiles: any) =>
|
|
|
|
|
|
prevFiles.filter((file: any) => file.id !== id)
|
|
|
|
|
|
);
|
|
|
|
|
|
success();
|
|
|
|
|
|
} catch (err) {
|
|
|
|
|
|
error("Terjadi kesalahan saat menghapus file");
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
|
<form onSubmit={handleSubmit(onSubmit)}>
|
|
|
|
|
|
{detail !== undefined ? (
|
|
|
|
|
|
<div className="flex flex-col lg:flex-row gap-10">
|
|
|
|
|
|
<Card className="w-full lg:w-8/12">
|
|
|
|
|
|
<div className="px-6 py-6">
|
2025-07-06 09:23:45 +00:00
|
|
|
|
<p className="text-lg font-semibold mb-3">{t("form-image", { defaultValue: "Form Image" })}</p>
|
2025-06-11 06:08:44 +00:00
|
|
|
|
<div className="gap-5 mb-5">
|
|
|
|
|
|
{/* Input Title */}
|
|
|
|
|
|
<div className="space-y-2 py-3">
|
2025-07-06 09:23:45 +00:00
|
|
|
|
<Label>{t("title", { defaultValue: "Title" })}</Label>
|
2025-06-11 06:08:44 +00:00
|
|
|
|
<Controller
|
|
|
|
|
|
control={control}
|
|
|
|
|
|
name="title"
|
|
|
|
|
|
render={({ field }) => (
|
|
|
|
|
|
<Input
|
|
|
|
|
|
size="md"
|
|
|
|
|
|
type="text"
|
|
|
|
|
|
defaultValue={detail?.title}
|
|
|
|
|
|
onChange={field.onChange}
|
|
|
|
|
|
placeholder="Enter Title"
|
|
|
|
|
|
/>
|
|
|
|
|
|
)}
|
|
|
|
|
|
/>
|
|
|
|
|
|
{errors.title?.message && (
|
|
|
|
|
|
<p className="text-red-400 text-sm">
|
|
|
|
|
|
{errors.title.message}
|
|
|
|
|
|
</p>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div className="flex items-center">
|
|
|
|
|
|
<div className="py-3 w-full space-y-2">
|
2025-07-06 09:23:45 +00:00
|
|
|
|
<Label>{t("category", { defaultValue: "Category" })}</Label>
|
2025-06-11 06:08:44 +00:00
|
|
|
|
<Select
|
|
|
|
|
|
defaultValue={detail?.category.id} // Gunakan ID sebagai defaultValue
|
|
|
|
|
|
onValueChange={(id) => {
|
|
|
|
|
|
console.log("Selected Category ID:", id);
|
|
|
|
|
|
setSelectedTarget(id); // Perbarui ID kategori
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
|
|
|
|
|
<SelectTrigger size="md">
|
|
|
|
|
|
<SelectValue placeholder="Pilih">
|
|
|
|
|
|
{categories.find((cat) => cat.id === selectedTarget)
|
|
|
|
|
|
?.name || "Pilih"}
|
|
|
|
|
|
</SelectValue>
|
|
|
|
|
|
</SelectTrigger>
|
|
|
|
|
|
<SelectContent>
|
|
|
|
|
|
{categories.map((category) => (
|
|
|
|
|
|
<SelectItem key={category.id} value={category.id}>
|
|
|
|
|
|
{category.name}
|
|
|
|
|
|
</SelectItem>
|
|
|
|
|
|
))}
|
|
|
|
|
|
</SelectContent>
|
|
|
|
|
|
</Select>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div className="py-3 space-y-2">
|
2025-07-06 09:23:45 +00:00
|
|
|
|
<Label>{t("description", { defaultValue: "Description" })}</Label>
|
2025-06-11 06:08:44 +00:00
|
|
|
|
<Controller
|
|
|
|
|
|
control={control}
|
|
|
|
|
|
name="description"
|
|
|
|
|
|
render={({ field: { onChange, value } }) => (
|
|
|
|
|
|
<CustomEditor
|
|
|
|
|
|
onChange={onChange}
|
|
|
|
|
|
initialData={detail?.description || value}
|
|
|
|
|
|
/>
|
|
|
|
|
|
)}
|
|
|
|
|
|
/>
|
|
|
|
|
|
{errors.description?.message && (
|
|
|
|
|
|
<p className="text-red-400 text-sm">
|
|
|
|
|
|
{errors.description.message}
|
|
|
|
|
|
</p>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div className="py-3 space-y-2">
|
2025-07-06 09:23:45 +00:00
|
|
|
|
<Label>{t("select-file", { defaultValue: "Select File" })}</Label>
|
2025-06-11 06:08:44 +00:00
|
|
|
|
{/* <Input
|
|
|
|
|
|
id="fileInput"
|
|
|
|
|
|
type="file"
|
|
|
|
|
|
onChange={handleImageChange}
|
|
|
|
|
|
/> */}
|
|
|
|
|
|
<Fragment>
|
|
|
|
|
|
<div {...getRootProps({ className: "dropzone" })}>
|
|
|
|
|
|
<input {...getInputProps()} />
|
|
|
|
|
|
<div className=" w-full text-center border-dashed border border-default-200 dark:border-default-300 rounded-md py-[52px] flex items-center flex-col">
|
|
|
|
|
|
<CloudUpload className="text-default-300 w-10 h-10" />
|
|
|
|
|
|
<h4 className=" text-2xl font-medium mb-1 mt-3 text-card-foreground/80">
|
|
|
|
|
|
{/* Drop files here or click to upload. */}
|
2025-07-06 09:23:45 +00:00
|
|
|
|
{t("drag-file", { defaultValue: "Drag File" })}
|
2025-06-11 06:08:44 +00:00
|
|
|
|
</h4>
|
|
|
|
|
|
<div className=" text-xs text-muted-foreground">
|
2025-07-06 09:23:45 +00:00
|
|
|
|
{t("upload-file-max", { defaultValue: "Upload File Max" })}
|
2025-06-11 06:08:44 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
{files.length ? (
|
|
|
|
|
|
<Fragment>
|
|
|
|
|
|
<div>{fileList}</div>
|
|
|
|
|
|
<div className=" flex justify-between gap-2">
|
|
|
|
|
|
<div className="flex flex-row items-center gap-3 py-3">
|
2025-07-06 09:23:45 +00:00
|
|
|
|
<Label>{t("watermark", { defaultValue: "Watermark" })}</Label>
|
2025-06-11 06:08:44 +00:00
|
|
|
|
<div className="flex items-center gap-3">
|
|
|
|
|
|
<Switch defaultChecked color="primary" id="c2" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
{/* <Button
|
|
|
|
|
|
color="destructive"
|
|
|
|
|
|
onClick={() => handleDeleteFile(id)}
|
|
|
|
|
|
>
|
|
|
|
|
|
Remove file
|
|
|
|
|
|
</Button> */}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</Fragment>
|
|
|
|
|
|
) : null}
|
|
|
|
|
|
{files.length > 0 && (
|
|
|
|
|
|
<div className="mt-4">
|
|
|
|
|
|
<Label className="text-lg font-semibold">
|
|
|
|
|
|
{" "}
|
2025-07-06 09:23:45 +00:00
|
|
|
|
{t("file-media", { defaultValue: "File Media" })}
|
2025-06-11 06:08:44 +00:00
|
|
|
|
</Label>
|
|
|
|
|
|
<div className="grid gap-4">
|
|
|
|
|
|
{files.map((file: any) => (
|
|
|
|
|
|
<div
|
|
|
|
|
|
key={file.id}
|
|
|
|
|
|
className="flex items-center border p-2 rounded-md"
|
|
|
|
|
|
>
|
|
|
|
|
|
<img
|
|
|
|
|
|
src={file.thumbnailFileUrl}
|
|
|
|
|
|
alt={file.fileName}
|
|
|
|
|
|
className="w-16 h-16 object-cover rounded-md mr-4"
|
|
|
|
|
|
/>
|
|
|
|
|
|
<div className="flex flex-wrap gap-3 items-center ">
|
|
|
|
|
|
<div className="flex-grow">
|
|
|
|
|
|
<p className="font-medium">{file.fileName}</p>
|
|
|
|
|
|
<a
|
|
|
|
|
|
href={file.url}
|
|
|
|
|
|
target="_blank"
|
|
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
|
|
className="text-blue-500 text-sm"
|
|
|
|
|
|
>
|
2025-07-06 09:23:45 +00:00
|
|
|
|
{t("view-file", { defaultValue: "View File" })}
|
2025-06-11 06:08:44 +00:00
|
|
|
|
</a>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<Label className="flex items-center space-x-2">
|
|
|
|
|
|
<input
|
|
|
|
|
|
type="checkbox"
|
|
|
|
|
|
checked={selectedOptions[
|
|
|
|
|
|
file.id
|
|
|
|
|
|
]?.includes("all")}
|
|
|
|
|
|
onChange={() =>
|
|
|
|
|
|
handleCheckboxChangeImage(
|
|
|
|
|
|
file.id,
|
|
|
|
|
|
"all"
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
className="form-checkbox"
|
|
|
|
|
|
/>
|
2025-07-06 09:23:45 +00:00
|
|
|
|
<span>{t("all", { defaultValue: "All" })}</span>
|
2025-06-11 06:08:44 +00:00
|
|
|
|
</Label>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<Label className="flex items-center space-x-2">
|
|
|
|
|
|
<input
|
|
|
|
|
|
type="checkbox"
|
|
|
|
|
|
checked={selectedOptions[
|
|
|
|
|
|
file.id
|
|
|
|
|
|
]?.includes("nasional")}
|
|
|
|
|
|
onChange={() =>
|
|
|
|
|
|
handleCheckboxChangeImage(
|
|
|
|
|
|
file.id,
|
|
|
|
|
|
"nasional"
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
className="form-checkbox"
|
|
|
|
|
|
/>
|
|
|
|
|
|
<span>Nasional</span>
|
|
|
|
|
|
</Label>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<Label className="flex items-center space-x-2">
|
|
|
|
|
|
<input
|
|
|
|
|
|
type="checkbox"
|
|
|
|
|
|
checked={selectedOptions[
|
|
|
|
|
|
file.id
|
|
|
|
|
|
]?.includes("wilayah")}
|
|
|
|
|
|
onChange={() =>
|
|
|
|
|
|
handleCheckboxChangeImage(
|
|
|
|
|
|
file.id,
|
|
|
|
|
|
"wilayah"
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
className="form-checkbox"
|
|
|
|
|
|
/>
|
|
|
|
|
|
<span>Wilayah</span>
|
|
|
|
|
|
</Label>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<Label className="flex items-center space-x-2">
|
|
|
|
|
|
<input
|
|
|
|
|
|
type="checkbox"
|
|
|
|
|
|
checked={selectedOptions[
|
|
|
|
|
|
file.id
|
|
|
|
|
|
]?.includes("internasional")}
|
|
|
|
|
|
onChange={() =>
|
|
|
|
|
|
handleCheckboxChangeImage(
|
|
|
|
|
|
file.id,
|
|
|
|
|
|
"internasional"
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
className="form-checkbox"
|
|
|
|
|
|
/>
|
|
|
|
|
|
<span>Internasional</span>
|
|
|
|
|
|
</Label>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
))}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</Fragment>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</Card>
|
|
|
|
|
|
<div className="w-full lg:w-4/12">
|
|
|
|
|
|
<Card className="h-[900px] md:h-[1100px] lg:h-[800px]">
|
|
|
|
|
|
<div className="px-3 py-3">
|
|
|
|
|
|
<div className="space-y-2">
|
2025-07-06 09:23:45 +00:00
|
|
|
|
<Label>{t("creator", { defaultValue: "Creator" })}</Label>
|
2025-06-11 06:08:44 +00:00
|
|
|
|
<Controller
|
|
|
|
|
|
control={control}
|
|
|
|
|
|
name="creatorName"
|
|
|
|
|
|
render={({ field }) => (
|
|
|
|
|
|
<Input
|
|
|
|
|
|
size="md"
|
|
|
|
|
|
type="text"
|
|
|
|
|
|
defaultValue={detail?.creatorName}
|
|
|
|
|
|
onChange={field.onChange}
|
|
|
|
|
|
placeholder="Enter Title"
|
|
|
|
|
|
/>
|
|
|
|
|
|
)}
|
|
|
|
|
|
/>
|
|
|
|
|
|
{errors.creatorName?.message && (
|
|
|
|
|
|
<p className="text-red-400 text-sm">
|
|
|
|
|
|
{errors.creatorName.message}
|
|
|
|
|
|
</p>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div className="mt-3 px-3 space-y-2">
|
2025-07-06 09:23:45 +00:00
|
|
|
|
<Label>{t("preview", { defaultValue: "Preview" })}</Label>
|
2025-06-11 06:08:44 +00:00
|
|
|
|
<Card className="mt-2">
|
|
|
|
|
|
<img
|
|
|
|
|
|
src={detail.thumbnailLink}
|
|
|
|
|
|
alt="Thumbnail Gambar Utama"
|
|
|
|
|
|
className="w-full h-auto rounded"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</Card>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div className="px-3 py-3">
|
|
|
|
|
|
<div className="space-y-2">
|
2025-07-06 09:23:45 +00:00
|
|
|
|
<Label>{t("tags", { defaultValue: "Tags" })}</Label>
|
2025-06-11 06:08:44 +00:00
|
|
|
|
<Input
|
|
|
|
|
|
type="text"
|
|
|
|
|
|
id="tags"
|
|
|
|
|
|
placeholder="Add a tag and press Enter"
|
|
|
|
|
|
onKeyDown={handleAddTag}
|
|
|
|
|
|
ref={inputRef}
|
|
|
|
|
|
/>
|
|
|
|
|
|
<div className="mt-3 flex flex-wrap gap-2">
|
|
|
|
|
|
{tags.map((tag, index) => (
|
|
|
|
|
|
<span
|
|
|
|
|
|
key={index}
|
|
|
|
|
|
className="flex items-center gap-2 px-2 py-1 rounded-lg bg-black text-white text-sm"
|
|
|
|
|
|
>
|
|
|
|
|
|
<input
|
|
|
|
|
|
type="text"
|
|
|
|
|
|
value={tag}
|
|
|
|
|
|
onChange={(e) => handleEditTag(index, e.target.value)}
|
|
|
|
|
|
className="bg-black text-white border-none focus:outline-none w-auto"
|
|
|
|
|
|
/>
|
|
|
|
|
|
<button
|
|
|
|
|
|
value={tag}
|
|
|
|
|
|
type="button"
|
|
|
|
|
|
onClick={() => handleRemoveTag(index)}
|
|
|
|
|
|
className="remove-tag-button text-white"
|
|
|
|
|
|
>
|
|
|
|
|
|
×
|
|
|
|
|
|
</button>
|
|
|
|
|
|
</span>
|
|
|
|
|
|
))}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
{/* <div className="flex flex-wrap gap-2">
|
|
|
|
|
|
{detail?.tags?.split(",").map((tag, index) => (
|
|
|
|
|
|
<Badge
|
|
|
|
|
|
key={index}
|
|
|
|
|
|
className="border rounded-md px-2 py-2"
|
|
|
|
|
|
>
|
|
|
|
|
|
{tag.trim()}
|
|
|
|
|
|
</Badge>
|
|
|
|
|
|
))}
|
|
|
|
|
|
</div> */}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div className="px-3 py-3">
|
|
|
|
|
|
<div className="flex flex-col gap-6 space-y-2">
|
2025-07-06 09:23:45 +00:00
|
|
|
|
<Label>{t("publish-target", { defaultValue: "Publish Target" })}</Label>
|
2025-06-11 06:08:44 +00:00
|
|
|
|
{options.map((option: Option) => (
|
|
|
|
|
|
<div key={option.id} className="flex gap-2 items-center">
|
|
|
|
|
|
<Checkbox
|
|
|
|
|
|
id={option.id}
|
|
|
|
|
|
checked={
|
|
|
|
|
|
option.id === "all"
|
|
|
|
|
|
? publishedFor.length ===
|
|
|
|
|
|
options.filter((opt) => opt.id !== "all").length
|
|
|
|
|
|
: publishedFor.includes(option.id)
|
|
|
|
|
|
}
|
|
|
|
|
|
onCheckedChange={() => handleCheckboxChange(option.id)}
|
|
|
|
|
|
/>
|
|
|
|
|
|
<Label htmlFor={option.id}>{option.name}</Label>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
))}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div className="px-3 py-3 flex flex-row items-center text-blue-500 gap-2 text-sm">
|
|
|
|
|
|
<MailIcon />
|
2025-07-06 09:23:45 +00:00
|
|
|
|
<p className="">{t("suggestion-box", { defaultValue: "Suggestion Box" })} (0)</p>
|
2025-06-11 06:08:44 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
<div className="px-3 py-3">
|
2025-07-06 09:23:45 +00:00
|
|
|
|
<p>{t("information", { defaultValue: "Information" })}:</p>
|
2025-06-11 06:08:44 +00:00
|
|
|
|
{/* <p>{detail?.status}</p> */}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</Card>
|
|
|
|
|
|
<div className="flex flex-row justify-end gap-3">
|
|
|
|
|
|
<div className="mt-4">
|
|
|
|
|
|
<Button type="submit" color="primary">
|
2025-07-06 09:23:45 +00:00
|
|
|
|
{t("submit", { defaultValue: "Submit" })}
|
2025-06-11 06:08:44 +00:00
|
|
|
|
</Button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div className="mt-4">
|
|
|
|
|
|
<Button type="submit" color="primary" variant="outline">
|
2025-07-06 09:23:45 +00:00
|
|
|
|
{t("cancel", { defaultValue: "Cancel" })}
|
2025-06-11 06:08:44 +00:00
|
|
|
|
</Button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
) : (
|
|
|
|
|
|
""
|
|
|
|
|
|
)}
|
|
|
|
|
|
</form>
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|