mirror of
https://github.com/AustinKelsay/plebdevs.git
synced 2025-05-22 18:02:03 +00:00
214 lines
10 KiB
JavaScript
214 lines
10 KiB
JavaScript
import React, { useState, useEffect } from 'react';
|
|
import axios from 'axios';
|
|
import { useRouter } from 'next/router';
|
|
import { InputText } from 'primereact/inputtext';
|
|
import { InputTextarea } from 'primereact/inputtextarea';
|
|
import { InputNumber } from 'primereact/inputnumber';
|
|
import { InputSwitch } from 'primereact/inputswitch';
|
|
import GenericButton from '@/components/buttons/GenericButton';
|
|
import { useToast } from '@/hooks/useToast';
|
|
import { useSession } from 'next-auth/react';
|
|
import 'primeicons/primeicons.css';
|
|
import { Tooltip } from 'primereact/tooltip';
|
|
import 'primereact/resources/primereact.min.css';
|
|
|
|
// todo need to handle case where published video is being edited and not just draft
|
|
const VideoForm = ({ draft = null }) => {
|
|
const [title, setTitle] = useState(draft?.title || '');
|
|
const [summary, setSummary] = useState(draft?.summary || '');
|
|
const [price, setPrice] = useState(draft?.price || 0);
|
|
const [isPaidResource, setIsPaidResource] = useState(draft?.price ? true : false);
|
|
const [videoUrl, setVideoUrl] = useState(draft?.content || '');
|
|
const [coverImage, setCoverImage] = useState(draft?.image || '');
|
|
const [topics, setTopics] = useState(draft?.topics || ['']);
|
|
const [additionalLinks, setAdditionalLinks] = useState(draft?.additionalLinks || ['']);
|
|
|
|
const router = useRouter();
|
|
const { data: session, status } = useSession();
|
|
const [user, setUser] = useState(null);
|
|
const { showToast } = useToast();
|
|
|
|
useEffect(() => {
|
|
if (session) {
|
|
setUser(session.user);
|
|
}
|
|
}, [session]);
|
|
|
|
useEffect(() => {
|
|
if (draft) {
|
|
setTitle(draft.title);
|
|
setSummary(draft.summary);
|
|
setPrice(draft.price || 0);
|
|
setIsPaidResource(draft.price ? true : false);
|
|
setVideoUrl(draft.content);
|
|
setCoverImage(draft.image);
|
|
setTopics(draft.topics || ['']);
|
|
setAdditionalLinks(draft.additionalLinks || ['']);
|
|
}
|
|
}, [draft]);
|
|
|
|
const handleSubmit = async (e) => {
|
|
e.preventDefault();
|
|
let embedCode = '';
|
|
|
|
// Check if it's a YouTube video
|
|
if (videoUrl.includes('youtube.com') || videoUrl.includes('youtu.be')) {
|
|
const videoId = videoUrl.split('v=')[1] || videoUrl.split('/').pop();
|
|
embedCode = `<div style="position:relative;padding-bottom:56.25%;height:0;overflow:hidden;max-width:100%;"><iframe src="https://www.youtube.com/embed/${videoId}?enablejsapi=1" style="position:absolute;top:0;left:0;width:100%;height:100%;border:0;" allowfullscreen></iframe></div>`;
|
|
}
|
|
// Check if it's a Vimeo video
|
|
else if (videoUrl.includes('vimeo.com')) {
|
|
const videoId = videoUrl.split('/').pop();
|
|
embedCode = `<div style="position:relative;padding-bottom:56.25%;height:0;overflow:hidden;max-width:100%;"><iframe src="https://player.vimeo.com/video/${videoId}" style="position:absolute;top:0;left:0;width:100%;height:100%;border:0;" allowfullscreen></iframe></div>`;
|
|
}
|
|
else if (videoUrl.includes('.mp4') || videoUrl.includes('.mov') || videoUrl.includes('.avi') || videoUrl.includes('.wmv') || videoUrl.includes('.flv') || videoUrl.includes('.webm')) {
|
|
const baseUrl = process.env.NEXT_PUBLIC_API_URL || "http://localhost:3000";
|
|
console.log("BASE URL", baseUrl);
|
|
const videoEmbed = `<div style="position:relative;padding-bottom:56.25%;height:0;overflow:hidden;max-width:100%;"><video src="${baseUrl}/api/get-video-url?videoKey=${encodeURIComponent(videoUrl)}" style="position:absolute;top:0;left:0;width:100%;height:100%;border:0;" controls></video></div>`;
|
|
embedCode = videoEmbed;
|
|
}
|
|
// Add more conditions here for other video services
|
|
|
|
const userResponse = await axios.get(`/api/users/${user.pubkey}`);
|
|
|
|
if (!userResponse.data) {
|
|
showToast('error', 'Error', 'User not found', 'Please try again.');
|
|
return;
|
|
}
|
|
|
|
const payload = {
|
|
title,
|
|
summary,
|
|
type: 'video',
|
|
price: isPaidResource ? price : null,
|
|
content: embedCode,
|
|
image: coverImage,
|
|
user: userResponse.data.id,
|
|
topics: [...new Set([...topics.map(topic => topic.trim().toLowerCase()), 'video'])],
|
|
additionalLinks: additionalLinks.filter(link => link.trim() !== ''),
|
|
};
|
|
|
|
if (payload && payload.user) {
|
|
const url = draft ? `/api/drafts/${draft.id}` : '/api/drafts';
|
|
const method = draft ? 'put' : 'post';
|
|
|
|
axios[method](url, payload)
|
|
.then(response => {
|
|
if (response.status === 200 || response.status === 201) {
|
|
showToast('success', 'Success', draft ? 'Video updated successfully.' : 'Video saved as draft.');
|
|
|
|
if (response.data?.id) {
|
|
router.push(`/draft/${response.data.id}`);
|
|
}
|
|
}
|
|
})
|
|
.catch(error => {
|
|
console.error(error);
|
|
showToast('error', 'Error', 'Failed to save video. Please try again.');
|
|
});
|
|
}
|
|
};
|
|
|
|
const handleTopicChange = (index, value) => {
|
|
const updatedTopics = topics.map((topic, i) => i === index ? value : topic);
|
|
setTopics(updatedTopics);
|
|
};
|
|
|
|
const addTopic = (e) => {
|
|
e.preventDefault();
|
|
setTopics([...topics, '']); // Add an empty string to the topics array
|
|
};
|
|
|
|
const removeTopic = (e, index) => {
|
|
e.preventDefault();
|
|
const updatedTopics = topics.filter((_, i) => i !== index);
|
|
setTopics(updatedTopics);
|
|
};
|
|
|
|
const handleLinkChange = (index, value) => {
|
|
const updatedLinks = additionalLinks.map((link, i) => i === index ? value : link);
|
|
setAdditionalLinks(updatedLinks);
|
|
};
|
|
|
|
const addLink = (e) => {
|
|
e.preventDefault();
|
|
setAdditionalLinks([...additionalLinks, '']);
|
|
};
|
|
|
|
const removeLink = (e, index) => {
|
|
e.preventDefault();
|
|
const updatedLinks = additionalLinks.filter((_, i) => i !== index);
|
|
setAdditionalLinks(updatedLinks);
|
|
};
|
|
|
|
|
|
return (
|
|
<form onSubmit={handleSubmit}>
|
|
<div className="p-inputgroup flex-1">
|
|
<InputText value={title} onChange={(e) => setTitle(e.target.value)} placeholder="Title" />
|
|
</div>
|
|
<div className="p-inputgroup flex-1 mt-4">
|
|
<InputTextarea value={summary} onChange={(e) => setSummary(e.target.value)} placeholder="Summary" rows={5} cols={30} />
|
|
</div>
|
|
|
|
<div className="p-inputgroup flex-1 mt-4 flex-col">
|
|
<p className="py-2">Paid Video</p>
|
|
<InputSwitch checked={isPaidResource} onChange={(e) => setIsPaidResource(e.value)} />
|
|
{isPaidResource && (
|
|
<div className="p-inputgroup flex-1 py-4">
|
|
<i className="pi pi-bolt p-inputgroup-addon text-2xl text-yellow-500"></i>
|
|
<InputNumber value={price} onValueChange={(e) => setPrice(e.value)} placeholder="Price (sats)" />
|
|
</div>
|
|
)}
|
|
</div>
|
|
<div className="p-inputgroup flex-1 mt-4">
|
|
<InputText value={videoUrl} onChange={(e) => setVideoUrl(e.target.value)} placeholder="Video URL" />
|
|
</div>
|
|
<div className="p-inputgroup flex-1 mt-4">
|
|
<InputText value={coverImage} onChange={(e) => setCoverImage(e.target.value)} placeholder="Cover Image URL" />
|
|
</div>
|
|
<div className="mt-8 flex-col w-full">
|
|
<span className="pl-1 flex items-center">
|
|
External Links
|
|
<i className="pi pi-info-circle ml-2 cursor-pointer"
|
|
data-pr-tooltip="Add any relevant external links that pair with this content (these links are currently not encrypted for 'paid' content)"
|
|
data-pr-position="right"
|
|
data-pr-at="right+5 top"
|
|
data-pr-my="left center-2"
|
|
style={{ fontSize: '1rem', color: 'var(--primary-color)' }}
|
|
/>
|
|
</span>
|
|
{additionalLinks.map((link, index) => (
|
|
<div className="p-inputgroup flex-1" key={index}>
|
|
<InputText value={link} onChange={(e) => handleLinkChange(index, e.target.value)} placeholder="https://example.com" className="w-full mt-2" />
|
|
{index > 0 && (
|
|
<GenericButton icon="pi pi-times" className="p-button-danger mt-2" onClick={(e) => removeLink(e, index)} />
|
|
)}
|
|
</div>
|
|
))}
|
|
<div className="w-full flex flex-row items-end justify-end py-2">
|
|
<GenericButton icon="pi pi-plus" onClick={addLink} />
|
|
</div>
|
|
<Tooltip target=".pi-info-circle" />
|
|
</div>
|
|
<div className="mt-4 flex-col w-full">
|
|
{topics.map((topic, index) => (
|
|
<div className="p-inputgroup flex-1" key={index}>
|
|
<InputText value={topic} onChange={(e) => handleTopicChange(index, e.target.value)} placeholder="Topic" className="w-full mt-2" />
|
|
{index > 0 && (
|
|
<GenericButton icon="pi pi-times" className="p-button-danger mt-2" onClick={(e) => removeTopic(e, index)} />
|
|
)}
|
|
</div>
|
|
))}
|
|
<div className="w-full flex flex-row items-end justify-end py-2">
|
|
<GenericButton icon="pi pi-plus" onClick={addTopic} />
|
|
</div>
|
|
</div>
|
|
<div className="flex justify-center mt-8">
|
|
<GenericButton type="submit" severity="success" outlined label={draft ? "Update" : "Submit"} />
|
|
</div>
|
|
</form>
|
|
);
|
|
}
|
|
|
|
export default VideoForm; |