2024-12-04 17:28:40 +00:00
|
|
|
|
"use client";
|
2025-01-03 19:35:50 +00:00
|
|
|
|
import React, {
|
|
|
|
|
|
ChangeEvent,
|
|
|
|
|
|
useEffect,
|
|
|
|
|
|
useRef,
|
|
|
|
|
|
Fragment,
|
|
|
|
|
|
useState,
|
|
|
|
|
|
} from "react";
|
2024-12-04 17:28:40 +00:00
|
|
|
|
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";
|
2025-01-03 19:35:50 +00:00
|
|
|
|
import { Upload } from "tus-js-client";
|
2024-12-04 17:28:40 +00:00
|
|
|
|
import Swal from "sweetalert2";
|
|
|
|
|
|
import withReactContent from "sweetalert2-react-content";
|
2025-06-18 06:19:30 +00:00
|
|
|
|
import { redirect, useParams, useRouter } from "next/navigation";
|
2024-12-04 17:28:40 +00:00
|
|
|
|
import {
|
|
|
|
|
|
Select,
|
|
|
|
|
|
SelectContent,
|
|
|
|
|
|
SelectItem,
|
|
|
|
|
|
SelectTrigger,
|
|
|
|
|
|
SelectValue,
|
|
|
|
|
|
} from "@/components/ui/select";
|
|
|
|
|
|
import { Checkbox } from "@/components/ui/checkbox";
|
|
|
|
|
|
import { RadioGroup, RadioGroupItem } from "@/components/ui/radio-group";
|
|
|
|
|
|
import { Switch } from "@/components/ui/switch";
|
2024-12-08 19:23:05 +00:00
|
|
|
|
import Cookies from "js-cookie";
|
|
|
|
|
|
import {
|
2024-12-09 13:17:22 +00:00
|
|
|
|
createMedia,
|
2024-12-08 19:23:05 +00:00
|
|
|
|
getTagsBySubCategoryId,
|
|
|
|
|
|
listEnableCategory,
|
2025-10-16 05:22:48 +00:00
|
|
|
|
listEnableCategoryNew,
|
2025-01-03 19:35:50 +00:00
|
|
|
|
uploadThumbnail,
|
2024-12-08 19:23:05 +00:00
|
|
|
|
} from "@/service/content/content";
|
2025-01-03 19:35:50 +00:00
|
|
|
|
import { Textarea } from "@/components/ui/textarea";
|
|
|
|
|
|
import {
|
|
|
|
|
|
generateDataArticle,
|
2025-06-18 06:19:30 +00:00
|
|
|
|
generateDataRewrite,
|
2025-01-03 19:35:50 +00:00
|
|
|
|
getDetailArticle,
|
|
|
|
|
|
getGenerateKeywords,
|
|
|
|
|
|
getGenerateTitle,
|
2025-09-18 17:01:44 +00:00
|
|
|
|
translateText,
|
2025-01-03 19:35:50 +00:00
|
|
|
|
} from "@/service/content/ai";
|
|
|
|
|
|
import { getCookiesDecrypt } from "@/lib/utils";
|
|
|
|
|
|
import { useDropzone } from "react-dropzone";
|
|
|
|
|
|
import { Icon } from "@iconify/react";
|
|
|
|
|
|
import { CloudUpload } from "lucide-react";
|
|
|
|
|
|
import Image from "next/image";
|
2025-09-18 17:01:44 +00:00
|
|
|
|
import { close, error, loading } from "@/config/swal";
|
2025-01-06 14:06:02 +00:00
|
|
|
|
import dynamic from "next/dynamic";
|
2025-01-10 03:52:56 +00:00
|
|
|
|
import { getCsrfToken } from "@/service/auth";
|
2025-03-26 18:58:30 +00:00
|
|
|
|
import { useTranslations } from "next-intl";
|
2025-07-21 04:07:08 +00:00
|
|
|
|
import { htmlToString } from "@/utils/globals";
|
2025-01-06 14:06:02 +00:00
|
|
|
|
|
|
|
|
|
|
const CustomEditor = dynamic(
|
|
|
|
|
|
() => {
|
|
|
|
|
|
return import("@/components/editor/custom-editor");
|
|
|
|
|
|
},
|
|
|
|
|
|
{ ssr: false }
|
|
|
|
|
|
);
|
2024-12-04 17:28:40 +00:00
|
|
|
|
|
2025-01-03 19:35:50 +00:00
|
|
|
|
interface FileWithPreview extends File {
|
|
|
|
|
|
preview: string;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2024-12-08 19:23:05 +00:00
|
|
|
|
type Category = {
|
|
|
|
|
|
id: string;
|
|
|
|
|
|
name: string;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2025-01-07 10:30:51 +00:00
|
|
|
|
type Option = {
|
|
|
|
|
|
id: string;
|
|
|
|
|
|
label: string;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2024-12-10 10:35:03 +00:00
|
|
|
|
export default function FormVideo() {
|
2024-12-04 17:28:40 +00:00
|
|
|
|
const MySwal = withReactContent(Swal);
|
|
|
|
|
|
const router = useRouter();
|
|
|
|
|
|
const editor = useRef(null);
|
2025-09-09 15:33:29 +00:00
|
|
|
|
const levelNumber = getCookiesDecrypt("ulne");
|
2025-01-08 20:01:32 +00:00
|
|
|
|
type VideoSchema = z.infer<typeof videoSchema>;
|
2025-06-18 06:19:30 +00:00
|
|
|
|
const params = useParams();
|
|
|
|
|
|
const locale = params?.locale;
|
2024-12-08 19:23:05 +00:00
|
|
|
|
const [selectedFiles, setSelectedFiles] = useState<File[]>([]);
|
|
|
|
|
|
const taskId = Cookies.get("taskId");
|
|
|
|
|
|
const scheduleId = Cookies.get("scheduleId");
|
|
|
|
|
|
const scheduleType = Cookies.get("scheduleType");
|
2025-01-03 19:35:50 +00:00
|
|
|
|
const roleId = getCookiesDecrypt("urie");
|
2025-06-18 06:19:30 +00:00
|
|
|
|
const [selectedFileType, setSelectedFileType] = useState("original");
|
2025-03-26 18:58:30 +00:00
|
|
|
|
const t = useTranslations("Form");
|
2024-12-08 19:23:05 +00:00
|
|
|
|
const [categories, setCategories] = useState<Category[]>([]);
|
2024-12-09 13:17:22 +00:00
|
|
|
|
const [selectedCategory, setSelectedCategory] = useState<any>();
|
2024-12-08 19:23:05 +00:00
|
|
|
|
const [tags, setTags] = useState<any[]>([]);
|
2025-01-03 19:35:50 +00:00
|
|
|
|
const [thumbnail, setThumbnail] = useState<File | null>(null);
|
|
|
|
|
|
const [preview, setPreview] = useState<string | null>(null);
|
|
|
|
|
|
const [selectedLanguage, setSelectedLanguage] = useState("");
|
2025-06-18 06:19:30 +00:00
|
|
|
|
const [selectedWritingStyle, setSelectedWritingStyle] =
|
|
|
|
|
|
useState("professional");
|
2025-07-14 16:34:52 +00:00
|
|
|
|
const [editorContent, setEditorContent] = useState("");
|
2025-06-18 06:19:30 +00:00
|
|
|
|
const [rewriteEditorContent, setRewriteEditorContent] = useState("");
|
2025-01-03 19:35:50 +00:00
|
|
|
|
const [selectedSEO, setSelectedSEO] = useState<string>("");
|
|
|
|
|
|
const [title, setTitle] = useState<string>("");
|
|
|
|
|
|
const [selectedAdvConfig, setSelectedAdvConfig] = useState<string>("");
|
|
|
|
|
|
const [editingArticleId, setEditingArticleId] = useState<string | null>(null);
|
|
|
|
|
|
const [isLoading, setIsLoading] = useState<boolean>(false);
|
2025-01-07 10:30:51 +00:00
|
|
|
|
const [isLoadingData, setIsLoadingData] = useState<boolean>(false);
|
2025-01-03 19:35:50 +00:00
|
|
|
|
const [articleIds, setArticleIds] = useState<string[]>([]);
|
|
|
|
|
|
const [isGeneratedArticle, setIsGeneratedArticle] = useState(false);
|
|
|
|
|
|
const [articleBody, setArticleBody] = useState<string>("");
|
|
|
|
|
|
const [selectedArticleId, setSelectedArticleId] = useState<string | null>(
|
|
|
|
|
|
null
|
|
|
|
|
|
);
|
|
|
|
|
|
const [selectedMainKeyword, setSelectedMainKeyword] = useState("");
|
2025-07-18 18:06:24 +00:00
|
|
|
|
const [publishedForError, setPublishedForError] = useState<string | null>(
|
|
|
|
|
|
null
|
|
|
|
|
|
);
|
2025-01-03 19:35:50 +00:00
|
|
|
|
const [selectedSize, setSelectedSize] = useState("");
|
|
|
|
|
|
const [detailData, setDetailData] = useState<any>(null);
|
|
|
|
|
|
const [articleImages, setArticleImages] = useState<string[]>([]);
|
|
|
|
|
|
const [isSwitchOn, setIsSwitchOn] = useState<boolean>(false);
|
2025-01-07 19:21:19 +00:00
|
|
|
|
const inputRef = useRef<HTMLInputElement>(null);
|
2025-07-14 16:34:52 +00:00
|
|
|
|
const [fileError, setFileError] = useState<string | null>(null);
|
2025-06-18 06:19:30 +00:00
|
|
|
|
const [showRewriteEditor, setShowRewriteEditor] = useState(false);
|
|
|
|
|
|
const [isContentRewriteClicked, setIsContentRewriteClicked] = useState(false);
|
2024-12-10 10:35:03 +00:00
|
|
|
|
const [selectedTarget, setSelectedTarget] = useState("");
|
2024-12-04 17:28:40 +00:00
|
|
|
|
const [unitSelection, setUnitSelection] = useState({
|
|
|
|
|
|
allUnit: false,
|
|
|
|
|
|
mabes: false,
|
|
|
|
|
|
polda: false,
|
|
|
|
|
|
polres: false,
|
|
|
|
|
|
});
|
|
|
|
|
|
|
2024-12-10 10:35:03 +00:00
|
|
|
|
let fileTypeId = "2";
|
2025-01-03 19:35:50 +00:00
|
|
|
|
let progressInfo: any = [];
|
|
|
|
|
|
let counterUpdateProgress = 0;
|
|
|
|
|
|
const [progressList, setProgressList] = useState<any>([]);
|
|
|
|
|
|
let uploadPersen = 0;
|
|
|
|
|
|
const [isStartUpload, setIsStartUpload] = useState(false);
|
|
|
|
|
|
const [counterProgress, setCounterProgress] = useState(0);
|
2025-01-07 10:30:51 +00:00
|
|
|
|
const [publishedFor, setPublishedFor] = useState<string[]>([]);
|
2025-01-03 19:35:50 +00:00
|
|
|
|
const [files, setFiles] = useState<FileWithPreview[]>([]);
|
2025-09-18 17:01:44 +00:00
|
|
|
|
const [isLoadingTranslate, setIsLoadingTranslate] = useState(false);
|
|
|
|
|
|
const [translatedContent, setTranslatedContent] = React.useState("");
|
|
|
|
|
|
const [selectedLang, setSelectedLang] = React.useState<"id" | "en">("id");
|
2025-10-15 07:02:41 +00:00
|
|
|
|
// 🔹 State untuk translate Title
|
|
|
|
|
|
const [translatedTitle, setTranslatedTitle] = useState("");
|
|
|
|
|
|
const [isLoadingTranslateTitle, setIsLoadingTranslateTitle] = useState(false);
|
2025-09-18 17:01:44 +00:00
|
|
|
|
|
2025-01-07 10:30:51 +00:00
|
|
|
|
const options: Option[] = [
|
|
|
|
|
|
{ id: "all", label: "SEMUA" },
|
|
|
|
|
|
{ id: "5", label: "UMUM" },
|
|
|
|
|
|
{ id: "6", label: "JOURNALIS" },
|
|
|
|
|
|
{ id: "7", label: "POLRI" },
|
|
|
|
|
|
{ id: "8", label: "KSP" },
|
|
|
|
|
|
];
|
|
|
|
|
|
|
2025-07-12 11:52:36 +00:00
|
|
|
|
const MAX_FILE_SIZE = 100 * 1024 * 1024;
|
|
|
|
|
|
const ACCEPTED_FILE_TYPES = ["video/mp4", "video/quicktime"];
|
|
|
|
|
|
|
2025-01-03 19:35:50 +00:00
|
|
|
|
const { getRootProps, getInputProps } = useDropzone({
|
2025-06-07 10:27:37 +00:00
|
|
|
|
accept: {
|
2025-07-12 11:52:36 +00:00
|
|
|
|
"video/mp4": [".mp4"],
|
|
|
|
|
|
"video/quicktime": [".mov"],
|
|
|
|
|
|
},
|
2025-07-18 18:06:24 +00:00
|
|
|
|
maxSize: 500 * 1024 * 1024,
|
2025-07-14 16:34:52 +00:00
|
|
|
|
multiple: true,
|
|
|
|
|
|
onDrop: (acceptedFiles, fileRejections) => {
|
|
|
|
|
|
setFileError(null);
|
|
|
|
|
|
|
|
|
|
|
|
if (fileRejections.length > 0) {
|
|
|
|
|
|
const messages = fileRejections
|
|
|
|
|
|
.map((rej) => rej.errors.map((e) => e.message).join(", "))
|
|
|
|
|
|
.join(", ");
|
|
|
|
|
|
setFileError(messages || "File tidak valid");
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (acceptedFiles.length === 0) {
|
|
|
|
|
|
setFileError("Wajib upload minimal 1 file video");
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const filesWithPreview = acceptedFiles.map((file) =>
|
|
|
|
|
|
Object.assign(file, { preview: URL.createObjectURL(file) })
|
2025-07-12 11:52:36 +00:00
|
|
|
|
);
|
|
|
|
|
|
|
2025-07-14 16:34:52 +00:00
|
|
|
|
setFiles((prev) => {
|
|
|
|
|
|
const updatedFiles = [...prev, ...filesWithPreview];
|
|
|
|
|
|
setValue("files", updatedFiles, { shouldValidate: true });
|
|
|
|
|
|
return updatedFiles;
|
|
|
|
|
|
});
|
2025-06-07 10:27:37 +00:00
|
|
|
|
},
|
2025-01-03 19:35:50 +00:00
|
|
|
|
});
|
2024-12-08 19:23:05 +00:00
|
|
|
|
|
2025-01-08 20:01:32 +00:00
|
|
|
|
const videoSchema = z.object({
|
|
|
|
|
|
title: z.string().min(1, { message: "Judul diperlukan" }),
|
2025-06-18 06:19:30 +00:00
|
|
|
|
description: z.string().optional(),
|
2025-07-12 11:52:36 +00:00
|
|
|
|
descriptionOri: z.string().optional(),
|
2025-06-18 06:19:30 +00:00
|
|
|
|
rewriteDescription: z.string().optional(),
|
2025-01-08 20:01:32 +00:00
|
|
|
|
creatorName: z.string().min(1, { message: "Creator diperlukan" }),
|
2025-07-12 11:52:36 +00:00
|
|
|
|
category: z.string().min(1, { message: "Kategori harus dipilih" }),
|
|
|
|
|
|
tags: z
|
|
|
|
|
|
.array(z.string().min(1))
|
|
|
|
|
|
.min(1, { message: "Minimal 1 tag diperlukan" }),
|
|
|
|
|
|
files: z
|
|
|
|
|
|
.array(z.any())
|
|
|
|
|
|
.min(1, { message: "File video harus dipilih" })
|
|
|
|
|
|
.refine(
|
|
|
|
|
|
(files) =>
|
|
|
|
|
|
files.every((file: File) => ACCEPTED_FILE_TYPES.includes(file.type)),
|
|
|
|
|
|
{ message: "File harus berformat mp4 atau mov" }
|
|
|
|
|
|
)
|
|
|
|
|
|
.refine(
|
|
|
|
|
|
(files) => files.every((file: File) => file.size <= MAX_FILE_SIZE),
|
|
|
|
|
|
{ message: "Ukuran file maksimal 100 MB" }
|
|
|
|
|
|
),
|
2025-07-18 18:06:24 +00:00
|
|
|
|
publishedFor: z
|
|
|
|
|
|
.array(z.string())
|
|
|
|
|
|
.min(1, { message: "Minimal 1 target publish harus dipilih." }),
|
2025-01-08 20:01:32 +00:00
|
|
|
|
});
|
|
|
|
|
|
|
2024-12-04 17:28:40 +00:00
|
|
|
|
const {
|
|
|
|
|
|
control,
|
|
|
|
|
|
handleSubmit,
|
2025-01-08 20:01:32 +00:00
|
|
|
|
getValues,
|
2024-12-04 17:28:40 +00:00
|
|
|
|
setValue,
|
|
|
|
|
|
formState: { errors },
|
2025-07-12 11:52:36 +00:00
|
|
|
|
} = useForm<z.infer<typeof videoSchema>>({
|
2025-01-08 20:01:32 +00:00
|
|
|
|
resolver: zodResolver(videoSchema),
|
2025-06-18 06:19:30 +00:00
|
|
|
|
defaultValues: {
|
|
|
|
|
|
description: "",
|
|
|
|
|
|
descriptionOri: "",
|
|
|
|
|
|
rewriteDescription: "",
|
2025-07-12 11:52:36 +00:00
|
|
|
|
category: "",
|
|
|
|
|
|
files: [],
|
|
|
|
|
|
tags: [],
|
2025-07-18 18:06:24 +00:00
|
|
|
|
publishedFor: [],
|
2025-06-18 06:19:30 +00:00
|
|
|
|
},
|
2024-12-04 17:28:40 +00:00
|
|
|
|
});
|
|
|
|
|
|
|
2025-07-18 18:06:24 +00:00
|
|
|
|
useEffect(() => {
|
|
|
|
|
|
setValue("publishedFor", publishedFor);
|
|
|
|
|
|
}, [publishedFor, setValue]);
|
|
|
|
|
|
|
2025-01-03 19:35:50 +00:00
|
|
|
|
const doGenerateMainKeyword = async () => {
|
2025-08-12 06:31:20 +00:00
|
|
|
|
// console.log(selectedMainKeyword);
|
2025-01-03 19:35:50 +00:00
|
|
|
|
if (selectedMainKeyword?.length > 1) {
|
|
|
|
|
|
try {
|
|
|
|
|
|
setIsLoading(true);
|
|
|
|
|
|
const titleData = {
|
|
|
|
|
|
keyword: selectedMainKeyword,
|
|
|
|
|
|
style: selectedWritingStyle,
|
|
|
|
|
|
website: "0",
|
|
|
|
|
|
connectToWeb: true,
|
|
|
|
|
|
lang: selectedLanguage,
|
|
|
|
|
|
pointOfView: "None",
|
|
|
|
|
|
clientId: "",
|
|
|
|
|
|
};
|
2025-08-12 06:31:20 +00:00
|
|
|
|
// console.log("Sending request for title with data:", titleData);
|
2025-01-03 19:35:50 +00:00
|
|
|
|
const titleRes = await getGenerateTitle(titleData);
|
|
|
|
|
|
setTitle(titleRes?.data?.data || "");
|
2025-08-12 06:31:20 +00:00
|
|
|
|
// console.log("Generated title:", titleRes?.data?.data);
|
2025-01-03 19:35:50 +00:00
|
|
|
|
|
|
|
|
|
|
const keywordsData = {
|
|
|
|
|
|
keyword: selectedMainKeyword,
|
|
|
|
|
|
style: selectedWritingStyle,
|
|
|
|
|
|
website: "0",
|
|
|
|
|
|
connectToWeb: true,
|
|
|
|
|
|
lang: selectedLanguage,
|
|
|
|
|
|
pointOfView: "None",
|
|
|
|
|
|
clientId: "",
|
|
|
|
|
|
};
|
2025-08-12 06:31:20 +00:00
|
|
|
|
// console.log("Sending request for keywords with data:", keywordsData);
|
2025-01-03 19:35:50 +00:00
|
|
|
|
const keywordsRes = await getGenerateKeywords(keywordsData);
|
|
|
|
|
|
setSelectedSEO(keywordsRes?.data?.data || []);
|
2025-08-12 06:31:20 +00:00
|
|
|
|
// console.log("Generated keywords:", keywordsRes?.data?.data);
|
2025-01-03 19:35:50 +00:00
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error("Error during generation process:", error);
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
setIsLoading(false);
|
|
|
|
|
|
}
|
|
|
|
|
|
} else {
|
2025-06-24 06:34:18 +00:00
|
|
|
|
Swal.fire({
|
|
|
|
|
|
icon: "warning",
|
|
|
|
|
|
title: "WARNING",
|
|
|
|
|
|
text: "Please provide a valid main keyword.",
|
|
|
|
|
|
});
|
2025-01-03 19:35:50 +00:00
|
|
|
|
console.error("Please provide a valid main keyword.");
|
|
|
|
|
|
}
|
2024-12-04 17:28:40 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
2025-01-03 19:35:50 +00:00
|
|
|
|
const doGenerateTitle = async () => {
|
|
|
|
|
|
if (selectedMainKeyword?.length > 1) {
|
|
|
|
|
|
try {
|
|
|
|
|
|
setIsLoading(true);
|
|
|
|
|
|
const titleData = {
|
|
|
|
|
|
keyword: selectedMainKeyword,
|
|
|
|
|
|
style: selectedWritingStyle,
|
|
|
|
|
|
website: "0",
|
|
|
|
|
|
connectToWeb: true,
|
|
|
|
|
|
lang: selectedLanguage,
|
|
|
|
|
|
pointOfView: "None",
|
|
|
|
|
|
clientId: "",
|
|
|
|
|
|
};
|
2025-08-12 06:31:20 +00:00
|
|
|
|
// console.log("Sending request for title with data:", titleData);
|
2025-01-03 19:35:50 +00:00
|
|
|
|
const titleRes = await getGenerateTitle(titleData);
|
|
|
|
|
|
setTitle(titleRes?.data?.data || "");
|
2025-08-12 06:31:20 +00:00
|
|
|
|
// console.log("Generated title:", titleRes?.data?.data);
|
2025-01-03 19:35:50 +00:00
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error("Error generating title:", error);
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
setIsLoading(false);
|
|
|
|
|
|
}
|
|
|
|
|
|
} else {
|
2025-06-24 06:34:18 +00:00
|
|
|
|
Swal.fire({
|
|
|
|
|
|
icon: "warning",
|
|
|
|
|
|
title: "WARNING",
|
|
|
|
|
|
text: "Please provide a valid title.",
|
|
|
|
|
|
});
|
2025-01-03 19:35:50 +00:00
|
|
|
|
console.error("Please provide a valid main keyword.");
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const doGenerateKeyword = async () => {
|
|
|
|
|
|
if (selectedMainKeyword?.length > 1) {
|
|
|
|
|
|
try {
|
|
|
|
|
|
setIsLoading(true);
|
|
|
|
|
|
const keywordsData = {
|
|
|
|
|
|
keyword: selectedMainKeyword,
|
|
|
|
|
|
style: selectedWritingStyle,
|
|
|
|
|
|
website: "0",
|
|
|
|
|
|
connectToWeb: true,
|
|
|
|
|
|
lang: selectedLanguage,
|
|
|
|
|
|
pointOfView: "None",
|
|
|
|
|
|
clientId: "",
|
|
|
|
|
|
};
|
2025-08-12 06:31:20 +00:00
|
|
|
|
// console.log("Sending request for keywords with data:", keywordsData);
|
2025-01-03 19:35:50 +00:00
|
|
|
|
const keywordsRes = await getGenerateKeywords(keywordsData);
|
|
|
|
|
|
setSelectedSEO(keywordsRes?.data?.data || []);
|
2025-08-12 06:31:20 +00:00
|
|
|
|
// console.log("Generated keywords:", keywordsRes?.data?.data);
|
2025-01-03 19:35:50 +00:00
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error("Error generating keywords:", error);
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
setIsLoading(false);
|
|
|
|
|
|
}
|
|
|
|
|
|
} else {
|
2025-06-24 06:34:18 +00:00
|
|
|
|
Swal.fire({
|
|
|
|
|
|
icon: "warning",
|
|
|
|
|
|
title: "WARNING",
|
|
|
|
|
|
text: "Please provide a valid keyword.",
|
|
|
|
|
|
});
|
2025-01-03 19:35:50 +00:00
|
|
|
|
console.error("Please provide a valid main keyword.");
|
2024-12-04 17:28:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2025-01-03 19:35:50 +00:00
|
|
|
|
const handleGenerateArtikel = async () => {
|
|
|
|
|
|
const request = {
|
|
|
|
|
|
advConfig: selectedAdvConfig,
|
|
|
|
|
|
style: selectedWritingStyle,
|
|
|
|
|
|
website: "None",
|
|
|
|
|
|
connectToWeb: true,
|
|
|
|
|
|
lang: selectedLanguage,
|
|
|
|
|
|
pointOfView: "None",
|
|
|
|
|
|
title: title,
|
|
|
|
|
|
imageSource: "Web",
|
|
|
|
|
|
mainKeyword: selectedMainKeyword,
|
|
|
|
|
|
additionalKeywords: selectedSEO,
|
|
|
|
|
|
targetCountry: null,
|
|
|
|
|
|
articleSize: selectedSize,
|
|
|
|
|
|
projectId: 2,
|
|
|
|
|
|
createdBy: roleId,
|
|
|
|
|
|
clientId: "ngDLPPiorplznw2jTqVe3YFCz5xqKfUJ",
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const res = await generateDataArticle(request);
|
|
|
|
|
|
close();
|
|
|
|
|
|
|
2025-01-04 17:11:14 +00:00
|
|
|
|
if (res?.error) {
|
2025-01-03 19:35:50 +00:00
|
|
|
|
console.error(res.message);
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const newArticleId = res?.data?.data?.id;
|
|
|
|
|
|
setIsGeneratedArticle(true);
|
|
|
|
|
|
|
|
|
|
|
|
setArticleIds((prevIds: string[]) => {
|
2025-01-07 10:30:51 +00:00
|
|
|
|
if (prevIds.length < 3) {
|
2025-01-03 19:35:50 +00:00
|
|
|
|
return [...prevIds, newArticleId];
|
|
|
|
|
|
} else {
|
|
|
|
|
|
const updatedIds = [...prevIds];
|
2025-01-07 10:30:51 +00:00
|
|
|
|
updatedIds[2] = newArticleId;
|
2025-01-03 19:35:50 +00:00
|
|
|
|
return updatedIds;
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
Cookies.set("nulisAIArticleIdTemp", JSON.stringify(articleIds));
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const handleArticleIdClick = async (id: string) => {
|
2025-01-07 10:30:51 +00:00
|
|
|
|
setIsLoadingData(true);
|
|
|
|
|
|
let retryCount = 0;
|
|
|
|
|
|
const maxRetries = 20;
|
|
|
|
|
|
|
2025-01-06 14:06:02 +00:00
|
|
|
|
try {
|
2025-01-07 10:30:51 +00:00
|
|
|
|
const waitForStatusUpdate = async () => {
|
|
|
|
|
|
while (retryCount < maxRetries) {
|
|
|
|
|
|
const res = await getDetailArticle(id);
|
|
|
|
|
|
const articleData = res?.data?.data;
|
2025-01-06 14:06:02 +00:00
|
|
|
|
|
2025-01-07 10:30:51 +00:00
|
|
|
|
if (articleData?.status === 2) {
|
|
|
|
|
|
return articleData;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
retryCount++;
|
|
|
|
|
|
await new Promise((resolve) => setTimeout(resolve, 5000));
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
throw new Error("Timeout: Artikel belum selesai diproses.");
|
|
|
|
|
|
};
|
|
|
|
|
|
const articleData = await waitForStatusUpdate();
|
2025-01-06 14:06:02 +00:00
|
|
|
|
const cleanArticleBody = articleData?.articleBody?.replace(
|
|
|
|
|
|
/<img[^>]*>/g,
|
|
|
|
|
|
""
|
|
|
|
|
|
);
|
|
|
|
|
|
const articleImagesData = articleData?.imagesUrl?.split(",");
|
2025-09-18 17:01:44 +00:00
|
|
|
|
setValue("description", cleanArticleBody || "");
|
|
|
|
|
|
// setArticleBody(cleanArticleBody || "");
|
2025-01-06 14:06:02 +00:00
|
|
|
|
setDetailData(articleData);
|
|
|
|
|
|
setSelectedArticleId(id);
|
|
|
|
|
|
setArticleImages(articleImagesData || []);
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error("Error fetching article details:", error);
|
|
|
|
|
|
} finally {
|
2025-01-07 10:30:51 +00:00
|
|
|
|
setIsLoadingData(false);
|
2025-01-06 14:06:02 +00:00
|
|
|
|
}
|
2025-01-03 19:35:50 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
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)) {
|
2025-07-12 11:52:36 +00:00
|
|
|
|
setTags((prevTags) => [...prevTags, newTag]);
|
2025-01-07 19:21:19 +00:00
|
|
|
|
if (inputRef.current) {
|
2025-07-12 11:52:36 +00:00
|
|
|
|
inputRef.current.value = "";
|
2025-01-07 19:21:19 +00:00
|
|
|
|
}
|
2025-01-03 19:35:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const handleRemoveTag = (index: number) => {
|
2025-07-12 11:52:36 +00:00
|
|
|
|
setTags((prevTags) => prevTags.filter((_, i) => i !== index));
|
2025-01-03 19:35:50 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
2024-12-09 13:17:22 +00:00
|
|
|
|
const handleRemoveImage = (index: number) => {
|
|
|
|
|
|
setSelectedFiles((prevImages) => prevImages.filter((_, i) => i !== index));
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2024-12-08 19:23:05 +00:00
|
|
|
|
useEffect(() => {
|
|
|
|
|
|
async function initState() {
|
|
|
|
|
|
getCategories();
|
|
|
|
|
|
// setVideoActive(fileTypeId == '2');
|
|
|
|
|
|
// getRoles();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
initState();
|
|
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
|
|
|
|
const getCategories = async () => {
|
|
|
|
|
|
try {
|
2025-10-16 05:22:48 +00:00
|
|
|
|
const category = await listEnableCategoryNew(fileTypeId);
|
2025-01-05 00:19:26 +00:00
|
|
|
|
const resCategory: Category[] = category?.data?.data?.content;
|
2024-12-08 19:23:05 +00:00
|
|
|
|
|
|
|
|
|
|
setCategories(resCategory);
|
2025-08-12 06:31:20 +00:00
|
|
|
|
// console.log("data category", resCategory);
|
2024-12-08 19:23:05 +00:00
|
|
|
|
|
|
|
|
|
|
if (scheduleId && scheduleType === "3") {
|
|
|
|
|
|
const findCategory = resCategory.find((o) =>
|
|
|
|
|
|
o.name.toLowerCase().includes("pers rilis")
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
if (findCategory) {
|
2024-12-09 13:17:22 +00:00
|
|
|
|
// setValue("categoryId", findCategory.id);
|
2025-07-12 11:52:36 +00:00
|
|
|
|
setSelectedCategory(findCategory.id);
|
2024-12-08 19:23:05 +00:00
|
|
|
|
const response = await getTagsBySubCategoryId(findCategory.id);
|
2025-01-10 03:30:32 +00:00
|
|
|
|
setTags(response?.data?.data);
|
2024-12-08 19:23:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error("Failed to fetch categories:", error);
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2025-01-07 10:30:51 +00:00
|
|
|
|
const handleCheckboxChange = (id: string): void => {
|
|
|
|
|
|
if (id === "all") {
|
|
|
|
|
|
if (publishedFor.includes("all")) {
|
|
|
|
|
|
setPublishedFor([]);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
setPublishedFor(
|
|
|
|
|
|
options
|
|
|
|
|
|
.filter((opt: any) => opt.id !== "all")
|
|
|
|
|
|
.map((opt: any) => opt.id)
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|
|
|
|
|
|
} else {
|
|
|
|
|
|
const updatedPublishedFor = publishedFor.includes(id)
|
|
|
|
|
|
? publishedFor.filter((item) => item !== id)
|
|
|
|
|
|
: [...publishedFor, id];
|
|
|
|
|
|
|
|
|
|
|
|
if (publishedFor.includes("all") && id !== "all") {
|
|
|
|
|
|
setPublishedFor(updatedPublishedFor.filter((item) => item !== "all"));
|
|
|
|
|
|
} else {
|
|
|
|
|
|
setPublishedFor(updatedPublishedFor);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2025-06-18 06:19:30 +00:00
|
|
|
|
useEffect(() => {
|
|
|
|
|
|
if (articleBody) {
|
|
|
|
|
|
setValue("description", articleBody);
|
|
|
|
|
|
setValue("rewriteDescription", articleBody);
|
|
|
|
|
|
}
|
|
|
|
|
|
}, [articleBody, setValue]);
|
|
|
|
|
|
|
2025-01-08 20:01:32 +00:00
|
|
|
|
const save = async (data: VideoSchema) => {
|
2025-07-18 18:06:24 +00:00
|
|
|
|
if (publishedFor.length === 0) {
|
|
|
|
|
|
setPublishedForError("Minimal 1 target publish harus dipilih.");
|
|
|
|
|
|
return;
|
|
|
|
|
|
} else {
|
|
|
|
|
|
setPublishedForError(null);
|
|
|
|
|
|
}
|
2025-01-03 19:35:50 +00:00
|
|
|
|
loading();
|
2025-07-16 10:26:23 +00:00
|
|
|
|
const finalTags = data.tags.join(", ");
|
2025-10-15 07:02:41 +00:00
|
|
|
|
// const finalTitle = isSwitchOn ? title : data.title;
|
2025-06-18 06:19:30 +00:00
|
|
|
|
// const finalDescription = articleBody || data.description;
|
2025-10-15 07:02:41 +00:00
|
|
|
|
// const finalDescription = isSwitchOn
|
|
|
|
|
|
// ? data.description
|
|
|
|
|
|
// : selectedFileType === "rewrite"
|
|
|
|
|
|
// ? data.rewriteDescription
|
|
|
|
|
|
// : data.descriptionOri;
|
|
|
|
|
|
|
|
|
|
|
|
// if (!finalDescription?.trim()) {
|
|
|
|
|
|
// MySwal.fire("Error", "Deskripsi tidak boleh kosong.", "error");
|
|
|
|
|
|
// return;
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
// // 👉 tempelkan hasil translate ke form agar ikut terkirim
|
|
|
|
|
|
// if (translatedContent) {
|
|
|
|
|
|
// data.descriptionOri = translatedContent;
|
|
|
|
|
|
// console.log(
|
|
|
|
|
|
// "🌍 Translate dimasukkan ke descriptionOri:",
|
|
|
|
|
|
// translatedContent
|
|
|
|
|
|
// );
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
// Tentukan title final (gunakan versi translate kalau ada)
|
|
|
|
|
|
const finalTitle =
|
|
|
|
|
|
translatedTitle && translatedTitle.trim() !== ""
|
|
|
|
|
|
? translatedTitle
|
|
|
|
|
|
: isSwitchOn
|
|
|
|
|
|
? title
|
|
|
|
|
|
: data.title;
|
|
|
|
|
|
|
|
|
|
|
|
// Tentukan deskripsi final:
|
|
|
|
|
|
// Jika ada hasil translate, kirim itu ke backend
|
|
|
|
|
|
const finalDescription =
|
|
|
|
|
|
translatedContent && translatedContent.trim() !== ""
|
|
|
|
|
|
? translatedContent
|
|
|
|
|
|
: isSwitchOn
|
|
|
|
|
|
? data.description
|
|
|
|
|
|
: selectedFileType === "rewrite"
|
|
|
|
|
|
? data.rewriteDescription
|
|
|
|
|
|
: data.descriptionOri;
|
2025-06-18 06:19:30 +00:00
|
|
|
|
|
|
|
|
|
|
if (!finalDescription?.trim()) {
|
2025-01-08 20:01:32 +00:00
|
|
|
|
MySwal.fire("Error", "Deskripsi tidak boleh kosong.", "error");
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
2025-06-18 06:19:30 +00:00
|
|
|
|
|
2025-10-15 07:02:41 +00:00
|
|
|
|
console.log("📝 Deskripsi final yang dikirim:", finalDescription);
|
2025-09-24 14:53:34 +00:00
|
|
|
|
|
2025-03-10 04:04:19 +00:00
|
|
|
|
let requestData: {
|
|
|
|
|
|
title: string;
|
|
|
|
|
|
description: string;
|
|
|
|
|
|
htmlDescription: string;
|
|
|
|
|
|
fileTypeId: string;
|
|
|
|
|
|
categoryId: any;
|
|
|
|
|
|
subCategoryId: any;
|
|
|
|
|
|
uploadedBy: string;
|
|
|
|
|
|
statusId: string;
|
|
|
|
|
|
publishedFor: string;
|
|
|
|
|
|
creatorName: string;
|
|
|
|
|
|
tags: string;
|
|
|
|
|
|
isYoutube: boolean;
|
|
|
|
|
|
isInternationalMedia: boolean;
|
2025-07-12 11:52:36 +00:00
|
|
|
|
attachFromScheduleId?: number;
|
2025-03-10 04:04:19 +00:00
|
|
|
|
} = {
|
2024-12-04 17:28:40 +00:00
|
|
|
|
...data,
|
2025-01-03 19:35:50 +00:00
|
|
|
|
title: finalTitle,
|
2025-07-21 04:07:08 +00:00
|
|
|
|
description: htmlToString(finalDescription),
|
2025-01-08 20:01:32 +00:00
|
|
|
|
htmlDescription: finalDescription,
|
2024-12-09 13:17:22 +00:00
|
|
|
|
fileTypeId,
|
2025-01-03 19:35:50 +00:00
|
|
|
|
categoryId: selectedCategory,
|
|
|
|
|
|
subCategoryId: selectedCategory,
|
2024-12-09 13:17:22 +00:00
|
|
|
|
uploadedBy: "2b7c8d83-d298-4b19-9f74-b07924506b58",
|
|
|
|
|
|
statusId: "1",
|
2025-01-07 10:30:51 +00:00
|
|
|
|
publishedFor: publishedFor.join(","),
|
2024-12-09 13:17:22 +00:00
|
|
|
|
creatorName: data.creatorName,
|
2025-01-03 19:35:50 +00:00
|
|
|
|
tags: finalTags,
|
2024-12-09 13:17:22 +00:00
|
|
|
|
isYoutube: false,
|
|
|
|
|
|
isInternationalMedia: false,
|
2024-12-04 17:28:40 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
2025-01-03 19:35:50 +00:00
|
|
|
|
let id = Cookies.get("idCreate");
|
2024-12-04 17:28:40 +00:00
|
|
|
|
|
2025-03-10 04:04:19 +00:00
|
|
|
|
if (scheduleId !== undefined) {
|
2025-06-13 08:21:08 +00:00
|
|
|
|
requestData.attachFromScheduleId = Number(scheduleId);
|
2025-03-10 04:04:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-01-03 19:35:50 +00:00
|
|
|
|
if (id == undefined) {
|
|
|
|
|
|
const response = await createMedia(requestData);
|
2025-08-12 06:31:20 +00:00
|
|
|
|
// console.log("Form Data Submitted:", requestData);
|
2025-01-03 19:35:50 +00:00
|
|
|
|
|
|
|
|
|
|
if (response?.error) {
|
|
|
|
|
|
MySwal.fire("Error", response?.message, "error");
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
2025-01-10 03:30:32 +00:00
|
|
|
|
Cookies.set("idCreate", response?.data?.data, { expires: 1 });
|
2025-01-03 19:35:50 +00:00
|
|
|
|
id = response?.data?.data;
|
|
|
|
|
|
|
2025-06-13 08:21:08 +00:00
|
|
|
|
if (thumbnail) {
|
|
|
|
|
|
const formMedia = new FormData();
|
|
|
|
|
|
formMedia.append("file", thumbnail);
|
2025-07-16 10:26:23 +00:00
|
|
|
|
const responseThumbnail = await uploadThumbnail(id, formMedia);
|
2025-06-13 08:21:08 +00:00
|
|
|
|
if (responseThumbnail?.error) {
|
|
|
|
|
|
error(responseThumbnail.message);
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
2025-01-03 19:35:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
const progressInfoArr = [];
|
|
|
|
|
|
for (const item of files) {
|
|
|
|
|
|
progressInfoArr.push({ percentage: 0, fileName: item.name });
|
|
|
|
|
|
}
|
|
|
|
|
|
progressInfo = progressInfoArr;
|
|
|
|
|
|
setIsStartUpload(true);
|
|
|
|
|
|
setProgressList(progressInfoArr);
|
|
|
|
|
|
|
2025-10-27 03:12:27 +00:00
|
|
|
|
MySwal.fire({
|
|
|
|
|
|
title: "Mengunggah Video...",
|
|
|
|
|
|
text: "Mohon tunggu hingga proses upload selesai.",
|
|
|
|
|
|
allowOutsideClick: false,
|
|
|
|
|
|
allowEscapeKey: false,
|
|
|
|
|
|
didOpen: () => {
|
|
|
|
|
|
Swal.showLoading();
|
|
|
|
|
|
},
|
|
|
|
|
|
});
|
|
|
|
|
|
// close();
|
2025-01-03 19:35:50 +00:00
|
|
|
|
// showProgress();
|
|
|
|
|
|
files.map(async (item: any, index: number) => {
|
2025-01-07 19:21:19 +00:00
|
|
|
|
await uploadResumableFile(index, String(id), item, "0");
|
2024-12-04 17:28:40 +00:00
|
|
|
|
});
|
2025-01-03 19:35:50 +00:00
|
|
|
|
|
|
|
|
|
|
Cookies.remove("idCreate");
|
2024-12-04 17:28:40 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
2025-06-13 08:21:08 +00:00
|
|
|
|
useEffect(() => {
|
|
|
|
|
|
return () => {
|
|
|
|
|
|
if (preview) {
|
|
|
|
|
|
URL.revokeObjectURL(preview);
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
}, [preview]);
|
|
|
|
|
|
|
2025-01-08 20:01:32 +00:00
|
|
|
|
const onSubmit = (data: VideoSchema) => {
|
2024-12-04 17:28:40 +00:00
|
|
|
|
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);
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2025-01-03 19:35:50 +00:00
|
|
|
|
async function uploadResumableFile(
|
|
|
|
|
|
idx: number,
|
|
|
|
|
|
id: string,
|
|
|
|
|
|
file: any,
|
|
|
|
|
|
duration: string
|
|
|
|
|
|
) {
|
2025-08-12 06:31:20 +00:00
|
|
|
|
// console.log(idx, id, file, duration);
|
2025-01-03 19:35:50 +00:00
|
|
|
|
|
|
|
|
|
|
// const placements = getPlacement(file.placements);
|
|
|
|
|
|
// console.log("Placementttt: : ", placements);
|
2025-01-10 03:52:56 +00:00
|
|
|
|
const resCsrf = await getCsrfToken();
|
|
|
|
|
|
const csrfToken = resCsrf?.data?.token;
|
2025-08-12 06:31:20 +00:00
|
|
|
|
// console.log("CSRF TOKEN : ", csrfToken);
|
2025-01-10 03:52:56 +00:00
|
|
|
|
const headers = {
|
2025-01-15 19:02:28 +00:00
|
|
|
|
"X-XSRF-TOKEN": csrfToken,
|
2025-01-10 03:52:56 +00:00
|
|
|
|
};
|
2025-01-03 19:35:50 +00:00
|
|
|
|
|
|
|
|
|
|
const upload = new Upload(file, {
|
|
|
|
|
|
endpoint: `${process.env.NEXT_PUBLIC_API}/media/file/upload`,
|
2025-01-10 03:52:56 +00:00
|
|
|
|
headers: headers,
|
2025-01-03 19:35:50 +00:00
|
|
|
|
retryDelays: [0, 3000, 6000, 12_000, 24_000],
|
|
|
|
|
|
chunkSize: 20_000,
|
|
|
|
|
|
metadata: {
|
|
|
|
|
|
mediaid: id,
|
|
|
|
|
|
filename: file.name,
|
|
|
|
|
|
filetype: file.type,
|
|
|
|
|
|
duration,
|
2025-01-15 19:02:28 +00:00
|
|
|
|
isWatermark: "true", // hardcode
|
2025-01-03 19:35:50 +00:00
|
|
|
|
},
|
2025-01-10 03:52:56 +00:00
|
|
|
|
onBeforeRequest: function (req) {
|
2025-01-15 19:02:28 +00:00
|
|
|
|
var xhr = req.getUnderlyingObject();
|
|
|
|
|
|
xhr.withCredentials = true;
|
2025-01-10 03:52:56 +00:00
|
|
|
|
},
|
2025-01-03 19:35:50 +00:00
|
|
|
|
onError: async (e: any) => {
|
2025-08-12 06:31:20 +00:00
|
|
|
|
// console.log("Error upload :", e);
|
2025-01-03 19:35:50 +00:00
|
|
|
|
error(e);
|
|
|
|
|
|
},
|
|
|
|
|
|
onChunkComplete: (
|
|
|
|
|
|
chunkSize: any,
|
|
|
|
|
|
bytesAccepted: any,
|
|
|
|
|
|
bytesTotal: any
|
|
|
|
|
|
) => {
|
|
|
|
|
|
const uploadPersen = Math.floor((bytesAccepted / bytesTotal) * 100);
|
|
|
|
|
|
progressInfo[idx].percentage = uploadPersen;
|
|
|
|
|
|
counterUpdateProgress++;
|
2025-08-12 06:31:20 +00:00
|
|
|
|
// console.log(counterUpdateProgress);
|
2025-01-03 19:35:50 +00:00
|
|
|
|
setProgressList(progressInfo);
|
|
|
|
|
|
setCounterProgress(counterUpdateProgress);
|
|
|
|
|
|
},
|
|
|
|
|
|
onSuccess: async () => {
|
|
|
|
|
|
uploadPersen = 100;
|
|
|
|
|
|
progressInfo[idx].percentage = 100;
|
|
|
|
|
|
counterUpdateProgress++;
|
|
|
|
|
|
setCounterProgress(counterUpdateProgress);
|
|
|
|
|
|
successTodo();
|
|
|
|
|
|
},
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
upload.start();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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++;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-10-27 03:12:27 +00:00
|
|
|
|
if (counter === progressInfo.length) {
|
2025-01-03 19:35:50 +00:00
|
|
|
|
setIsStartUpload(false);
|
|
|
|
|
|
Cookies.remove("idCreate");
|
2025-10-27 03:12:27 +00:00
|
|
|
|
|
|
|
|
|
|
close();
|
|
|
|
|
|
|
2025-01-05 08:18:48 +00:00
|
|
|
|
successSubmit("/in/contributor/content/video");
|
2025-01-03 19:35:50 +00:00
|
|
|
|
}
|
2025-10-27 03:12:27 +00:00
|
|
|
|
|
|
|
|
|
|
// if (counter == progressInfo.length) {
|
|
|
|
|
|
// setIsStartUpload(false);
|
|
|
|
|
|
// // hideProgress();
|
|
|
|
|
|
// Cookies.remove("idCreate");
|
|
|
|
|
|
// successSubmit("/in/contributor/content/video");
|
|
|
|
|
|
// }
|
2025-01-03 19:35:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const handleImageChange = (e: React.ChangeEvent<HTMLInputElement>) => {
|
|
|
|
|
|
const file = e.target.files?.[0];
|
|
|
|
|
|
if (file) {
|
2025-08-12 06:31:20 +00:00
|
|
|
|
setThumbnail(file);
|
|
|
|
|
|
setPreview(URL.createObjectURL(file));
|
2025-01-03 19:35:50 +00:00
|
|
|
|
console.log("Selected Thumbnail:", file);
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
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) => (
|
|
|
|
|
|
<div
|
|
|
|
|
|
key={file.name}
|
|
|
|
|
|
className=" flex justify-between border px-3.5 py-3 my-6 rounded-md"
|
2025-10-27 03:13:49 +00:00
|
|
|
|
>
|
2025-01-03 19:35:50 +00:00
|
|
|
|
<div className="flex gap-3 items-center">
|
2025-06-07 10:27:37 +00:00
|
|
|
|
{/* <div className="file-preview">{renderFilePreview(file)}</div> */}
|
|
|
|
|
|
<svg
|
|
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
|
|
width="48"
|
|
|
|
|
|
height="48"
|
|
|
|
|
|
viewBox="0 0 24 24"
|
|
|
|
|
|
>
|
|
|
|
|
|
<g fill="none" fillRule="evenodd">
|
|
|
|
|
|
<path d="m12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035q-.016-.005-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427q-.004-.016-.017-.018m.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093q.019.005.029-.008l.004-.014l-.034-.614q-.005-.018-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014l-.034.614q.001.018.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01z" />
|
|
|
|
|
|
<path
|
|
|
|
|
|
fill="currentColor"
|
|
|
|
|
|
d="M20 3a2 2 0 0 1 1.995 1.85L22 5v14a2 2 0 0 1-1.85 1.995L20 21H4a2 2 0 0 1-1.995-1.85L2 19V5a2 2 0 0 1 1.85-1.995L4 3zm0 2H4v14h16zm-9.66 2.638l.518.23l.338.16l.387.19l.43.218l.47.25l.507.28l.266.152l.518.305l.474.292l.43.273l.38.253l.48.33l.364.263l.095.07a1.234 1.234 0 0 1 0 1.98l-.323.235l-.44.308l-.356.239l-.405.263l-.453.283l-.499.3l-.534.309l-.509.282l-.471.25l-.43.22l-.386.188l-.622.288l-.23.1a1.234 1.234 0 0 1-1.714-.99l-.058-.565l-.032-.374l-.042-.664l-.023-.508l-.015-.555l-.004-.294l-.002-.305q0-.31.006-.6l.015-.555l.023-.507l.027-.457l.03-.401l.075-.744a1.235 1.235 0 0 1 1.715-.992m.611 2.501l-.436-.218l-.029.487l-.022.551l-.013.61l-.002.325l.002.325l.013.609l.01.283l.026.52l.015.235l.434-.218l.487-.256l.535-.294l.284-.162l.551-.326l.494-.306l.436-.28l.196-.13l-.407-.27l-.466-.294a30 30 0 0 0-.803-.48l-.283-.161l-.534-.294z"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</g>
|
|
|
|
|
|
</svg>
|
2025-01-03 19:35:50 +00:00
|
|
|
|
<div>
|
|
|
|
|
|
<div className=" text-sm text-card-foreground">{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={() => handleRemoveFile(file)}
|
|
|
|
|
|
>
|
|
|
|
|
|
<Icon icon="tabler:x" className=" h-5 w-5" />
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
));
|
|
|
|
|
|
|
|
|
|
|
|
const handleRemoveAllFiles = () => {
|
|
|
|
|
|
setFiles([]);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2025-01-08 20:01:32 +00:00
|
|
|
|
useEffect(() => {
|
|
|
|
|
|
// Jika input title kosong, isi dengan hasil generate title
|
|
|
|
|
|
if (!getValues("title") && title) {
|
|
|
|
|
|
setValue("title", title);
|
|
|
|
|
|
}
|
|
|
|
|
|
}, [title, getValues, setValue]);
|
|
|
|
|
|
|
2025-06-18 06:19:30 +00:00
|
|
|
|
const handleRewriteClick = async () => {
|
|
|
|
|
|
setIsContentRewriteClicked(true);
|
|
|
|
|
|
|
|
|
|
|
|
const request = {
|
|
|
|
|
|
style: selectedWritingStyle,
|
|
|
|
|
|
lang: "id",
|
|
|
|
|
|
contextType: "text",
|
|
|
|
|
|
urlContext: null,
|
2025-09-18 17:01:44 +00:00
|
|
|
|
context: getValues("descriptionOri"),
|
|
|
|
|
|
// context: editorContent,
|
2025-06-18 06:19:30 +00:00
|
|
|
|
createdBy: roleId,
|
|
|
|
|
|
sentiment: "Humorous",
|
|
|
|
|
|
clientId: "7QTW8cMojyayt6qnhqTOeJaBI70W4EaQ",
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const res = await generateDataRewrite(request);
|
|
|
|
|
|
close();
|
|
|
|
|
|
|
|
|
|
|
|
if (res?.error) {
|
|
|
|
|
|
console.error(res.message);
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const newArticleId = res?.data?.data?.id;
|
|
|
|
|
|
setIsGeneratedArticle(true);
|
|
|
|
|
|
|
|
|
|
|
|
setArticleIds((prevIds: string[]) => {
|
|
|
|
|
|
if (prevIds.length < 3) {
|
|
|
|
|
|
return [...prevIds, newArticleId];
|
|
|
|
|
|
} else {
|
|
|
|
|
|
const updatedIds = [...prevIds];
|
|
|
|
|
|
updatedIds[2] = newArticleId;
|
|
|
|
|
|
return updatedIds;
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
Cookies.set("nulisAIArticleIdTemp", JSON.stringify(articleIds));
|
|
|
|
|
|
setShowRewriteEditor(true);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2024-12-04 17:28:40 +00:00
|
|
|
|
return (
|
|
|
|
|
|
<form onSubmit={handleSubmit(onSubmit)}>
|
2025-01-31 14:16:41 +00:00
|
|
|
|
<div className="flex flex-col lg:flex-row gap-10">
|
2024-12-04 17:28:40 +00:00
|
|
|
|
<Card className="w-full lg:w-8/12">
|
|
|
|
|
|
<div className="px-6 py-6">
|
2025-07-12 11:52:36 +00:00
|
|
|
|
<p className="text-lg font-semibold mb-3">
|
|
|
|
|
|
{t("form-video", { defaultValue: "Form Video" })}
|
|
|
|
|
|
</p>
|
2024-12-04 17:28:40 +00:00
|
|
|
|
<div className="gap-5 mb-5">
|
2025-10-15 07:02:41 +00:00
|
|
|
|
{/* Input Title dengan tombol translate */}
|
2024-12-04 17:28:40 +00:00
|
|
|
|
<div className="space-y-2 py-3">
|
2025-10-15 07:02:41 +00:00
|
|
|
|
<div className="flex justify-between items-center">
|
|
|
|
|
|
<Label>{t("title", { defaultValue: "Title" })}</Label>
|
|
|
|
|
|
|
|
|
|
|
|
{roleId === "14" && (
|
|
|
|
|
|
<button
|
|
|
|
|
|
type="button"
|
|
|
|
|
|
onClick={async () => {
|
|
|
|
|
|
try {
|
|
|
|
|
|
loading();
|
|
|
|
|
|
setIsLoadingTranslateTitle(true);
|
|
|
|
|
|
const res = await translateText({
|
|
|
|
|
|
text: getValues("title"),
|
|
|
|
|
|
sourceLang: "ID",
|
|
|
|
|
|
targetLang: "EN",
|
|
|
|
|
|
});
|
|
|
|
|
|
if (!res.error) {
|
|
|
|
|
|
const resultText =
|
|
|
|
|
|
res?.data?.data?.translations?.[0]?.text || "";
|
|
|
|
|
|
setTranslatedTitle(resultText);
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (err) {
|
|
|
|
|
|
console.error("Translate title gagal:", err);
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
close();
|
|
|
|
|
|
setIsLoadingTranslateTitle(false);
|
|
|
|
|
|
}
|
|
|
|
|
|
}}
|
|
|
|
|
|
className="px-3 py-2 bg-blue-500 text-white rounded-md hover:bg-blue-600"
|
|
|
|
|
|
>
|
|
|
|
|
|
{isLoadingTranslateTitle
|
|
|
|
|
|
? "Translating..."
|
|
|
|
|
|
: "Translate to English"}
|
|
|
|
|
|
</button>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
{/* Judul Bahasa Indonesia */}
|
|
|
|
|
|
<Controller
|
|
|
|
|
|
control={control}
|
|
|
|
|
|
name="title"
|
|
|
|
|
|
render={({ field }) => (
|
|
|
|
|
|
<Input
|
|
|
|
|
|
size="md"
|
|
|
|
|
|
type="text"
|
|
|
|
|
|
value={field.value}
|
|
|
|
|
|
onChange={field.onChange}
|
|
|
|
|
|
placeholder="Masukkan Judul Bahasa Indonesia"
|
|
|
|
|
|
/>
|
|
|
|
|
|
)}
|
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
|
|
{/* Versi English (muncul setelah klik translate) */}
|
|
|
|
|
|
{translatedTitle && (
|
|
|
|
|
|
<div className="mt-3">
|
|
|
|
|
|
<Label className="text-sm font-semibold">
|
|
|
|
|
|
English Title
|
|
|
|
|
|
</Label>
|
|
|
|
|
|
<Input
|
|
|
|
|
|
size="md"
|
|
|
|
|
|
type="text"
|
|
|
|
|
|
value={translatedTitle}
|
|
|
|
|
|
onChange={(e) => setTranslatedTitle(e.target.value)}
|
|
|
|
|
|
placeholder="English version"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)}
|
|
|
|
|
|
|
|
|
|
|
|
{errors.title?.message && (
|
|
|
|
|
|
<p className="text-red-400 text-sm">{errors.title.message}</p>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
{/* <div className="space-y-2 py-3">
|
2025-07-06 09:23:45 +00:00
|
|
|
|
<Label>{t("title", { defaultValue: "Title" })}</Label>
|
2024-12-04 17:28:40 +00:00
|
|
|
|
<Controller
|
|
|
|
|
|
control={control}
|
|
|
|
|
|
name="title"
|
|
|
|
|
|
render={({ field }) => (
|
|
|
|
|
|
<Input
|
|
|
|
|
|
size="md"
|
|
|
|
|
|
type="text"
|
|
|
|
|
|
value={field.value}
|
|
|
|
|
|
onChange={field.onChange}
|
|
|
|
|
|
placeholder="Enter Title"
|
|
|
|
|
|
/>
|
|
|
|
|
|
)}
|
|
|
|
|
|
/>
|
|
|
|
|
|
{errors.title?.message && (
|
|
|
|
|
|
<p className="text-red-400 text-sm">{errors.title.message}</p>
|
|
|
|
|
|
)}
|
2025-10-15 07:02:41 +00:00
|
|
|
|
</div> */}
|
2025-01-03 19:35:50 +00:00
|
|
|
|
|
2024-12-04 17:28:40 +00:00
|
|
|
|
<div className="flex items-center">
|
2025-03-26 18:58:30 +00:00
|
|
|
|
<div className="py-3 w-full space-y-2">
|
2025-07-06 09:23:45 +00:00
|
|
|
|
<Label>{t("category", { defaultValue: "Category" })}</Label>
|
2025-07-12 11:52:36 +00:00
|
|
|
|
<Controller
|
|
|
|
|
|
control={control}
|
|
|
|
|
|
name="category"
|
|
|
|
|
|
render={({ field }) => (
|
|
|
|
|
|
<Select
|
|
|
|
|
|
value={field.value}
|
|
|
|
|
|
onValueChange={(id) => {
|
|
|
|
|
|
field.onChange(id);
|
2025-08-12 06:31:20 +00:00
|
|
|
|
// console.log("Selected Category ID:", id);
|
|
|
|
|
|
setSelectedCategory(id);
|
2025-07-12 11:52:36 +00:00
|
|
|
|
}}
|
|
|
|
|
|
>
|
|
|
|
|
|
<SelectTrigger size="md">
|
|
|
|
|
|
<SelectValue placeholder="Pilih" />
|
|
|
|
|
|
</SelectTrigger>
|
|
|
|
|
|
<SelectContent>
|
|
|
|
|
|
{categories.map((category) => (
|
|
|
|
|
|
<SelectItem
|
|
|
|
|
|
key={category.id}
|
|
|
|
|
|
value={category.id.toString()}
|
|
|
|
|
|
>
|
|
|
|
|
|
{category.name}
|
|
|
|
|
|
</SelectItem>
|
|
|
|
|
|
))}
|
|
|
|
|
|
</SelectContent>
|
|
|
|
|
|
</Select>
|
|
|
|
|
|
)}
|
|
|
|
|
|
/>
|
|
|
|
|
|
{errors.category && (
|
|
|
|
|
|
<p className="text-red-500 text-sm">
|
|
|
|
|
|
{errors.category.message}
|
|
|
|
|
|
</p>
|
|
|
|
|
|
)}
|
2024-12-04 17:28:40 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2025-01-03 19:35:50 +00:00
|
|
|
|
<div className="flex flex-row items-center gap-3 py-2">
|
2025-07-12 11:52:36 +00:00
|
|
|
|
<Label>
|
|
|
|
|
|
{t("ai-assistance", { defaultValue: "Ai Assistance" })}
|
|
|
|
|
|
</Label>
|
2025-01-03 19:35:50 +00:00
|
|
|
|
<div className="flex items-center gap-3">
|
|
|
|
|
|
<Switch
|
|
|
|
|
|
defaultChecked={isSwitchOn}
|
|
|
|
|
|
color="primary"
|
|
|
|
|
|
id="c2"
|
|
|
|
|
|
onCheckedChange={(checked: boolean) =>
|
|
|
|
|
|
setIsSwitchOn(checked)
|
|
|
|
|
|
}
|
|
|
|
|
|
/>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
{isSwitchOn && (
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<div className="flex flex-row gap-3">
|
|
|
|
|
|
<div className="space-y-2 py-3 w-4/12">
|
2025-07-12 11:52:36 +00:00
|
|
|
|
<Label>
|
|
|
|
|
|
{t("language", { defaultValue: "Language" })}
|
|
|
|
|
|
</Label>
|
2025-01-03 19:35:50 +00:00
|
|
|
|
<Select onValueChange={setSelectedLanguage}>
|
|
|
|
|
|
<SelectTrigger size="md">
|
|
|
|
|
|
<SelectValue placeholder="Pilih" />
|
|
|
|
|
|
</SelectTrigger>
|
|
|
|
|
|
<SelectContent>
|
|
|
|
|
|
<SelectItem value="id">Indonesia</SelectItem>
|
|
|
|
|
|
<SelectItem value="en">English</SelectItem>
|
|
|
|
|
|
</SelectContent>
|
|
|
|
|
|
</Select>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div className="space-y-2 py-3 w-4/12">
|
2025-07-12 11:52:36 +00:00
|
|
|
|
<Label>
|
|
|
|
|
|
{t("writing-style", { defaultValue: "Writing Style" })}
|
|
|
|
|
|
</Label>
|
2025-01-03 19:35:50 +00:00
|
|
|
|
<Select onValueChange={setSelectedWritingStyle}>
|
|
|
|
|
|
<SelectTrigger size="md">
|
|
|
|
|
|
<SelectValue placeholder="Pilih" />
|
|
|
|
|
|
</SelectTrigger>
|
|
|
|
|
|
<SelectContent>
|
|
|
|
|
|
<SelectItem value="friendly">Friendly</SelectItem>
|
|
|
|
|
|
<SelectItem value="profesional">
|
|
|
|
|
|
Profesional
|
|
|
|
|
|
</SelectItem>
|
|
|
|
|
|
<SelectItem value="informational">
|
|
|
|
|
|
Informational
|
|
|
|
|
|
</SelectItem>
|
|
|
|
|
|
<SelectItem value="neutral">Neutral</SelectItem>
|
|
|
|
|
|
<SelectItem value="witty">Witty</SelectItem>
|
|
|
|
|
|
</SelectContent>
|
|
|
|
|
|
</Select>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div className="space-y-2 py-3 w-4/12">
|
2025-07-12 11:52:36 +00:00
|
|
|
|
<Label>
|
|
|
|
|
|
{t("article-size", { defaultValue: "Article Size" })}
|
|
|
|
|
|
</Label>
|
2025-01-03 19:35:50 +00:00
|
|
|
|
<Select onValueChange={setSelectedSize}>
|
|
|
|
|
|
<SelectTrigger size="md">
|
|
|
|
|
|
<SelectValue placeholder="Pilih" />
|
|
|
|
|
|
</SelectTrigger>
|
|
|
|
|
|
<SelectContent>
|
|
|
|
|
|
<SelectItem value="news">
|
|
|
|
|
|
News (300 - 900 words)
|
|
|
|
|
|
</SelectItem>
|
|
|
|
|
|
<SelectItem value="info">
|
|
|
|
|
|
Info (900 - 2000 words)
|
|
|
|
|
|
</SelectItem>
|
|
|
|
|
|
<SelectItem value="detail">
|
|
|
|
|
|
Detail (2000 - 5000 words)
|
|
|
|
|
|
</SelectItem>
|
|
|
|
|
|
</SelectContent>
|
|
|
|
|
|
</Select>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div className="mt-5">
|
|
|
|
|
|
<div className="flex flex-row items-center gap-3 mb-3">
|
2025-07-12 11:52:36 +00:00
|
|
|
|
<Label>
|
|
|
|
|
|
{t("main-keyword", { defaultValue: "Main Keyword" })}
|
|
|
|
|
|
</Label>
|
2025-01-03 19:35:50 +00:00
|
|
|
|
<Button
|
|
|
|
|
|
variant="outline"
|
|
|
|
|
|
color="primary"
|
|
|
|
|
|
onClick={doGenerateMainKeyword}
|
|
|
|
|
|
disabled={isLoading}
|
|
|
|
|
|
>
|
|
|
|
|
|
{isLoading ? "Processing..." : "Proses"}
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<Input
|
|
|
|
|
|
size="md"
|
|
|
|
|
|
type="text"
|
|
|
|
|
|
value={selectedMainKeyword}
|
|
|
|
|
|
onChange={(e) => setSelectedMainKeyword(e.target.value)}
|
|
|
|
|
|
placeholder="Enter Main Keyword"
|
|
|
|
|
|
/>
|
|
|
|
|
|
{/* )}
|
2025-06-18 06:19:30 +00:00
|
|
|
|
/> */}
|
2025-01-03 19:35:50 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div className="mt-5">
|
|
|
|
|
|
<div className="flex flex-row items-center gap-3 mb-3">
|
2025-07-06 09:23:45 +00:00
|
|
|
|
<Label>{t("title", { defaultValue: "Title" })}</Label>
|
2025-01-03 19:35:50 +00:00
|
|
|
|
<Button
|
|
|
|
|
|
variant="outline"
|
|
|
|
|
|
color="primary"
|
|
|
|
|
|
onClick={doGenerateTitle}
|
|
|
|
|
|
disabled={isLoading}
|
|
|
|
|
|
>
|
|
|
|
|
|
{isLoading ? "Generating..." : "Generate"}
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<Input
|
|
|
|
|
|
size="md"
|
|
|
|
|
|
type="text"
|
|
|
|
|
|
value={title}
|
|
|
|
|
|
onChange={(e) => setTitle(e.target.value)}
|
|
|
|
|
|
placeholder="Generated Title"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div className="mt-5">
|
|
|
|
|
|
<div className="flex flex-row items-center gap-3 mb-3">
|
2025-07-06 09:23:45 +00:00
|
|
|
|
<Label>{t("seo", { defaultValue: "Seo" })}</Label>
|
2025-01-03 19:35:50 +00:00
|
|
|
|
<Button
|
|
|
|
|
|
variant={"outline"}
|
|
|
|
|
|
color="primary"
|
|
|
|
|
|
onClick={doGenerateKeyword}
|
|
|
|
|
|
disabled={isLoading}
|
|
|
|
|
|
>
|
|
|
|
|
|
{isLoading ? "Generating..." : "Generate"}
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<p className="font-semibold">
|
2025-07-12 11:52:36 +00:00
|
|
|
|
{t("Keywords to include in the text", {
|
|
|
|
|
|
defaultValue: "Keywords To Include In The Text",
|
|
|
|
|
|
})}
|
|
|
|
|
|
</p>
|
|
|
|
|
|
<p className="text-sm">
|
|
|
|
|
|
{t("title-key", { defaultValue: "Title Key" })}
|
2025-01-03 19:35:50 +00:00
|
|
|
|
</p>
|
|
|
|
|
|
<div className="mt-3">
|
|
|
|
|
|
<Textarea
|
|
|
|
|
|
value={selectedSEO}
|
|
|
|
|
|
onChange={(e) => setSelectedSEO(e.target.value)}
|
|
|
|
|
|
placeholder="Enter Title"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div className="mt-5">
|
2025-07-12 11:52:36 +00:00
|
|
|
|
<Label>
|
|
|
|
|
|
{t("special-instructions", {
|
|
|
|
|
|
defaultValue: "Special Instructions",
|
|
|
|
|
|
})}
|
|
|
|
|
|
(Optional)
|
|
|
|
|
|
</Label>
|
2025-01-03 19:35:50 +00:00
|
|
|
|
<div className="mt-3">
|
|
|
|
|
|
<Controller
|
|
|
|
|
|
control={control}
|
|
|
|
|
|
name="title"
|
|
|
|
|
|
render={({ field }) => (
|
|
|
|
|
|
<Textarea
|
|
|
|
|
|
value={field.value}
|
|
|
|
|
|
onChange={field.onChange}
|
|
|
|
|
|
placeholder="Enter Title"
|
|
|
|
|
|
/>
|
|
|
|
|
|
)}
|
|
|
|
|
|
/>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<div className="my-5">
|
|
|
|
|
|
<Button
|
|
|
|
|
|
// variant={"outline"}
|
|
|
|
|
|
color="primary"
|
|
|
|
|
|
onClick={handleGenerateArtikel}
|
|
|
|
|
|
size="sm"
|
2025-06-18 06:19:30 +00:00
|
|
|
|
type="button"
|
2025-01-03 19:35:50 +00:00
|
|
|
|
>
|
|
|
|
|
|
Generate Article
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
{isGeneratedArticle && (
|
2025-06-18 06:19:30 +00:00
|
|
|
|
<div className="mt-3 pb-0 flex flex-row">
|
2025-01-03 19:35:50 +00:00
|
|
|
|
{articleIds.map((id: string, index: number) => (
|
2025-01-08 03:02:51 +00:00
|
|
|
|
<p
|
2025-01-03 19:35:50 +00:00
|
|
|
|
key={index}
|
2025-01-07 10:30:51 +00:00
|
|
|
|
className={`mr-3 px-3 py-2 rounded-md ${
|
2025-01-03 19:35:50 +00:00
|
|
|
|
selectedArticleId === id
|
2025-01-07 10:30:51 +00:00
|
|
|
|
? "bg-green-500 text-white"
|
|
|
|
|
|
: "border-2 border-green-500 text-green-500"
|
2025-01-03 19:35:50 +00:00
|
|
|
|
}`}
|
|
|
|
|
|
onClick={() => handleArticleIdClick(id)}
|
|
|
|
|
|
>
|
2025-02-08 03:44:09 +00:00
|
|
|
|
{"Narasi " + (index + 1)}
|
2025-01-08 03:02:51 +00:00
|
|
|
|
</p>
|
2025-01-03 19:35:50 +00:00
|
|
|
|
))}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)}
|
|
|
|
|
|
|
|
|
|
|
|
<div className="pt-3">
|
|
|
|
|
|
<div className="flex flex-row justify-between items-center">
|
|
|
|
|
|
{selectedArticleId && (
|
2025-06-18 06:19:30 +00:00
|
|
|
|
<Button
|
|
|
|
|
|
className="mb-2"
|
|
|
|
|
|
size="sm"
|
|
|
|
|
|
variant={"outline"}
|
|
|
|
|
|
color="primary"
|
|
|
|
|
|
onClick={() => {
|
|
|
|
|
|
const url = `/${locale}/contributor/content/image/update-seo/${selectedArticleId}`;
|
|
|
|
|
|
window.open(url, "_blank", "noopener,noreferrer");
|
|
|
|
|
|
}}
|
2025-01-03 19:35:50 +00:00
|
|
|
|
>
|
2025-07-06 09:23:45 +00:00
|
|
|
|
{t("update", { defaultValue: "Update" })}
|
2025-06-18 06:19:30 +00:00
|
|
|
|
</Button>
|
2025-01-03 19:35:50 +00:00
|
|
|
|
)}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2025-06-18 06:19:30 +00:00
|
|
|
|
<div className="py-3 space-y-2">
|
2025-07-12 11:52:36 +00:00
|
|
|
|
<Label>
|
|
|
|
|
|
{t("description", { defaultValue: "Description" })}
|
|
|
|
|
|
</Label>
|
2025-06-18 06:19:30 +00:00
|
|
|
|
<Controller
|
|
|
|
|
|
control={control}
|
|
|
|
|
|
name="description"
|
|
|
|
|
|
render={({ field: { onChange, value } }) =>
|
|
|
|
|
|
isLoadingData ? (
|
|
|
|
|
|
<div className="flex justify-center items-center h-40">
|
|
|
|
|
|
<p className="text-gray-500">
|
|
|
|
|
|
Loading Proses Data...
|
|
|
|
|
|
</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
) : (
|
|
|
|
|
|
<CustomEditor
|
|
|
|
|
|
onChange={(value: any) => {
|
|
|
|
|
|
onChange(value);
|
|
|
|
|
|
setEditorContent(value);
|
|
|
|
|
|
}}
|
|
|
|
|
|
initialData={articleBody || value}
|
|
|
|
|
|
/>
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
/>
|
|
|
|
|
|
{errors.description?.message && (
|
|
|
|
|
|
<p className="text-red-400 text-sm">
|
|
|
|
|
|
{errors.description.message}
|
|
|
|
|
|
</p>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</div>
|
2025-01-03 19:35:50 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
)}
|
2025-06-18 06:19:30 +00:00
|
|
|
|
{!isSwitchOn && (
|
|
|
|
|
|
<>
|
|
|
|
|
|
<RadioGroup
|
|
|
|
|
|
onValueChange={(value) => setSelectedFileType(value)}
|
|
|
|
|
|
value={selectedFileType}
|
|
|
|
|
|
className=" grid-cols-1"
|
|
|
|
|
|
>
|
|
|
|
|
|
<div className="">
|
|
|
|
|
|
<RadioGroupItem value="original" id="original-file" />
|
|
|
|
|
|
<Label htmlFor="original-file">
|
|
|
|
|
|
Select Original Description
|
|
|
|
|
|
</Label>
|
|
|
|
|
|
</div>
|
2025-09-18 17:01:44 +00:00
|
|
|
|
|
2025-10-15 07:02:41 +00:00
|
|
|
|
{/* Deskripsi dengan translate atas-bawah */}
|
2025-06-18 06:19:30 +00:00
|
|
|
|
<div className="py-3 space-y-2">
|
2025-10-15 07:02:41 +00:00
|
|
|
|
<div className="flex justify-between items-center">
|
|
|
|
|
|
<Label>
|
|
|
|
|
|
{t("description", { defaultValue: "Description" })}
|
|
|
|
|
|
</Label>
|
|
|
|
|
|
|
|
|
|
|
|
{roleId === "14" && (
|
|
|
|
|
|
<button
|
|
|
|
|
|
type="button"
|
|
|
|
|
|
onClick={async () => {
|
|
|
|
|
|
try {
|
|
|
|
|
|
loading();
|
|
|
|
|
|
setIsLoadingTranslate(true);
|
|
|
|
|
|
const res = await translateText({
|
|
|
|
|
|
text: getValues("descriptionOri"),
|
|
|
|
|
|
sourceLang: "ID",
|
|
|
|
|
|
targetLang: "EN",
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
if (!res.error) {
|
|
|
|
|
|
const resultText =
|
|
|
|
|
|
res?.data?.data?.translations?.[0]?.text ||
|
|
|
|
|
|
"";
|
|
|
|
|
|
setTranslatedContent(resultText);
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (err) {
|
|
|
|
|
|
console.error("Translate gagal:", err);
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
close();
|
|
|
|
|
|
setIsLoadingTranslate(false);
|
|
|
|
|
|
}
|
|
|
|
|
|
}}
|
|
|
|
|
|
className="px-3 py-2 bg-blue-500 text-white rounded-md hover:bg-blue-600"
|
|
|
|
|
|
>
|
|
|
|
|
|
{isLoadingTranslate
|
|
|
|
|
|
? "Translating..."
|
|
|
|
|
|
: "Translate to English"}
|
|
|
|
|
|
</button>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
{/* Editor Bahasa Indonesia */}
|
|
|
|
|
|
<div className="mt-2">
|
|
|
|
|
|
<Label className="text-sm font-semibold">
|
|
|
|
|
|
Indonesian Version
|
|
|
|
|
|
</Label>
|
|
|
|
|
|
<Controller
|
|
|
|
|
|
control={control}
|
|
|
|
|
|
name="descriptionOri"
|
|
|
|
|
|
render={({ field: { onChange, value } }) => (
|
|
|
|
|
|
<CustomEditor
|
|
|
|
|
|
onChange={onChange}
|
|
|
|
|
|
initialData={value}
|
|
|
|
|
|
/>
|
|
|
|
|
|
)}
|
|
|
|
|
|
/>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
{/* Editor Bahasa Inggris (muncul setelah klik translate) */}
|
|
|
|
|
|
{translatedContent && (
|
|
|
|
|
|
<div className="mt-5">
|
|
|
|
|
|
<Label className="text-sm font-semibold">
|
|
|
|
|
|
English Version
|
|
|
|
|
|
</Label>
|
|
|
|
|
|
<CustomEditor
|
|
|
|
|
|
onChange={(val: any) => setTranslatedContent(val)}
|
|
|
|
|
|
initialData={translatedContent}
|
|
|
|
|
|
/>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)}
|
|
|
|
|
|
|
|
|
|
|
|
{errors.description?.message && (
|
|
|
|
|
|
<p className="text-red-400 text-sm">
|
|
|
|
|
|
{errors.description.message}
|
|
|
|
|
|
</p>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
{/* <div className="py-3 space-y-2">
|
2025-09-18 17:01:44 +00:00
|
|
|
|
<div className="flex justify-between items-center">
|
|
|
|
|
|
<Label>
|
|
|
|
|
|
{t("description", { defaultValue: "Description" })}
|
|
|
|
|
|
</Label>
|
|
|
|
|
|
|
|
|
|
|
|
{roleId === "14" && (
|
|
|
|
|
|
<button
|
|
|
|
|
|
type="button"
|
|
|
|
|
|
onClick={async () => {
|
|
|
|
|
|
try {
|
|
|
|
|
|
loading();
|
|
|
|
|
|
setIsLoadingTranslate(true);
|
|
|
|
|
|
const res = await translateText({
|
|
|
|
|
|
text: getValues("descriptionOri"),
|
|
|
|
|
|
sourceLang: "ID",
|
|
|
|
|
|
targetLang: "EN",
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
if (!res.error) {
|
|
|
|
|
|
const resultText =
|
|
|
|
|
|
res?.data?.data?.translations?.[0]?.text ||
|
|
|
|
|
|
"";
|
|
|
|
|
|
|
|
|
|
|
|
setTranslatedContent(resultText);
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (err) {
|
|
|
|
|
|
close();
|
|
|
|
|
|
console.error("Translate gagal:", err);
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
close();
|
|
|
|
|
|
setIsLoadingTranslate(false);
|
|
|
|
|
|
}
|
|
|
|
|
|
}}
|
|
|
|
|
|
className="px-3 py-2 bg-blue-500 text-white rounded-md hover:bg-blue-600"
|
|
|
|
|
|
>
|
|
|
|
|
|
{isLoadingTranslate
|
|
|
|
|
|
? "Translating..."
|
|
|
|
|
|
: "Translate to English"}
|
|
|
|
|
|
</button>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div className="flex items-center gap-4 mb-2">
|
|
|
|
|
|
<label className="flex items-center gap-2">
|
|
|
|
|
|
<input
|
|
|
|
|
|
type="radio"
|
|
|
|
|
|
value="id"
|
|
|
|
|
|
checked={selectedLang === "id"}
|
|
|
|
|
|
onChange={() => setSelectedLang("id")}
|
|
|
|
|
|
/>
|
|
|
|
|
|
<span>Gunakan Bahasa Indonesia</span>
|
|
|
|
|
|
</label>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<Controller
|
|
|
|
|
|
control={control}
|
|
|
|
|
|
name="descriptionOri"
|
|
|
|
|
|
render={({ field: { onChange, value } }) => (
|
|
|
|
|
|
<CustomEditor
|
|
|
|
|
|
onChange={onChange}
|
|
|
|
|
|
initialData={value}
|
|
|
|
|
|
/>
|
|
|
|
|
|
)}
|
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
|
|
{translatedContent && (
|
|
|
|
|
|
<div className="mt-4">
|
|
|
|
|
|
<div className="flex flex-col">
|
|
|
|
|
|
<Label className="text-[15px]">
|
|
|
|
|
|
English Version
|
|
|
|
|
|
</Label>{" "}
|
|
|
|
|
|
<label className="flex items-center gap-2">
|
|
|
|
|
|
<input
|
|
|
|
|
|
type="radio"
|
|
|
|
|
|
value="en"
|
|
|
|
|
|
checked={selectedLang === "en"}
|
|
|
|
|
|
onChange={() => setSelectedLang("en")}
|
2025-10-15 07:02:41 +00:00
|
|
|
|
disabled={!translatedContent}
|
2025-09-18 17:01:44 +00:00
|
|
|
|
/>
|
|
|
|
|
|
<span>Gunakan Bahasa Inggris</span>
|
|
|
|
|
|
</label>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<CustomEditor
|
|
|
|
|
|
onChange={(val: any) => setTranslatedContent(val)}
|
|
|
|
|
|
initialData={translatedContent}
|
|
|
|
|
|
/>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)}
|
|
|
|
|
|
|
|
|
|
|
|
{errors.description?.message && (
|
|
|
|
|
|
<p className="text-red-400 text-sm">
|
|
|
|
|
|
{errors.description.message}
|
|
|
|
|
|
</p>
|
|
|
|
|
|
)}
|
2025-10-15 07:02:41 +00:00
|
|
|
|
</div> */}
|
2025-09-18 17:01:44 +00:00
|
|
|
|
|
|
|
|
|
|
{/* <div className="py-3 space-y-2">
|
2025-07-12 11:52:36 +00:00
|
|
|
|
<Label>
|
|
|
|
|
|
{t("description", { defaultValue: "Description" })}
|
|
|
|
|
|
</Label>
|
2025-06-18 06:19:30 +00:00
|
|
|
|
<Controller
|
|
|
|
|
|
control={control}
|
|
|
|
|
|
name="descriptionOri"
|
|
|
|
|
|
render={({ field: { onChange, value } }) => (
|
|
|
|
|
|
<CustomEditor
|
|
|
|
|
|
onChange={(value: any) => {
|
|
|
|
|
|
onChange(value);
|
|
|
|
|
|
setEditorContent(value);
|
|
|
|
|
|
}}
|
|
|
|
|
|
initialData={value}
|
|
|
|
|
|
/>
|
|
|
|
|
|
)}
|
2025-01-07 10:30:51 +00:00
|
|
|
|
/>
|
2025-06-18 06:19:30 +00:00
|
|
|
|
{errors.description?.message && (
|
|
|
|
|
|
<p className="text-red-400 text-sm">
|
|
|
|
|
|
{errors.description.message}
|
|
|
|
|
|
</p>
|
|
|
|
|
|
)}
|
2025-09-18 17:01:44 +00:00
|
|
|
|
</div> */}
|
2025-06-18 06:19:30 +00:00
|
|
|
|
|
|
|
|
|
|
<p className="text-sm font-semibold">Content Rewrite</p>
|
|
|
|
|
|
<div className="my-2">
|
|
|
|
|
|
<Button
|
|
|
|
|
|
size="sm"
|
|
|
|
|
|
type="button"
|
|
|
|
|
|
onClick={handleRewriteClick}
|
|
|
|
|
|
className="bg-blue-500 text-white py-2 px-4 rounded"
|
|
|
|
|
|
>
|
|
|
|
|
|
Content Rewrite
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
{showRewriteEditor && (
|
|
|
|
|
|
<div>
|
|
|
|
|
|
{isGeneratedArticle && (
|
|
|
|
|
|
<div className="mt-3 pb-0 flex flex-row ">
|
|
|
|
|
|
{articleIds.map((id: string, index: number) => (
|
|
|
|
|
|
<Button
|
|
|
|
|
|
type="button"
|
|
|
|
|
|
key={index}
|
|
|
|
|
|
className={`mr-3 px-3 py-2 rounded-md ${
|
|
|
|
|
|
selectedArticleId === id
|
|
|
|
|
|
? "bg-green-500 text-white"
|
|
|
|
|
|
: "border-2 border-green-500 bg-white text-green-500 hover:bg-green-500 hover:text-white hover:border-green-500"
|
|
|
|
|
|
}`}
|
|
|
|
|
|
onClick={() => handleArticleIdClick(id)}
|
|
|
|
|
|
>
|
|
|
|
|
|
{"Narasi " + (index + 1)}
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
))}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)}
|
|
|
|
|
|
<div className="flex items-center space-x-2 mt-3">
|
|
|
|
|
|
<RadioGroupItem value="rewrite" id="rewrite-file" />
|
|
|
|
|
|
<Label htmlFor="rewrite-file">
|
|
|
|
|
|
Select Description Rewrite
|
|
|
|
|
|
</Label>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div className="py-3 space-y-2">
|
2025-07-12 11:52:36 +00:00
|
|
|
|
<Label>
|
|
|
|
|
|
{t("file-rewrite", {
|
|
|
|
|
|
defaultValue: "File Rewrite",
|
|
|
|
|
|
})}
|
|
|
|
|
|
</Label>
|
2025-06-18 06:19:30 +00:00
|
|
|
|
<Controller
|
|
|
|
|
|
control={control}
|
|
|
|
|
|
name="rewriteDescription"
|
|
|
|
|
|
render={({ field: { onChange, value } }) =>
|
|
|
|
|
|
isLoadingData ? (
|
|
|
|
|
|
<div className="flex justify-center items-center h-40">
|
|
|
|
|
|
<p className="text-gray-500">
|
|
|
|
|
|
Loading Proses Data...
|
|
|
|
|
|
</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
) : (
|
|
|
|
|
|
<CustomEditor
|
|
|
|
|
|
onChange={(value: any) => {
|
|
|
|
|
|
onChange(value);
|
|
|
|
|
|
setRewriteEditorContent(value);
|
|
|
|
|
|
}}
|
|
|
|
|
|
initialData={articleBody || value}
|
|
|
|
|
|
/>
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
/>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</RadioGroup>
|
|
|
|
|
|
</>
|
|
|
|
|
|
)}
|
2025-07-12 11:52:36 +00:00
|
|
|
|
<Controller
|
|
|
|
|
|
control={control}
|
|
|
|
|
|
name="files"
|
|
|
|
|
|
render={({ field }) => (
|
|
|
|
|
|
<div className="py-3 space-y-2">
|
|
|
|
|
|
<Label>
|
|
|
|
|
|
{t("select-file", { defaultValue: "Select File" })}
|
|
|
|
|
|
</Label>
|
|
|
|
|
|
<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">
|
|
|
|
|
|
{t("drag-file", { defaultValue: "Drag File" })}
|
|
|
|
|
|
</h4>
|
|
|
|
|
|
<div className="text-xs text-muted-foreground">
|
|
|
|
|
|
{t("upload-file-video-max", {
|
|
|
|
|
|
defaultValue: "Upload File Video Max",
|
|
|
|
|
|
})}
|
|
|
|
|
|
</div>
|
2025-01-03 19:35:50 +00:00
|
|
|
|
</div>
|
2024-12-04 17:28:40 +00:00
|
|
|
|
</div>
|
2025-07-12 11:52:36 +00:00
|
|
|
|
|
|
|
|
|
|
{files.length > 0 && (
|
|
|
|
|
|
<div className="mt-2 space-y-1">
|
|
|
|
|
|
{files.map((file, idx) => (
|
|
|
|
|
|
<div
|
|
|
|
|
|
key={idx}
|
|
|
|
|
|
className="flex items-center justify-between rounded border border-default-200 dark:border-default-300 px-2 py-1 text-sm"
|
|
|
|
|
|
>
|
|
|
|
|
|
<span className="truncate">{file.name}</span>
|
|
|
|
|
|
<span className="text-muted-foreground">
|
|
|
|
|
|
{(file.size / (1024 * 1024)).toFixed(2)} MB
|
|
|
|
|
|
</span>
|
2025-01-03 19:35:50 +00:00
|
|
|
|
</div>
|
2025-07-12 11:52:36 +00:00
|
|
|
|
))}
|
|
|
|
|
|
<div className="flex justify-between gap-2 mt-1">
|
|
|
|
|
|
<Button
|
|
|
|
|
|
color="destructive"
|
|
|
|
|
|
onClick={handleRemoveAllFiles}
|
|
|
|
|
|
>
|
|
|
|
|
|
{t("remove-all", { defaultValue: "Remove All" })}
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
</div>
|
2025-01-03 19:35:50 +00:00
|
|
|
|
</div>
|
2025-07-12 11:52:36 +00:00
|
|
|
|
)}
|
2024-12-04 17:28:40 +00:00
|
|
|
|
|
2025-07-12 11:52:36 +00:00
|
|
|
|
{errors.files && (
|
|
|
|
|
|
<p className="text-red-500 text-sm">
|
|
|
|
|
|
{errors.files.message}
|
|
|
|
|
|
</p>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)}
|
|
|
|
|
|
/>
|
|
|
|
|
|
</div>
|
2024-12-04 17:28:40 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
</Card>
|
2025-07-12 11:52:36 +00:00
|
|
|
|
|
2025-01-31 14:16:41 +00:00
|
|
|
|
<div className="w-full lg:w-4/12">
|
2025-07-12 11:52:36 +00:00
|
|
|
|
<Card className="h-fit">
|
2024-12-04 17:28:40 +00:00
|
|
|
|
<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>
|
2024-12-04 17:28:40 +00:00
|
|
|
|
<Controller
|
|
|
|
|
|
control={control}
|
2024-12-09 13:17:22 +00:00
|
|
|
|
name="creatorName"
|
2024-12-04 17:28:40 +00:00
|
|
|
|
render={({ field }) => (
|
|
|
|
|
|
<Input
|
|
|
|
|
|
size="md"
|
|
|
|
|
|
type="text"
|
|
|
|
|
|
value={field.value}
|
|
|
|
|
|
onChange={field.onChange}
|
|
|
|
|
|
placeholder="Enter Title"
|
|
|
|
|
|
/>
|
|
|
|
|
|
)}
|
|
|
|
|
|
/>
|
2024-12-09 13:17:22 +00:00
|
|
|
|
{errors.creatorName?.message && (
|
2024-12-04 17:28:40 +00:00
|
|
|
|
<p className="text-red-400 text-sm">
|
2024-12-09 13:17:22 +00:00
|
|
|
|
{errors.creatorName.message}
|
2024-12-04 17:28:40 +00:00
|
|
|
|
</p>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2025-06-13 08:21:08 +00:00
|
|
|
|
<div className="px-3 py-3">
|
2025-01-03 19:35:50 +00:00
|
|
|
|
<Label htmlFor="fileInput">Gambar Utama</Label>
|
|
|
|
|
|
<Input id="fileInput" type="file" onChange={handleImageChange} />
|
2025-06-13 08:21:08 +00:00
|
|
|
|
</div>
|
2025-01-03 19:35:50 +00:00
|
|
|
|
{preview && (
|
|
|
|
|
|
<div className="mt-3 px-3">
|
|
|
|
|
|
<img
|
|
|
|
|
|
src={preview}
|
|
|
|
|
|
alt="Thumbnail Preview"
|
|
|
|
|
|
className="w-full h-auto rounded"
|
|
|
|
|
|
/>
|
2024-12-04 17:28:40 +00:00
|
|
|
|
</div>
|
2025-01-03 19:35:50 +00:00
|
|
|
|
)}
|
2025-03-26 18:58:30 +00:00
|
|
|
|
<div className="px-3 py-3 space-y-2">
|
2025-07-12 11:52:36 +00:00
|
|
|
|
<Label htmlFor="tags">
|
|
|
|
|
|
{t("tags", { defaultValue: "Tags" })}
|
|
|
|
|
|
</Label>
|
|
|
|
|
|
|
|
|
|
|
|
<Controller
|
|
|
|
|
|
control={control}
|
|
|
|
|
|
name="tags"
|
|
|
|
|
|
render={({ field }) => (
|
|
|
|
|
|
<>
|
|
|
|
|
|
<Input
|
|
|
|
|
|
type="text"
|
|
|
|
|
|
id="tags"
|
|
|
|
|
|
placeholder="Add a tag and press Enter"
|
|
|
|
|
|
onKeyDown={(e) => {
|
|
|
|
|
|
if (e.key === "Enter" && e.currentTarget.value.trim()) {
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
field.onChange([
|
2025-12-02 00:27:23 +00:00
|
|
|
|
...(field.value ?? []),
|
2025-07-12 11:52:36 +00:00
|
|
|
|
e.currentTarget.value.trim(),
|
|
|
|
|
|
]);
|
|
|
|
|
|
e.currentTarget.value = "";
|
|
|
|
|
|
}
|
|
|
|
|
|
}}
|
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
|
|
<div className="mt-3">
|
2025-12-02 00:27:23 +00:00
|
|
|
|
{(field.value ?? []).map((tag: string, index: number) => (
|
2025-07-12 11:52:36 +00:00
|
|
|
|
<span
|
|
|
|
|
|
key={index}
|
|
|
|
|
|
className="px-1 py-1 rounded-lg bg-black text-white mr-2 text-sm font-sans"
|
|
|
|
|
|
>
|
|
|
|
|
|
{tag}{" "}
|
|
|
|
|
|
<button
|
|
|
|
|
|
type="button"
|
|
|
|
|
|
onClick={() => {
|
2025-12-02 00:27:23 +00:00
|
|
|
|
const updatedTags = (field.value ?? []).filter(
|
2025-07-12 11:52:36 +00:00
|
|
|
|
(_, i) => i !== index
|
|
|
|
|
|
);
|
|
|
|
|
|
field.onChange(updatedTags);
|
|
|
|
|
|
}}
|
|
|
|
|
|
className="remove-tag-button"
|
|
|
|
|
|
>
|
|
|
|
|
|
×
|
|
|
|
|
|
</button>
|
|
|
|
|
|
</span>
|
|
|
|
|
|
))}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</>
|
|
|
|
|
|
)}
|
2025-01-03 19:35:50 +00:00
|
|
|
|
/>
|
2025-07-12 11:52:36 +00:00
|
|
|
|
|
|
|
|
|
|
{/* Tampilkan error */}
|
|
|
|
|
|
{errors.tags?.message && (
|
|
|
|
|
|
<p className="text-red-400 text-sm">{errors.tags.message}</p>
|
|
|
|
|
|
)}
|
2024-12-04 17:28:40 +00:00
|
|
|
|
</div>
|
2025-07-18 18:06:24 +00:00
|
|
|
|
<Controller
|
|
|
|
|
|
control={control}
|
|
|
|
|
|
name="publishedFor"
|
|
|
|
|
|
render={({ field }) => (
|
|
|
|
|
|
<div className="px-3 py-3">
|
|
|
|
|
|
<div className="flex flex-col gap-3 space-y-2">
|
|
|
|
|
|
<Label>
|
|
|
|
|
|
{t("publish-target", { defaultValue: "Publish Target" })}
|
|
|
|
|
|
</Label>
|
|
|
|
|
|
|
|
|
|
|
|
{options.map((option) => {
|
|
|
|
|
|
const isAllChecked =
|
2025-12-02 00:27:23 +00:00
|
|
|
|
(field.value?.length ?? 0) ===
|
2025-07-18 18:06:24 +00:00
|
|
|
|
options.filter((opt: any) => opt.id !== "all").length;
|
|
|
|
|
|
|
|
|
|
|
|
const isChecked =
|
2025-01-07 10:30:51 +00:00
|
|
|
|
option.id === "all"
|
2025-07-18 18:06:24 +00:00
|
|
|
|
? isAllChecked
|
2025-12-02 00:27:23 +00:00
|
|
|
|
: field.value?.includes(option.id) ?? false;
|
2025-07-18 18:06:24 +00:00
|
|
|
|
|
|
|
|
|
|
const handleChange = () => {
|
|
|
|
|
|
let updated: string[] = [];
|
|
|
|
|
|
|
|
|
|
|
|
if (option.id === "all") {
|
|
|
|
|
|
updated = isAllChecked
|
|
|
|
|
|
? []
|
|
|
|
|
|
: options
|
|
|
|
|
|
.filter((opt: any) => opt.id !== "all")
|
|
|
|
|
|
.map((opt: any) => opt.id);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
updated = isChecked
|
2025-12-02 00:27:23 +00:00
|
|
|
|
? (field.value ?? []).filter((val) => val !== option.id)
|
|
|
|
|
|
: [...(field.value ?? []), option.id];
|
2025-07-18 18:06:24 +00:00
|
|
|
|
|
|
|
|
|
|
if (isAllChecked && option.id !== "all") {
|
|
|
|
|
|
updated = updated.filter((val) => val !== "all");
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
field.onChange(updated);
|
|
|
|
|
|
setPublishedFor(updated);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
|
<div
|
|
|
|
|
|
key={option.id}
|
|
|
|
|
|
className="flex gap-2 items-center"
|
|
|
|
|
|
>
|
|
|
|
|
|
<Checkbox
|
|
|
|
|
|
id={option.id}
|
|
|
|
|
|
checked={isChecked}
|
|
|
|
|
|
onCheckedChange={handleChange}
|
|
|
|
|
|
/>
|
|
|
|
|
|
<Label htmlFor={option.id}>{option.label}</Label>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
);
|
|
|
|
|
|
})}
|
|
|
|
|
|
|
|
|
|
|
|
{errors.publishedFor && (
|
|
|
|
|
|
<p className="text-red-500 text-sm">
|
|
|
|
|
|
{errors.publishedFor.message}
|
|
|
|
|
|
</p>
|
|
|
|
|
|
)}
|
2025-01-07 10:30:51 +00:00
|
|
|
|
</div>
|
2025-07-18 18:06:24 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
)}
|
|
|
|
|
|
/>
|
2024-12-04 17:28:40 +00:00
|
|
|
|
</Card>
|
|
|
|
|
|
<div className="flex flex-row justify-end gap-3">
|
|
|
|
|
|
<div className="mt-4">
|
2025-09-09 15:33:29 +00:00
|
|
|
|
{/* <Button type="submit" color="primary">
|
2025-07-06 09:23:45 +00:00
|
|
|
|
{t("submit", { defaultValue: "Submit" })}
|
2025-09-09 15:33:29 +00:00
|
|
|
|
</Button> */}
|
|
|
|
|
|
{levelNumber !== "2" && levelNumber !== "3" && (
|
|
|
|
|
|
<Button type="submit" color="primary">
|
|
|
|
|
|
{t("submit", { defaultValue: "Submit" })}
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
)}
|
2024-12-04 17:28:40 +00:00
|
|
|
|
</div>
|
2025-10-16 02:30:50 +00:00
|
|
|
|
<div className="mt-4">
|
|
|
|
|
|
<Button type="submit" color="primary" variant="outline">
|
|
|
|
|
|
{t("cancel", { defaultValue: "Cancel" })}
|
|
|
|
|
|
</Button>
|
2024-12-04 17:28:40 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</form>
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|