2025-04-29 17:16:33 +00:00
|
|
|
|
"use client";
|
|
|
|
|
|
import React, {
|
|
|
|
|
|
ChangeEvent,
|
|
|
|
|
|
useEffect,
|
|
|
|
|
|
useRef,
|
|
|
|
|
|
Fragment,
|
|
|
|
|
|
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 { Upload } from "tus-js-client";
|
|
|
|
|
|
import Swal from "sweetalert2";
|
|
|
|
|
|
import withReactContent from "sweetalert2-react-content";
|
2025-05-01 07:19:35 +00:00
|
|
|
|
import { redirect, useParams, useRouter } from "next/navigation";
|
2025-04-29 17:16:33 +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";
|
2025-07-04 19:42:42 +00:00
|
|
|
|
|
2025-04-29 17:16:33 +00:00
|
|
|
|
import { register } from "module";
|
|
|
|
|
|
import { Switch } from "@/components/ui/switch";
|
|
|
|
|
|
import Cookies from "js-cookie";
|
|
|
|
|
|
import {
|
|
|
|
|
|
createMedia,
|
|
|
|
|
|
getTagsBySubCategoryId,
|
|
|
|
|
|
listEnableCategory,
|
|
|
|
|
|
uploadThumbnail,
|
|
|
|
|
|
} from "@/service/content/content";
|
|
|
|
|
|
import { uploadThumbnailBlog } from "@/service/blog/blog";
|
|
|
|
|
|
import { Textarea } from "@/components/ui/textarea";
|
|
|
|
|
|
import {
|
|
|
|
|
|
generateDataArticle,
|
|
|
|
|
|
getDetailArticle,
|
|
|
|
|
|
getGenerateKeywords,
|
|
|
|
|
|
getGenerateTitle,
|
|
|
|
|
|
} from "@/service/content/ai";
|
|
|
|
|
|
import { getCookiesDecrypt } from "@/lib/utils";
|
|
|
|
|
|
import { useDropzone } from "react-dropzone";
|
|
|
|
|
|
import { Icon } from "@iconify/react";
|
2025-05-01 07:19:35 +00:00
|
|
|
|
import { CloudUpload, Trash2 } from "lucide-react";
|
2025-04-29 17:16:33 +00:00
|
|
|
|
import Image from "next/image";
|
|
|
|
|
|
import { error, loading } from "@/config/swal";
|
|
|
|
|
|
import { Item } from "@radix-ui/react-dropdown-menu";
|
|
|
|
|
|
import { data } from "jquery";
|
|
|
|
|
|
import { options } from "@fullcalendar/core/preact.js";
|
|
|
|
|
|
import dynamic from "next/dynamic";
|
|
|
|
|
|
import { getCsrfToken } from "@/service/auth";
|
|
|
|
|
|
import { Link } from "@/i18n/routing";
|
|
|
|
|
|
import { request } from "http";
|
|
|
|
|
|
import { useTranslations } from "next-intl";
|
2025-05-01 07:19:35 +00:00
|
|
|
|
import FileUploader from "../shared/file-uploader";
|
|
|
|
|
|
import { AudioRecorder } from "react-audio-voice-recorder";
|
|
|
|
|
|
import { getTaskTa } from "@/service/task";
|
|
|
|
|
|
import { taskDetail } from "./task-ta-form";
|
2025-04-29 17:16:33 +00:00
|
|
|
|
|
|
|
|
|
|
interface FileWithPreview extends File {
|
|
|
|
|
|
preview: string;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type Category = {
|
|
|
|
|
|
id: string;
|
|
|
|
|
|
name: string;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
type Option = {
|
|
|
|
|
|
id: string;
|
|
|
|
|
|
label: string;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const CustomEditor = dynamic(
|
|
|
|
|
|
() => {
|
|
|
|
|
|
return import("@/components/editor/custom-editor");
|
|
|
|
|
|
},
|
|
|
|
|
|
{ ssr: false }
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
export default function FormTaskTaNew() {
|
|
|
|
|
|
const MySwal = withReactContent(Swal);
|
|
|
|
|
|
const router = useRouter();
|
|
|
|
|
|
type ImageSchema = z.infer<typeof imageSchema>;
|
|
|
|
|
|
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 roleId = getCookiesDecrypt("urie");
|
2025-05-01 07:19:35 +00:00
|
|
|
|
const { id } = useParams() as { id: string };
|
2025-04-29 17:16:33 +00:00
|
|
|
|
const [categories, setCategories] = useState<Category[]>([]);
|
|
|
|
|
|
const [selectedCategory, setSelectedCategory] = useState<any>();
|
|
|
|
|
|
const [tags, setTags] = useState<any[]>([]);
|
|
|
|
|
|
const [thumbnail, setThumbnail] = useState<File | null>(null);
|
|
|
|
|
|
const [preview, setPreview] = useState<string | null>(null);
|
|
|
|
|
|
const [title, setTitle] = useState<string>("");
|
|
|
|
|
|
const [isLoadingData, setIsLoadingData] = useState<boolean>(false);
|
|
|
|
|
|
const [articleBody, setArticleBody] = useState<string>("");
|
|
|
|
|
|
const [isSwitchOn, setIsSwitchOn] = useState<boolean>(false);
|
|
|
|
|
|
const inputRef = useRef<HTMLInputElement>(null);
|
2025-05-01 07:19:35 +00:00
|
|
|
|
const [imageFiles, setImageFiles] = useState<FileWithPreview[]>([]);
|
|
|
|
|
|
const [videoFiles, setVideoFiles] = useState<FileWithPreview[]>([]);
|
|
|
|
|
|
const [textFiles, setTextFiles] = useState<FileWithPreview[]>([]);
|
|
|
|
|
|
const [audioFiles, setAudioFiles] = useState<FileWithPreview[]>([]);
|
|
|
|
|
|
const [isImageUploadFinish, setIsImageUploadFinish] = useState(false);
|
|
|
|
|
|
const [isVideoUploadFinish, setIsVideoUploadFinish] = useState(false);
|
|
|
|
|
|
const [isTextUploadFinish, setIsTextUploadFinish] = useState(false);
|
|
|
|
|
|
const [isAudioUploadFinish, setIsAudioUploadFinish] = useState(false);
|
|
|
|
|
|
const [audioFile, setAudioFile] = useState<File | null>(null);
|
|
|
|
|
|
const [isRecording, setIsRecording] = useState(false);
|
|
|
|
|
|
const [links, setLinks] = useState<string[]>([""]);
|
|
|
|
|
|
const [timer, setTimer] = useState<number>(120);
|
|
|
|
|
|
const [fileTypeId, setFileTypeId] = useState<string>("");
|
2025-04-29 17:16:33 +00:00
|
|
|
|
const [files, setFiles] = useState<FileWithPreview[]>([]);
|
|
|
|
|
|
const [publishedFor, setPublishedFor] = useState<string[]>([]);
|
2025-05-01 07:19:35 +00:00
|
|
|
|
const [detail, setDetail] = useState<taskDetail>();
|
|
|
|
|
|
const [refresh] = useState(false);
|
2025-04-29 17:16:33 +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" },
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
const { getRootProps, getInputProps } = useDropzone({
|
|
|
|
|
|
onDrop: (acceptedFiles) => {
|
|
|
|
|
|
setFiles(acceptedFiles.map((file) => Object.assign(file)));
|
|
|
|
|
|
},
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
const imageSchema = z.object({
|
2025-11-23 15:37:29 +00:00
|
|
|
|
title: z.string().optional(),
|
2025-04-29 17:16:33 +00:00
|
|
|
|
description: z
|
|
|
|
|
|
.string()
|
|
|
|
|
|
.min(2, { message: "Narasi Penugasan harus lebih dari 2 karakter." })
|
|
|
|
|
|
.or(
|
|
|
|
|
|
z.literal(articleBody || "").refine((val) => val.length > 0, {
|
|
|
|
|
|
message: "Deskripsi diperlukan.",
|
|
|
|
|
|
})
|
|
|
|
|
|
),
|
2025-06-11 06:08:44 +00:00
|
|
|
|
// creatorName: z.string().min(1, { message: "Creator diperlukan" }),
|
2025-04-29 17:16:33 +00:00
|
|
|
|
// tags: z.string().min(1, { message: "Judul diperlukan" }),
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
const {
|
|
|
|
|
|
control,
|
|
|
|
|
|
handleSubmit,
|
|
|
|
|
|
getValues,
|
|
|
|
|
|
setValue,
|
|
|
|
|
|
formState: { errors },
|
|
|
|
|
|
} = useForm<ImageSchema>({
|
|
|
|
|
|
resolver: zodResolver(imageSchema),
|
|
|
|
|
|
});
|
|
|
|
|
|
|
2025-05-01 07:19:35 +00:00
|
|
|
|
const handleLinkChange = (index: number, value: string) => {
|
|
|
|
|
|
const updatedLinks = [...links];
|
|
|
|
|
|
updatedLinks[index] = value;
|
|
|
|
|
|
setLinks(updatedLinks);
|
2025-04-29 17:16:33 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
2025-05-01 07:19:35 +00:00
|
|
|
|
const handleAddRow = () => {
|
|
|
|
|
|
setLinks([...links, ""]);
|
2025-04-29 17:16:33 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
2025-05-01 07:19:35 +00:00
|
|
|
|
// Remove a specific link row
|
|
|
|
|
|
const handleRemoveRow = (index: number) => {
|
|
|
|
|
|
const updatedLinks = links.filter((_: any, i: any) => i !== index);
|
|
|
|
|
|
setLinks(updatedLinks);
|
2025-04-29 17:16:33 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
2025-05-01 07:19:35 +00:00
|
|
|
|
const addAudioElement = (blob: Blob) => {
|
|
|
|
|
|
const url = URL.createObjectURL(blob);
|
|
|
|
|
|
const audio = document.createElement("audio");
|
|
|
|
|
|
audio.src = url;
|
|
|
|
|
|
audio.controls = true;
|
|
|
|
|
|
document.body.appendChild(audio);
|
|
|
|
|
|
|
|
|
|
|
|
// Convert Blob to File and add preview
|
|
|
|
|
|
const fileWithPreview: FileWithPreview = Object.assign(
|
|
|
|
|
|
new File([blob], "voiceNote.webm", { type: "audio/webm" }),
|
|
|
|
|
|
{ preview: url }
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
// Add to state
|
|
|
|
|
|
setAudioFile(fileWithPreview);
|
|
|
|
|
|
setAudioFiles((prev) => [...prev, fileWithPreview]);
|
2025-04-29 17:16:33 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
2025-05-01 07:19:35 +00:00
|
|
|
|
const handleDeleteAudio = (index: number) => {
|
|
|
|
|
|
setAudioFiles((prev) => prev.filter((_, idx) => idx !== index));
|
2025-04-29 17:16:33 +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)) {
|
|
|
|
|
|
setTags((prevTags) => [...prevTags, newTag]); // Add new tag
|
|
|
|
|
|
if (inputRef.current) {
|
|
|
|
|
|
inputRef.current.value = ""; // Clear input field
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const handleRemoveTag = (index: number) => {
|
|
|
|
|
|
setTags((prevTags) => prevTags.filter((_, i) => i !== index)); // Remove tag
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const handleRemoveImage = (index: number) => {
|
|
|
|
|
|
setSelectedFiles((prevImages) => prevImages.filter((_, i) => i !== index));
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
|
async function initState() {
|
|
|
|
|
|
getCategories();
|
|
|
|
|
|
// setVideoActive(fileTypeId == '2');
|
|
|
|
|
|
// getRoles();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
initState();
|
|
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const handleCheckboxChange = (id: string): void => {
|
|
|
|
|
|
if (id === "all") {
|
|
|
|
|
|
if (publishedFor.includes("all")) {
|
|
|
|
|
|
// Uncheck all checkboxes
|
|
|
|
|
|
setPublishedFor([]);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
// Select all checkboxes
|
|
|
|
|
|
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];
|
|
|
|
|
|
|
|
|
|
|
|
// Remove "all" if any checkbox is unchecked
|
|
|
|
|
|
if (publishedFor.includes("all") && id !== "all") {
|
|
|
|
|
|
setPublishedFor(updatedPublishedFor.filter((item) => item !== "all"));
|
|
|
|
|
|
} else {
|
|
|
|
|
|
setPublishedFor(updatedPublishedFor);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2025-05-01 07:19:35 +00:00
|
|
|
|
useEffect(() => {
|
|
|
|
|
|
async function initState() {
|
|
|
|
|
|
if (id) {
|
|
|
|
|
|
const response = await getTaskTa(id);
|
|
|
|
|
|
const details = response?.data?.data;
|
|
|
|
|
|
|
|
|
|
|
|
setDetail(details);
|
|
|
|
|
|
|
|
|
|
|
|
// Add more state setting here based on other fields like broadcastType, taskOutput, etc.
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
initState();
|
|
|
|
|
|
}, [id, refresh]);
|
|
|
|
|
|
|
2025-04-29 17:16:33 +00:00
|
|
|
|
const save = async (data: ImageSchema) => {
|
|
|
|
|
|
loading();
|
|
|
|
|
|
const finalTags = tags.join(", ");
|
2025-11-23 15:37:29 +00:00
|
|
|
|
const finalTitle = data.title || detail?.title || "";
|
2025-04-29 17:16:33 +00:00
|
|
|
|
const finalDescription = articleBody || data.description;
|
|
|
|
|
|
|
|
|
|
|
|
if (!finalDescription.trim()) {
|
|
|
|
|
|
MySwal.fire("Error", "Deskripsi tidak boleh kosong.", "error");
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
let requestData: {
|
2025-05-01 07:19:35 +00:00
|
|
|
|
assignmentExpertId: any;
|
2025-04-29 17:16:33 +00:00
|
|
|
|
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;
|
|
|
|
|
|
attachFromScheduleId?: number; // ✅ Tambahkan properti ini
|
|
|
|
|
|
} = {
|
|
|
|
|
|
...data,
|
2025-05-01 07:19:35 +00:00
|
|
|
|
assignmentExpertId: detail?.id || null,
|
2025-04-29 17:16:33 +00:00
|
|
|
|
title: finalTitle,
|
|
|
|
|
|
description: finalDescription,
|
|
|
|
|
|
htmlDescription: finalDescription,
|
2025-05-01 07:19:35 +00:00
|
|
|
|
fileTypeId: fileTypeId,
|
2025-06-11 06:08:44 +00:00
|
|
|
|
categoryId: "235",
|
2025-12-02 03:38:33 +00:00
|
|
|
|
subCategoryId: "171",
|
2025-04-29 17:16:33 +00:00
|
|
|
|
uploadedBy: "2b7c8d83-d298-4b19-9f74-b07924506b58",
|
|
|
|
|
|
statusId: "1",
|
2025-12-02 03:38:33 +00:00
|
|
|
|
publishedFor: "7",
|
2025-06-11 06:08:44 +00:00
|
|
|
|
creatorName: "Penugasan-Ta",
|
|
|
|
|
|
tags: "penugasan-Ta",
|
2025-04-29 17:16:33 +00:00
|
|
|
|
isYoutube: false,
|
|
|
|
|
|
isInternationalMedia: false,
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
let id = Cookies.get("idCreate");
|
|
|
|
|
|
|
|
|
|
|
|
if (scheduleId !== undefined) {
|
|
|
|
|
|
requestData.attachFromScheduleId = Number(scheduleId); // ✅ Tambahkan nilai ini
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (id == undefined) {
|
|
|
|
|
|
const response = await createMedia(requestData);
|
|
|
|
|
|
console.log("Form Data Submitted:", requestData);
|
|
|
|
|
|
|
|
|
|
|
|
Cookies.set("idCreate", response?.data?.data, { expires: 1 });
|
|
|
|
|
|
id = response?.data?.data;
|
|
|
|
|
|
|
|
|
|
|
|
// Upload Thumbnail
|
2025-05-01 07:19:35 +00:00
|
|
|
|
loading();
|
|
|
|
|
|
if (imageFiles?.length == 0) {
|
|
|
|
|
|
setIsImageUploadFinish(true);
|
2025-04-29 17:16:33 +00:00
|
|
|
|
}
|
2025-05-01 07:19:35 +00:00
|
|
|
|
imageFiles?.map(async (item: any, index: number) => {
|
|
|
|
|
|
await uploadResumableFile(index, String(id), item, "1", "0");
|
|
|
|
|
|
});
|
2025-04-29 17:16:33 +00:00
|
|
|
|
|
2025-05-01 07:19:35 +00:00
|
|
|
|
if (videoFiles?.length == 0) {
|
|
|
|
|
|
setIsVideoUploadFinish(true);
|
|
|
|
|
|
}
|
|
|
|
|
|
videoFiles?.map(async (item: any, index: number) => {
|
|
|
|
|
|
await uploadResumableFile(index, String(id), item, "2", "0");
|
|
|
|
|
|
});
|
2025-04-29 17:16:33 +00:00
|
|
|
|
|
2025-05-01 07:19:35 +00:00
|
|
|
|
if (textFiles?.length == 0) {
|
|
|
|
|
|
setIsTextUploadFinish(true);
|
|
|
|
|
|
}
|
|
|
|
|
|
textFiles?.map(async (item: any, index: number) => {
|
|
|
|
|
|
await uploadResumableFile(index, String(id), item, "3", "0");
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
if (audioFiles?.length == 0) {
|
|
|
|
|
|
setIsAudioUploadFinish(true);
|
|
|
|
|
|
}
|
|
|
|
|
|
audioFiles.map(async (item: FileWithPreview, index: number) => {
|
|
|
|
|
|
await uploadResumableFile(
|
|
|
|
|
|
index,
|
|
|
|
|
|
String(id),
|
|
|
|
|
|
item, // Use .file to access the actual File object
|
|
|
|
|
|
"4",
|
|
|
|
|
|
"0" // Optional: Replace with actual duration if available
|
|
|
|
|
|
);
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
2025-04-29 17:16:33 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
async function uploadResumableFile(
|
|
|
|
|
|
idx: number,
|
|
|
|
|
|
id: string,
|
|
|
|
|
|
file: any,
|
2025-05-01 07:19:35 +00:00
|
|
|
|
fileTypeId: string,
|
2025-04-29 17:16:33 +00:00
|
|
|
|
duration: string
|
|
|
|
|
|
) {
|
2025-05-01 07:19:35 +00:00
|
|
|
|
console.log(idx, id, file, fileTypeId, duration);
|
2025-04-29 17:16:33 +00:00
|
|
|
|
|
|
|
|
|
|
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,
|
2025-05-01 07:19:35 +00:00
|
|
|
|
contentType: file.type,
|
|
|
|
|
|
fileTypeId: fileTypeId,
|
2025-04-29 17:16:33 +00:00
|
|
|
|
duration,
|
2025-05-01 07:19:35 +00:00
|
|
|
|
isWatermark: "true",
|
2025-04-29 17:16:33 +00:00
|
|
|
|
},
|
|
|
|
|
|
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
|
|
|
|
|
|
) => {
|
2025-05-01 07:19:35 +00:00
|
|
|
|
// const uploadPersen = Math.floor((bytesAccepted / bytesTotal) * 100);
|
|
|
|
|
|
// progressInfo[idx].percentage = uploadPersen;
|
|
|
|
|
|
// counterUpdateProgress++;
|
|
|
|
|
|
// console.log(counterUpdateProgress);
|
|
|
|
|
|
// setProgressList(progressInfo);
|
|
|
|
|
|
// setCounterProgress(counterUpdateProgress);
|
2025-04-29 17:16:33 +00:00
|
|
|
|
},
|
|
|
|
|
|
onSuccess: async () => {
|
2025-05-01 07:19:35 +00:00
|
|
|
|
// uploadPersen = 100;
|
|
|
|
|
|
// progressInfo[idx].percentage = 100;
|
|
|
|
|
|
// counterUpdateProgress++;
|
|
|
|
|
|
// setCounterProgress(counterUpdateProgress);
|
2025-04-29 17:16:33 +00:00
|
|
|
|
successTodo();
|
2025-05-01 07:19:35 +00:00
|
|
|
|
if (fileTypeId == "1") {
|
|
|
|
|
|
setIsImageUploadFinish(true);
|
|
|
|
|
|
} else if (fileTypeId == "2") {
|
|
|
|
|
|
setIsVideoUploadFinish(true);
|
|
|
|
|
|
}
|
|
|
|
|
|
if (fileTypeId == "3") {
|
|
|
|
|
|
setIsTextUploadFinish(true);
|
|
|
|
|
|
}
|
|
|
|
|
|
if (fileTypeId == "4") {
|
|
|
|
|
|
setIsAudioUploadFinish(true);
|
|
|
|
|
|
}
|
2025-04-29 17:16:33 +00:00
|
|
|
|
},
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
upload.start();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-05-01 07:19:35 +00:00
|
|
|
|
useEffect(() => {
|
|
|
|
|
|
successTodo();
|
|
|
|
|
|
}, [
|
|
|
|
|
|
isImageUploadFinish,
|
|
|
|
|
|
isVideoUploadFinish,
|
|
|
|
|
|
isAudioUploadFinish,
|
|
|
|
|
|
isTextUploadFinish,
|
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
|
|
function successTodo() {
|
|
|
|
|
|
if (
|
|
|
|
|
|
isImageUploadFinish &&
|
|
|
|
|
|
isVideoUploadFinish &&
|
|
|
|
|
|
isAudioUploadFinish &&
|
|
|
|
|
|
isTextUploadFinish
|
|
|
|
|
|
) {
|
|
|
|
|
|
successSubmit("/in/contributor/task-ta");
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-04-29 17:16:33 +00:00
|
|
|
|
const successSubmit = (redirect: string) => {
|
|
|
|
|
|
MySwal.fire({
|
|
|
|
|
|
title: "Sukses",
|
|
|
|
|
|
text: "Data berhasil disimpan.",
|
|
|
|
|
|
icon: "success",
|
|
|
|
|
|
confirmButtonColor: "#3085d6",
|
|
|
|
|
|
confirmButtonText: "OK",
|
|
|
|
|
|
}).then(() => {
|
|
|
|
|
|
router.push(redirect);
|
|
|
|
|
|
});
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2025-05-01 07:19:35 +00:00
|
|
|
|
// 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/");
|
|
|
|
|
|
// }
|
|
|
|
|
|
// }
|
2025-04-29 17:16:33 +00:00
|
|
|
|
|
|
|
|
|
|
const handleImageChange = (e: React.ChangeEvent<HTMLInputElement>) => {
|
|
|
|
|
|
const file = e.target.files?.[0];
|
|
|
|
|
|
if (file) {
|
|
|
|
|
|
setThumbnail(file);
|
|
|
|
|
|
console.log("Selected Thumbnail:", file);
|
|
|
|
|
|
}
|
|
|
|
|
|
if (file) {
|
|
|
|
|
|
setPreview(URL.createObjectURL(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"
|
|
|
|
|
|
>
|
|
|
|
|
|
<div className="flex gap-3 items-center">
|
|
|
|
|
|
<div className="file-preview">{renderFilePreview(file)}</div>
|
|
|
|
|
|
<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([]);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
|
// Jika input title kosong, isi dengan hasil generate title
|
|
|
|
|
|
if (!getValues("title") && title) {
|
|
|
|
|
|
setValue("title", title);
|
|
|
|
|
|
}
|
|
|
|
|
|
}, [title, getValues, setValue]);
|
|
|
|
|
|
|
|
|
|
|
|
return (
|
2025-05-01 07:19:35 +00:00
|
|
|
|
<div>
|
|
|
|
|
|
{detail !== undefined ? (
|
|
|
|
|
|
<form onSubmit={handleSubmit(onSubmit)}>
|
|
|
|
|
|
<div className="flex flex-col lg:flex-row gap-10">
|
2025-06-11 06:08:44 +00:00
|
|
|
|
<Card className="w-full lg:w-full">
|
2025-05-01 07:19:35 +00:00
|
|
|
|
<div className="px-6 py-6">
|
|
|
|
|
|
<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-05-01 07:19:35 +00:00
|
|
|
|
<Controller
|
|
|
|
|
|
control={control}
|
|
|
|
|
|
name="title"
|
|
|
|
|
|
render={({ field }) => (
|
|
|
|
|
|
<Input
|
|
|
|
|
|
size="md"
|
|
|
|
|
|
type="text"
|
|
|
|
|
|
defaultValue={detail?.title}
|
2025-11-23 15:37:29 +00:00
|
|
|
|
{...field}
|
2025-05-01 07:19:35 +00:00
|
|
|
|
/>
|
|
|
|
|
|
)}
|
2025-04-29 17:16:33 +00:00
|
|
|
|
/>
|
2025-05-01 07:19:35 +00:00
|
|
|
|
{errors.title?.message && (
|
|
|
|
|
|
<p className="text-red-400 text-sm">
|
|
|
|
|
|
{errors.title.message}
|
|
|
|
|
|
</p>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</div>
|
2025-04-29 17:16:33 +00:00
|
|
|
|
|
2025-05-01 07:19:35 +00:00
|
|
|
|
<div className="flex flex-col sm:flex-row lg:flex-row sm:items-center lg:items-center gap-3">
|
|
|
|
|
|
<div className=" space-y-2 w-3/12">
|
2025-11-23 15:37:29 +00:00
|
|
|
|
<Label>
|
|
|
|
|
|
{t("assigment-type", {
|
|
|
|
|
|
defaultValue: "Assigment Type",
|
|
|
|
|
|
})}
|
|
|
|
|
|
</Label>
|
2025-05-01 07:19:35 +00:00
|
|
|
|
<Select onValueChange={(val) => setFileTypeId(val)}>
|
|
|
|
|
|
<SelectTrigger size="md">
|
|
|
|
|
|
<SelectValue placeholder="Choose" />
|
|
|
|
|
|
</SelectTrigger>
|
|
|
|
|
|
<SelectContent>
|
|
|
|
|
|
<SelectItem value="2">Audio Visual</SelectItem>
|
|
|
|
|
|
<SelectItem value="4">Audio</SelectItem>
|
|
|
|
|
|
<SelectItem value="1">Image</SelectItem>
|
|
|
|
|
|
<SelectItem value="3">Teks</SelectItem>
|
|
|
|
|
|
</SelectContent>
|
|
|
|
|
|
</Select>
|
|
|
|
|
|
</div>
|
2025-04-29 17:16:33 +00:00
|
|
|
|
|
2025-06-11 06:08:44 +00:00
|
|
|
|
{/* <div className="py-3 space-y-2 w-9/12">
|
2025-07-06 09:23:45 +00:00
|
|
|
|
<Label>{t("category", { defaultValue: "Category" })}</Label>
|
2025-05-01 07:19:35 +00:00
|
|
|
|
<Select
|
|
|
|
|
|
value={selectedCategory} // Ensure selectedTarget is updated correctly
|
|
|
|
|
|
onValueChange={(id) => {
|
|
|
|
|
|
console.log("Selected Category ID:", id);
|
|
|
|
|
|
setSelectedCategory(id);
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
|
|
|
|
|
<SelectTrigger size="md">
|
|
|
|
|
|
<SelectValue placeholder="Pilih" />
|
|
|
|
|
|
</SelectTrigger>
|
|
|
|
|
|
<SelectContent>
|
|
|
|
|
|
{categories.map((category) => (
|
|
|
|
|
|
<SelectItem
|
|
|
|
|
|
key={category.id}
|
|
|
|
|
|
value={category.id.toString()}
|
|
|
|
|
|
>
|
|
|
|
|
|
{category.name}
|
|
|
|
|
|
</SelectItem>
|
|
|
|
|
|
))}
|
|
|
|
|
|
</SelectContent>
|
|
|
|
|
|
</Select>
|
2025-06-11 06:08:44 +00:00
|
|
|
|
</div> */}
|
2025-04-29 17:16:33 +00:00
|
|
|
|
</div>
|
2025-05-01 07:19:35 +00:00
|
|
|
|
|
|
|
|
|
|
<div className="py-3 space-y-2">
|
2025-11-23 15:37:29 +00:00
|
|
|
|
<Label>
|
|
|
|
|
|
{t("description", { defaultValue: "Description" })}
|
|
|
|
|
|
</Label>
|
2025-05-01 07:19:35 +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>
|
2025-04-29 17:16:33 +00:00
|
|
|
|
</div>
|
2025-05-01 07:19:35 +00:00
|
|
|
|
) : (
|
|
|
|
|
|
<CustomEditor
|
|
|
|
|
|
onChange={onChange}
|
|
|
|
|
|
initialData={articleBody || value}
|
|
|
|
|
|
/>
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
/>
|
|
|
|
|
|
{errors.description?.message && (
|
|
|
|
|
|
<p className="text-red-400 text-sm">
|
|
|
|
|
|
{errors.description.message}
|
|
|
|
|
|
</p>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div className="space-y-2.5 mt-5">
|
2025-11-23 15:37:29 +00:00
|
|
|
|
<Label htmlFor="attachments">
|
|
|
|
|
|
{t("attachment", { defaultValue: "Attachment" })}
|
|
|
|
|
|
</Label>
|
2025-05-01 07:19:35 +00:00
|
|
|
|
<div className="space-y-3">
|
|
|
|
|
|
{fileTypeId === "2" && (
|
|
|
|
|
|
<div>
|
2025-11-23 15:37:29 +00:00
|
|
|
|
<Label>
|
|
|
|
|
|
{t("audio-visual", {
|
|
|
|
|
|
defaultValue: "Audio Visual",
|
|
|
|
|
|
})}
|
|
|
|
|
|
</Label>
|
2025-05-01 07:19:35 +00:00
|
|
|
|
<FileUploader
|
2025-11-23 15:37:29 +00:00
|
|
|
|
accept={{
|
|
|
|
|
|
"video/*": [], // menerima mp4, mov, mkv, avi, dll (lebih aman)
|
|
|
|
|
|
}}
|
2025-05-01 07:19:35 +00:00
|
|
|
|
maxSize={100}
|
|
|
|
|
|
label="Upload file dengan format .mp4 atau .mov."
|
|
|
|
|
|
onDrop={(files) => setVideoFiles(files)}
|
|
|
|
|
|
/>
|
2025-04-29 17:16:33 +00:00
|
|
|
|
</div>
|
2025-05-01 07:19:35 +00:00
|
|
|
|
)}
|
|
|
|
|
|
|
|
|
|
|
|
{fileTypeId === "1" && (
|
|
|
|
|
|
<div className="space-y-2">
|
2025-07-06 09:23:45 +00:00
|
|
|
|
<Label>{t("image", { defaultValue: "Image" })}</Label>
|
2025-05-01 07:19:35 +00:00
|
|
|
|
<FileUploader
|
|
|
|
|
|
accept={{ "image/*": [] }}
|
|
|
|
|
|
maxSize={100}
|
|
|
|
|
|
label="Upload file dengan format .png, .jpg, atau .jpeg."
|
|
|
|
|
|
onDrop={(files) => setImageFiles(files)}
|
|
|
|
|
|
/>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)}
|
|
|
|
|
|
|
|
|
|
|
|
{fileTypeId === "3" && (
|
|
|
|
|
|
<div className="space-y-2">
|
2025-07-06 09:23:45 +00:00
|
|
|
|
<Label>{t("text", { defaultValue: "Text" })}</Label>
|
2025-05-01 07:19:35 +00:00
|
|
|
|
<FileUploader
|
2025-11-23 15:37:29 +00:00
|
|
|
|
accept={{
|
|
|
|
|
|
"application/pdf": [], // lebih presisi
|
|
|
|
|
|
}}
|
2025-05-01 07:19:35 +00:00
|
|
|
|
maxSize={100}
|
|
|
|
|
|
label="Upload file dengan format .pdf."
|
|
|
|
|
|
onDrop={(files) => setTextFiles(files)}
|
|
|
|
|
|
/>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)}
|
|
|
|
|
|
|
|
|
|
|
|
{fileTypeId === "4" && (
|
|
|
|
|
|
<div className="space-y-2">
|
2025-07-06 09:23:45 +00:00
|
|
|
|
<Label>{t("audio", { defaultValue: "Audio" })}</Label>
|
2025-05-01 07:19:35 +00:00
|
|
|
|
<AudioRecorder
|
|
|
|
|
|
onRecordingComplete={addAudioElement}
|
|
|
|
|
|
audioTrackConstraints={{
|
|
|
|
|
|
noiseSuppression: true,
|
|
|
|
|
|
echoCancellation: true,
|
|
|
|
|
|
}}
|
|
|
|
|
|
downloadOnSavePress={true}
|
|
|
|
|
|
downloadFileExtension="webm"
|
|
|
|
|
|
/>
|
|
|
|
|
|
<FileUploader
|
2025-11-23 15:37:29 +00:00
|
|
|
|
accept={{
|
|
|
|
|
|
"audio/*": [], // menerima mp3, wav, webm (untuk hasil rekaman)
|
|
|
|
|
|
}}
|
2025-05-01 07:19:35 +00:00
|
|
|
|
maxSize={100}
|
|
|
|
|
|
label="Upload file dengan format .mp3 atau .wav."
|
|
|
|
|
|
onDrop={(files) =>
|
|
|
|
|
|
setAudioFiles((prev) => [...prev, ...files])
|
|
|
|
|
|
}
|
|
|
|
|
|
className="mt-2"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)}
|
|
|
|
|
|
|
|
|
|
|
|
{fileTypeId === "4" &&
|
|
|
|
|
|
audioFiles?.map((audio: any, idx: any) => (
|
|
|
|
|
|
<div
|
|
|
|
|
|
key={idx}
|
|
|
|
|
|
className="flex flex-row justify-between items-center"
|
|
|
|
|
|
>
|
2025-11-23 15:37:29 +00:00
|
|
|
|
<p>
|
|
|
|
|
|
{t("voice-note", { defaultValue: "Voice Note" })}
|
|
|
|
|
|
</p>
|
2025-05-01 07:19:35 +00:00
|
|
|
|
<Button
|
|
|
|
|
|
type="button"
|
|
|
|
|
|
onClick={() => handleDeleteAudio(idx)}
|
|
|
|
|
|
size="sm"
|
|
|
|
|
|
color="destructive"
|
|
|
|
|
|
>
|
|
|
|
|
|
X
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
))}
|
2025-04-29 17:16:33 +00:00
|
|
|
|
|
2025-05-01 07:19:35 +00:00
|
|
|
|
{isRecording && (
|
|
|
|
|
|
<p>Recording... {timer} seconds remaining</p>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
2025-06-11 06:08:44 +00:00
|
|
|
|
<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">
|
2025-11-25 05:17:48 +00:00
|
|
|
|
<Link href={"/contributor/task-ta"}>
|
2025-06-11 06:08:44 +00:00
|
|
|
|
<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>
|
|
|
|
|
|
</Link>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2025-04-29 17:16:33 +00:00
|
|
|
|
</div>
|
2025-05-01 07:19:35 +00:00
|
|
|
|
</Card>
|
2025-06-11 06:08:44 +00:00
|
|
|
|
{/* <div className="w-full lg:w-4/12"> */}
|
|
|
|
|
|
{/* <Card className=" h-[500px]">
|
2025-05-01 07:19:35 +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>
|
2025-05-01 07:19:35 +00:00
|
|
|
|
<Controller
|
|
|
|
|
|
control={control}
|
|
|
|
|
|
name="creatorName"
|
|
|
|
|
|
render={({ field }) => (
|
|
|
|
|
|
<Input
|
|
|
|
|
|
size="md"
|
|
|
|
|
|
type="text"
|
|
|
|
|
|
value={field.value}
|
|
|
|
|
|
onChange={field.onChange}
|
|
|
|
|
|
placeholder="Enter Title"
|
|
|
|
|
|
/>
|
|
|
|
|
|
)}
|
2025-04-29 17:16:33 +00:00
|
|
|
|
/>
|
2025-05-01 07:19:35 +00:00
|
|
|
|
{errors.creatorName?.message && (
|
|
|
|
|
|
<p className="text-red-400 text-sm">
|
|
|
|
|
|
{errors.creatorName.message}
|
|
|
|
|
|
</p>
|
|
|
|
|
|
)}
|
2025-04-29 17:16:33 +00:00
|
|
|
|
</div>
|
2025-05-01 07:19:35 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
<div className="px-3 py-3 space-y-2">
|
2025-07-06 09:23:45 +00:00
|
|
|
|
<Label htmlFor="tags">{t("tags", { defaultValue: "Tags" })}</Label>
|
2025-05-01 07:19:35 +00:00
|
|
|
|
<Input
|
|
|
|
|
|
type="text"
|
|
|
|
|
|
id="tags"
|
|
|
|
|
|
placeholder="Add a tag and press Enter"
|
|
|
|
|
|
onKeyDown={handleAddTag}
|
|
|
|
|
|
ref={inputRef}
|
|
|
|
|
|
/>
|
|
|
|
|
|
<div className="mt-3 ">
|
|
|
|
|
|
{tags.map((tag, index) => (
|
|
|
|
|
|
<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={() => handleRemoveTag(index)}
|
|
|
|
|
|
className="remove-tag-button"
|
|
|
|
|
|
>
|
|
|
|
|
|
×
|
|
|
|
|
|
</button>
|
|
|
|
|
|
</span>
|
|
|
|
|
|
))}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div className="px-3 py-3">
|
|
|
|
|
|
<div className="flex flex-col gap-3 space-y-2">
|
2025-07-06 09:23:45 +00:00
|
|
|
|
<Label>{t("publish-target", { defaultValue: "Publish Target" })}</Label>
|
2025-05-01 07:19:35 +00:00
|
|
|
|
{options.map((option) => (
|
|
|
|
|
|
<div key={option.id} className="flex gap-2 items-center">
|
|
|
|
|
|
<Checkbox
|
|
|
|
|
|
id={option.id}
|
|
|
|
|
|
checked={
|
|
|
|
|
|
option.id === "all"
|
|
|
|
|
|
? publishedFor.length ===
|
|
|
|
|
|
options.filter((opt: any) => opt.id !== "all")
|
|
|
|
|
|
.length
|
|
|
|
|
|
: publishedFor.includes(option.id)
|
|
|
|
|
|
}
|
|
|
|
|
|
onCheckedChange={() =>
|
|
|
|
|
|
handleCheckboxChange(option.id)
|
|
|
|
|
|
}
|
|
|
|
|
|
/>
|
|
|
|
|
|
<Label htmlFor={option.id}>{option.label}</Label>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
))}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2025-06-11 06:08:44 +00:00
|
|
|
|
</Card> */}
|
|
|
|
|
|
{/* </div> */}
|
2025-04-29 17:16:33 +00:00
|
|
|
|
</div>
|
2025-05-01 07:19:35 +00:00
|
|
|
|
</form>
|
|
|
|
|
|
) : (
|
|
|
|
|
|
""
|
|
|
|
|
|
)}
|
|
|
|
|
|
</div>
|
2025-04-29 17:16:33 +00:00
|
|
|
|
);
|
|
|
|
|
|
}
|