From 4a13c36da50f6b3171d817edebefe96ba85dc666 Mon Sep 17 00:00:00 2001 From: kamtschatka Date: Mon, 28 Oct 2024 02:51:00 +0100 Subject: feature: Archive videos using yt-dlp. Fixes #215 (#525) * Allow downloading more content from a webpage and index it #215 Added a worker that allows downloading videos depending on the environment variables refactored the code a bit added new video asset updated documentation * Some tweaks * Drop the dependency on the yt-dlp wrapper * Update openapi specs * Dont log an error when the url is not supported * Better handle supported websites that dont download anything --------- Co-authored-by: Mohamed Bassem --- .../dashboard/preview/LinkContentSection.tsx | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'apps/web/components/dashboard/preview/LinkContentSection.tsx') diff --git a/apps/web/components/dashboard/preview/LinkContentSection.tsx b/apps/web/components/dashboard/preview/LinkContentSection.tsx index f2069821..bf0d8f90 100644 --- a/apps/web/components/dashboard/preview/LinkContentSection.tsx +++ b/apps/web/components/dashboard/preview/LinkContentSection.tsx @@ -60,6 +60,20 @@ function CachedContentSection({ link }: { link: ZBookmarkedLink }) { return {content}; } +function VideoSection({ link }: { link: ZBookmarkedLink }) { + return ( +
+
+ {/* eslint-disable-next-line jsx-a11y/media-has-caption -- captions not (yet) available */} + +
+
+ ); +} + export default function LinkContentSection({ bookmark, }: { @@ -76,6 +90,8 @@ export default function LinkContentSection({ content = ; } else if (section === "archive") { content = ; + } else if (section === "video") { + content = ; } else { content = ; } @@ -101,6 +117,9 @@ export default function LinkContentSection({ > Archive + + Video + -- cgit v1.2.3-70-g09d2