mirror of
https://github.com/AustinKelsay/plebdevs.git
synced 2025-06-05 00:32:03 +00:00
268 lines
8.8 KiB
JavaScript
268 lines
8.8 KiB
JavaScript
import React, { useEffect, useState, useRef, useCallback } from 'react';
|
|
import { Tag } from 'primereact/tag';
|
|
import Image from 'next/image';
|
|
import ZapDisplay from '@/components/zaps/ZapDisplay';
|
|
import { useImageProxy } from '@/hooks/useImageProxy';
|
|
import { useZapsQuery } from '@/hooks/nostrQueries/zaps/useZapsQuery';
|
|
import { nip19 } from 'nostr-tools';
|
|
import { getTotalFromZaps } from '@/utils/lightning';
|
|
import { Divider } from 'primereact/divider';
|
|
import appConfig from '@/config/appConfig';
|
|
import useWindowWidth from '@/hooks/useWindowWidth';
|
|
import useTrackVideoLesson from '@/hooks/tracking/useTrackVideoLesson';
|
|
import { Toast } from 'primereact/toast';
|
|
import MoreOptionsMenu from '@/components/ui/MoreOptionsMenu';
|
|
import { useSession } from 'next-auth/react';
|
|
import MarkdownDisplay from '@/components/markdown/MarkdownDisplay';
|
|
|
|
const VideoLesson = ({ lesson, course, decryptionPerformed, isPaid, setCompleted }) => {
|
|
const [zapAmount, setZapAmount] = useState(0);
|
|
const [nAddress, setNAddress] = useState(null);
|
|
const { zaps, zapsLoading, zapsError } = useZapsQuery({ event: lesson, type: 'lesson' });
|
|
const { returnImageProxy } = useImageProxy();
|
|
const windowWidth = useWindowWidth();
|
|
const isMobileView = windowWidth <= 768;
|
|
const [videoDuration, setVideoDuration] = useState(null);
|
|
const [videoPlayed, setVideoPlayed] = useState(false);
|
|
const mdDisplayRef = useRef(null);
|
|
const menuRef = useRef(null);
|
|
const toastRef = useRef(null);
|
|
const { data: session } = useSession();
|
|
|
|
const { isCompleted, isTracking, markLessonAsCompleted } = useTrackVideoLesson({
|
|
lessonId: lesson?.d,
|
|
videoDuration,
|
|
courseId: course?.d,
|
|
videoPlayed,
|
|
paidCourse: isPaid,
|
|
decryptionPerformed,
|
|
});
|
|
|
|
const buildMenuItems = () => {
|
|
const items = [];
|
|
|
|
const hasAccess =
|
|
session?.user && (!isPaid || decryptionPerformed || session.user.role?.subscribed);
|
|
|
|
if (hasAccess) {
|
|
items.push({
|
|
label: 'Mark as completed',
|
|
icon: 'pi pi-check-circle',
|
|
command: async () => {
|
|
try {
|
|
await markLessonAsCompleted();
|
|
setCompleted(lesson.id);
|
|
toastRef.current.show({
|
|
severity: 'success',
|
|
summary: 'Success',
|
|
detail: 'Lesson marked as completed',
|
|
life: 3000,
|
|
});
|
|
} catch (error) {
|
|
console.error('Failed to mark lesson as completed:', error);
|
|
toastRef.current.show({
|
|
severity: 'error',
|
|
summary: 'Error',
|
|
detail: 'Failed to mark lesson as completed',
|
|
life: 3000,
|
|
});
|
|
}
|
|
},
|
|
});
|
|
}
|
|
|
|
items.push({
|
|
label: 'Open lesson',
|
|
icon: 'pi pi-arrow-up-right',
|
|
command: () => {
|
|
window.open(`/details/${lesson.id}`, '_blank');
|
|
},
|
|
});
|
|
|
|
items.push({
|
|
label: 'View Nostr note',
|
|
icon: 'pi pi-globe',
|
|
command: () => {
|
|
window.open(`https://habla.news/a/${nAddress}`, '_blank');
|
|
},
|
|
});
|
|
|
|
return items;
|
|
};
|
|
|
|
useEffect(() => {
|
|
const handleYouTubeMessage = event => {
|
|
if (event.origin !== 'https://www.youtube.com') return;
|
|
|
|
try {
|
|
const data = JSON.parse(event.data);
|
|
if (data.event === 'onReady') {
|
|
event.source.postMessage('{"event":"listening"}', 'https://www.youtube.com');
|
|
} else if (data.event === 'infoDelivery' && data?.info && data?.info?.currentTime) {
|
|
setVideoPlayed(true);
|
|
setVideoDuration(data.info?.progressState?.duration);
|
|
event.source.postMessage(
|
|
'{"event":"command","func":"getDuration","args":""}',
|
|
'https://www.youtube.com'
|
|
);
|
|
}
|
|
} catch (error) {
|
|
console.error('Error parsing YouTube message:', error);
|
|
}
|
|
};
|
|
|
|
window.addEventListener('message', handleYouTubeMessage);
|
|
|
|
return () => {
|
|
window.removeEventListener('message', handleYouTubeMessage);
|
|
};
|
|
}, []);
|
|
|
|
const checkDuration = useCallback(() => {
|
|
const videoElement = mdDisplayRef.current?.querySelector('video');
|
|
const youtubeIframe = mdDisplayRef.current?.querySelector('iframe[src*="youtube.com"]');
|
|
|
|
if (videoElement && videoElement.readyState >= 1) {
|
|
setVideoDuration(Math.round(videoElement.duration));
|
|
setVideoPlayed(true);
|
|
} else if (youtubeIframe) {
|
|
youtubeIframe.contentWindow.postMessage('{"event":"listening"}', '*');
|
|
}
|
|
}, []);
|
|
|
|
useEffect(() => {
|
|
if (isCompleted && !isTracking) {
|
|
setCompleted(lesson.id);
|
|
}
|
|
}, [isCompleted, lesson.id, setCompleted, isTracking]);
|
|
|
|
useEffect(() => {
|
|
if (!zaps || zapsLoading || zapsError) return;
|
|
const total = getTotalFromZaps(zaps, lesson);
|
|
setZapAmount(total);
|
|
}, [zaps, zapsLoading, zapsError, lesson]);
|
|
|
|
useEffect(() => {
|
|
const addr = nip19.naddrEncode({
|
|
pubkey: lesson.pubkey,
|
|
kind: lesson.kind,
|
|
identifier: lesson.d,
|
|
relays: appConfig.defaultRelayUrls,
|
|
});
|
|
setNAddress(addr);
|
|
}, [lesson]);
|
|
|
|
useEffect(() => {
|
|
if (decryptionPerformed && isPaid) {
|
|
const timer = setTimeout(checkDuration, 500);
|
|
return () => clearTimeout(timer);
|
|
} else {
|
|
const timer = setTimeout(checkDuration, 3000);
|
|
return () => clearTimeout(timer);
|
|
}
|
|
}, [decryptionPerformed, isPaid, checkDuration]);
|
|
|
|
const renderContent = () => {
|
|
// Content not available
|
|
if (!lesson?.content) {
|
|
return (
|
|
<div className="w-full aspect-video rounded-lg flex flex-col items-center justify-center bg-gray-800">
|
|
<p className="text-center text-gray-400">No content available for this lesson.</p>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
// Paid content that needs to be purchased
|
|
if (isPaid && !decryptionPerformed) {
|
|
return (
|
|
<div className="w-full aspect-video rounded-lg flex flex-col items-center justify-center relative overflow-hidden">
|
|
<div
|
|
className="absolute inset-0 opacity-50"
|
|
style={{
|
|
backgroundImage: `url(${lesson.image})`,
|
|
backgroundSize: 'cover',
|
|
backgroundPosition: 'center',
|
|
}}
|
|
></div>
|
|
<div className="absolute inset-0 bg-black bg-opacity-50"></div>
|
|
<div className="mx-auto py-auto z-10">
|
|
<i className="pi pi-lock text-[100px] text-red-500"></i>
|
|
</div>
|
|
<p className="text-center text-xl text-red-500 z-10 mt-4">
|
|
This content is paid and needs to be purchased before viewing.
|
|
</p>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
// Content is available and decrypted (or free)
|
|
return (
|
|
<div ref={mdDisplayRef}>
|
|
<MarkdownDisplay content={lesson.content} className="p-0 rounded-lg w-full" />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
return (
|
|
<div className="w-full">
|
|
<Toast ref={toastRef} />
|
|
{renderContent()}
|
|
<Divider />
|
|
<div className="bg-gray-800/90 rounded-lg p-4 m-4 max-mob:px-2">
|
|
<div className="w-full flex flex-col items-start justify-start mt-2 px-2">
|
|
<div className="flex flex-row items-center justify-between w-full">
|
|
<h1 className="text-3xl text-white">{lesson.title}</h1>
|
|
<ZapDisplay zapAmount={zapAmount} event={lesson} zapsLoading={zapsLoading} />
|
|
</div>
|
|
<div className="flex flex-wrap gap-2 mt-2 mb-4">
|
|
{lesson.topics &&
|
|
lesson.topics.length > 0 &&
|
|
lesson.topics.map((topic, index) => (
|
|
<Tag className="text-white" key={index} value={topic}></Tag>
|
|
))}
|
|
</div>
|
|
<div className="text-xl mt-4 text-gray-200">
|
|
{lesson.summary && (
|
|
<div className="text-xl mt-4">
|
|
{lesson.summary.split('\n').map((line, index) => (
|
|
<p key={index}>{line}</p>
|
|
))}
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
<div className="flex items-center justify-between mt-8">
|
|
<div className="flex items-center">
|
|
<Image
|
|
alt="avatar image"
|
|
src={returnImageProxy(lesson.author?.avatar, lesson.author?.username)}
|
|
width={50}
|
|
height={50}
|
|
className="rounded-full mr-4"
|
|
/>
|
|
<p className="text-lg text-white">
|
|
Created by{' '}
|
|
<a
|
|
rel="noreferrer noopener"
|
|
target="_blank"
|
|
className="text-blue-300 hover:underline"
|
|
>
|
|
{lesson.author?.username || lesson.author?.pubkey}
|
|
</a>
|
|
</p>
|
|
</div>
|
|
<div className="flex justify-end">
|
|
<MoreOptionsMenu
|
|
menuItems={buildMenuItems()}
|
|
additionalLinks={lesson?.additionalLinks || []}
|
|
isMobileView={isMobileView}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default VideoLesson;
|