191 lines
7.5 KiB
JavaScript
191 lines
7.5 KiB
JavaScript
import { jsx, jsxs } from "react/jsx-runtime";
|
|
import { C as ChunkedUploaderInput } from "./chunked-uploader-input-CZfv7yqS.js";
|
|
import { I as InputError } from "./input-error-D1JIzedA.js";
|
|
import { L as LoadingButton } from "./loading-button-CCIxhJrY.js";
|
|
import { C as Card } from "./card-B-gBwpxd.js";
|
|
import { I as Input } from "./input-BsvJqbcd.js";
|
|
import { L as Label } from "./label-0rIIfpX0.js";
|
|
import { R as RadioGroup, a as RadioGroupItem } from "./radio-group-Wf8uu9ZY.js";
|
|
import { S as Separator } from "./separator-CSqU-rrB.js";
|
|
import { V as VideoPlayer } from "./video-player-DbcUPn7s.js";
|
|
import { D as DashboardLayout } from "./layout-Cf9mPjOS.js";
|
|
import { o as onHandleChange } from "./inertia-BtwbgBI3.js";
|
|
import { usePage, useForm } from "@inertiajs/react";
|
|
import { useState, useMemo, useEffect } from "react";
|
|
import "./button-CdJZJLGw.js";
|
|
import "@radix-ui/react-slot";
|
|
import "class-variance-authority";
|
|
import "./utils-DLCPGU0v.js";
|
|
import "clsx";
|
|
import "tailwind-merge";
|
|
import "axios";
|
|
import "lucide-react";
|
|
import "sonner";
|
|
import "@radix-ui/react-label";
|
|
import "@radix-ui/react-radio-group";
|
|
import "@radix-ui/react-separator";
|
|
import "plyr-react";
|
|
/* empty css */
|
|
import "./sidebar-C1tqSfnl.js";
|
|
import "./sheet-BOQ-e9_C.js";
|
|
import "@radix-ui/react-dialog";
|
|
import "./tooltip-BYKuzaoQ.js";
|
|
import "@radix-ui/react-tooltip";
|
|
import "./main-BKBelQb-.js";
|
|
import "next-themes";
|
|
import "./appearance-BJIqrZL5.js";
|
|
import "./dropdown-menu-msun3TP8.js";
|
|
import "@radix-ui/react-dropdown-menu";
|
|
import "./language-mewnB-2r.js";
|
|
import "./notification-Bg6IzWOo.js";
|
|
import "./popover-Cv6Hz_y0.js";
|
|
import "@radix-ui/react-popover";
|
|
import "date-fns";
|
|
import "./scroll-area-CDdrLubh.js";
|
|
import "@radix-ui/react-scroll-area";
|
|
import "./app-logo-DWyi5bLn.js";
|
|
import "./accordion-cIAfVfPq.js";
|
|
import "@radix-ui/react-accordion";
|
|
import "./route-DlE7FdTW.js";
|
|
import "./avatar-C8iCpF5R.js";
|
|
import "@radix-ui/react-avatar";
|
|
import "./use-lang-44ndmTOc.js";
|
|
const Media = () => {
|
|
const { props } = usePage();
|
|
const { translate } = props;
|
|
const { dashboard, input, button } = translate;
|
|
const { tab, course } = props;
|
|
const [isSubmit, setIsSubmit] = useState(false);
|
|
const [isFileSelected, setIsFileSelected] = useState(false);
|
|
const [isFileUploaded, setIsFileUploaded] = useState(false);
|
|
const [previewBanner, setPreviewBanner] = useState(course.banner);
|
|
const [thumbnailBanner, setThumbnailBanner] = useState(course.thumbnail);
|
|
const { data, setData, post, errors, reset, processing } = useForm({
|
|
tab,
|
|
thumbnail: null,
|
|
banner: null,
|
|
preview: course.preview,
|
|
preview_type: "video_url"
|
|
});
|
|
const memoizedVideoPlayer = useMemo(() => {
|
|
if (!course.preview) return null;
|
|
return /* @__PURE__ */ jsx(Card, { className: "mt-2 flex max-h-[580px] items-center justify-center overflow-hidden border-none", children: /* @__PURE__ */ jsx(
|
|
VideoPlayer,
|
|
{
|
|
source: {
|
|
type: "video",
|
|
sources: [
|
|
{
|
|
src: course.preview || "",
|
|
type: "video/mp4"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
) });
|
|
}, [course.preview]);
|
|
const handleSubmit = (e) => {
|
|
e.preventDefault();
|
|
if (isFileSelected) {
|
|
setIsSubmit(true);
|
|
return;
|
|
}
|
|
submitForm();
|
|
};
|
|
const submitForm = () => {
|
|
post(route("courses.update", { id: course.id }), {
|
|
onSuccess() {
|
|
reset();
|
|
}
|
|
});
|
|
};
|
|
useEffect(() => {
|
|
if (isSubmit && data.preview && isFileUploaded) {
|
|
submitForm();
|
|
reset();
|
|
setIsSubmit(false);
|
|
setIsFileUploaded(false);
|
|
}
|
|
}, [isSubmit, data.preview]);
|
|
return /* @__PURE__ */ jsx(Card, { className: "container p-4 sm:p-6", children: /* @__PURE__ */ jsxs("form", { onSubmit: handleSubmit, className: "space-y-4", children: [
|
|
/* @__PURE__ */ jsxs("div", { children: [
|
|
/* @__PURE__ */ jsx(Label, { children: dashboard.thumbnail }),
|
|
/* @__PURE__ */ jsx(Input, { type: "file", name: "thumbnail", onChange: (e) => onHandleChange(e, setData, setThumbnailBanner) }),
|
|
/* @__PURE__ */ jsx(InputError, { message: errors.thumbnail }),
|
|
/* @__PURE__ */ jsx("img", { src: thumbnailBanner || "/assets/images/blank-image.jpg", alt: "", className: "mt-2 w-full max-w-sm rounded-md" })
|
|
] }),
|
|
/* @__PURE__ */ jsxs("div", { children: [
|
|
/* @__PURE__ */ jsx(Label, { children: dashboard.banner }),
|
|
/* @__PURE__ */ jsx(Input, { type: "file", name: "banner", onChange: (e) => onHandleChange(e, setData, setPreviewBanner) }),
|
|
/* @__PURE__ */ jsx(InputError, { message: errors.banner }),
|
|
/* @__PURE__ */ jsx("img", { src: previewBanner || "/assets/images/blank-image.jpg", alt: "", className: "mt-2 w-full max-w-sm rounded-md" })
|
|
] }),
|
|
/* @__PURE__ */ jsx(Separator, {}),
|
|
/* @__PURE__ */ jsxs("div", { children: [
|
|
/* @__PURE__ */ jsx(Label, { children: dashboard.preview_video_type }),
|
|
/* @__PURE__ */ jsxs(
|
|
RadioGroup,
|
|
{
|
|
defaultValue: data.preview_type,
|
|
onValueChange: (value) => setData("preview_type", value),
|
|
className: "flex flex-wrap items-center gap-5 pt-3",
|
|
children: [
|
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center space-x-2", children: [
|
|
/* @__PURE__ */ jsx(RadioGroupItem, { className: "cursor-pointer", id: "video_url", value: "video_url" }),
|
|
/* @__PURE__ */ jsx(Label, { htmlFor: "video_url", className: "capitalize", children: dashboard.video_url })
|
|
] }),
|
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center space-x-2", children: [
|
|
/* @__PURE__ */ jsx(RadioGroupItem, { className: "cursor-pointer", id: "video", value: "video" }),
|
|
/* @__PURE__ */ jsx(Label, { htmlFor: "video", className: "capitalize", children: dashboard.video_file })
|
|
] })
|
|
]
|
|
}
|
|
),
|
|
/* @__PURE__ */ jsx(InputError, { message: errors.preview_type })
|
|
] }),
|
|
/* @__PURE__ */ jsxs("div", { children: [
|
|
/* @__PURE__ */ jsx(Label, { children: "Preview Video" }),
|
|
data.preview_type === "video_url" ? /* @__PURE__ */ jsx(
|
|
Input,
|
|
{
|
|
type: "url",
|
|
name: "preview",
|
|
value: data.preview,
|
|
placeholder: input.video_url_placeholder,
|
|
onChange: (e) => onHandleChange(e, setData)
|
|
}
|
|
) : /* @__PURE__ */ jsx(
|
|
ChunkedUploaderInput,
|
|
{
|
|
isSubmit,
|
|
courseId: course.id || "",
|
|
sectionId: course.course_section_id || "",
|
|
filetype: data.preview_type,
|
|
delayUpload: true,
|
|
onFileSelected: (file) => {
|
|
setIsFileSelected(true);
|
|
},
|
|
onFileUploaded: (fileData) => {
|
|
setIsFileUploaded(true);
|
|
setData("preview", fileData.file_url);
|
|
},
|
|
onError: (errors2) => {
|
|
setIsSubmit(false);
|
|
},
|
|
onCancelUpload: () => {
|
|
setIsSubmit(false);
|
|
}
|
|
}
|
|
),
|
|
/* @__PURE__ */ jsx(InputError, { message: errors.preview }),
|
|
/* @__PURE__ */ jsx("p", { className: "text-xs text-gray-500", children: data.preview_type === "video_url" ? "Supported URL: youtube or vimeo" : "Supported Video file: .mp4 or .webm or .ogg" }),
|
|
memoizedVideoPlayer
|
|
] }),
|
|
/* @__PURE__ */ jsx("div", { className: "mt-8", children: /* @__PURE__ */ jsx(LoadingButton, { loading: processing || isSubmit, disabled: processing || isSubmit, children: button.save_changes }) })
|
|
] }) });
|
|
};
|
|
Media.layout = (page) => /* @__PURE__ */ jsx(DashboardLayout, { children: page });
|
|
export {
|
|
Media as default
|
|
};
|