mirror of
https://github.com/artegoser/ultyt.git
synced 2024-11-21 19:46:21 +03:00
feat: playlists in channel
This commit is contained in:
parent
bafd943814
commit
7721e04417
4 changed files with 79 additions and 16 deletions
8
package-lock.json
generated
8
package-lock.json
generated
|
@ -11,7 +11,7 @@
|
||||||
"@heroicons/react": "^2.0.18",
|
"@heroicons/react": "^2.0.18",
|
||||||
"@nextui-org/react": "^2.0.7",
|
"@nextui-org/react": "^2.0.7",
|
||||||
"framer-motion": "^10.15.1",
|
"framer-motion": "^10.15.1",
|
||||||
"piped-api": "^1.2.0",
|
"piped-api": "^1.2.1",
|
||||||
"react": "^18.2.0",
|
"react": "^18.2.0",
|
||||||
"react-dom": "^18.2.0",
|
"react-dom": "^18.2.0",
|
||||||
"react-router-dom": "^6.14.2"
|
"react-router-dom": "^6.14.2"
|
||||||
|
@ -4439,9 +4439,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/piped-api": {
|
"node_modules/piped-api": {
|
||||||
"version": "1.2.0",
|
"version": "1.2.1",
|
||||||
"resolved": "https://registry.npmjs.org/piped-api/-/piped-api-1.2.0.tgz",
|
"resolved": "https://registry.npmjs.org/piped-api/-/piped-api-1.2.1.tgz",
|
||||||
"integrity": "sha512-180w5tI7/I4bPQ0+Jwl5fj84cd+bffq4XihK9lt6zbUQdmbIcxVsJ/zi83rUAJGAijCp0/BuZeGywpKp9Lt5NA==",
|
"integrity": "sha512-HoJPQVEiDkwPFTwl29pg1zRcCm7GGZjW5pWt35A8uRRPb6475NgmZT0K+Z+GPtC4j78rbcGK2NEdkZceibW9gQ==",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"axios": "^1.4.0"
|
"axios": "^1.4.0"
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
"@heroicons/react": "^2.0.18",
|
"@heroicons/react": "^2.0.18",
|
||||||
"@nextui-org/react": "^2.0.7",
|
"@nextui-org/react": "^2.0.7",
|
||||||
"framer-motion": "^10.15.1",
|
"framer-motion": "^10.15.1",
|
||||||
"piped-api": "^1.2.0",
|
"piped-api": "^1.2.1",
|
||||||
"react": "^18.2.0",
|
"react": "^18.2.0",
|
||||||
"react-dom": "^18.2.0",
|
"react-dom": "^18.2.0",
|
||||||
"react-router-dom": "^6.14.2"
|
"react-router-dom": "^6.14.2"
|
||||||
|
|
48
src/components/playlist.tsx
Normal file
48
src/components/playlist.tsx
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
import { Avatar, Card, CardBody, CardHeader, Link } from "@nextui-org/react";
|
||||||
|
import { Playlist } from "piped-api/dist/types";
|
||||||
|
import { useNavigate } from "react-router-dom";
|
||||||
|
import { CheckCircleIcon } from "@heroicons/react/24/solid";
|
||||||
|
import { shortenNumber } from "./utils";
|
||||||
|
export function PlaylistComponent({
|
||||||
|
playlist,
|
||||||
|
uploaderAvatar,
|
||||||
|
}: PlaylistComponentProps) {
|
||||||
|
const navigate = useNavigate();
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Card isPressable onPress={() => navigate(playlist.url)} shadow="none">
|
||||||
|
<CardHeader>
|
||||||
|
<img className="w-full rounded-xl" src={playlist.thumbnail} />
|
||||||
|
</CardHeader>
|
||||||
|
<CardBody className="flex gap-3 flex-row">
|
||||||
|
<Avatar
|
||||||
|
className="flex-none"
|
||||||
|
src={uploaderAvatar ? uploaderAvatar : playlist.uploaderAvatar}
|
||||||
|
/>
|
||||||
|
<div className="flex gap-3 flex-col">
|
||||||
|
<Link color="foreground" href={`#${playlist.url}`}>
|
||||||
|
{playlist.name}
|
||||||
|
</Link>
|
||||||
|
<Link color="foreground" href={`#${playlist.uploaderUrl}`}>
|
||||||
|
<div className="flex flex-row items-center">
|
||||||
|
<p className="text-md">{playlist.uploaderName}</p>
|
||||||
|
{playlist.uploaderVerified && (
|
||||||
|
<CheckCircleIcon className="w-6 h-6 p-1" />
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</Link>
|
||||||
|
<div className="flex flex-row items-center">
|
||||||
|
<p className="flex-none text-md">
|
||||||
|
{`${shortenNumber(playlist.videos)} videos`}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</CardBody>
|
||||||
|
</Card>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
type PlaylistComponentProps = {
|
||||||
|
playlist: Playlist;
|
||||||
|
uploaderAvatar?: string;
|
||||||
|
};
|
|
@ -1,4 +1,4 @@
|
||||||
import { Channel, Tab, Video } from "piped-api/dist/types";
|
import { Channel, Playlist, Tab, Video } from "piped-api/dist/types";
|
||||||
import {
|
import {
|
||||||
SkeletonVideoComponent,
|
SkeletonVideoComponent,
|
||||||
VideoComponent,
|
VideoComponent,
|
||||||
|
@ -8,6 +8,8 @@ import { useParams, useSearchParams } from "react-router-dom";
|
||||||
import { Button, Card, CardFooter } from "@nextui-org/react";
|
import { Button, Card, CardFooter } from "@nextui-org/react";
|
||||||
import { capitalize } from "../components/utils";
|
import { capitalize } from "../components/utils";
|
||||||
import React from "react";
|
import React from "react";
|
||||||
|
import { PlaylistComponent } from "../components/playlist";
|
||||||
|
import { CheckCircleIcon } from "@heroicons/react/24/solid";
|
||||||
|
|
||||||
export default function ChannelPage() {
|
export default function ChannelPage() {
|
||||||
const { id } = useParams();
|
const { id } = useParams();
|
||||||
|
@ -85,10 +87,13 @@ class ChannelPageСomponent extends React.Component<
|
||||||
<img className="w-full rounded-xl" src={channel.bannerUrl} />
|
<img className="w-full rounded-xl" src={channel.bannerUrl} />
|
||||||
</div>
|
</div>
|
||||||
<CardFooter className="p-4 justify-between ">
|
<CardFooter className="p-4 justify-between ">
|
||||||
<div className="flex flex-col">
|
<div className="flex flex-row">
|
||||||
<div className="flex flex-row gap-2 text-xl font-bold pl-2">
|
<div className="flex flex-row gap-2 text-xl font-bold pl-2">
|
||||||
{channel.name}
|
{channel.name}
|
||||||
</div>
|
</div>
|
||||||
|
{channel.verified && (
|
||||||
|
<CheckCircleIcon className="w-6 h-6 p-1" />
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
</CardFooter>
|
</CardFooter>
|
||||||
</Card>
|
</Card>
|
||||||
|
@ -125,22 +130,32 @@ class ChannelPageСomponent extends React.Component<
|
||||||
|
|
||||||
{tabId !== "videos" ? (
|
{tabId !== "videos" ? (
|
||||||
<VideoContainer>
|
<VideoContainer>
|
||||||
{tab?.content.map((video) => {
|
{tab?.content.map((item) => {
|
||||||
if (video.type === "stream") {
|
if (item.type === "stream") {
|
||||||
video = video as Video;
|
item = item as Video;
|
||||||
return (
|
return (
|
||||||
<VideoComponent
|
<VideoComponent
|
||||||
video={video}
|
video={item}
|
||||||
key={video.url}
|
key={item.url}
|
||||||
uploaderAvatar={channel.avatarUrl}
|
uploaderAvatar={channel.avatarUrl}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
} else {
|
} else if (item.type === "playlist") {
|
||||||
|
item = item as Playlist;
|
||||||
return (
|
return (
|
||||||
<div className="" key={Math.random()}>
|
<PlaylistComponent
|
||||||
Soon...
|
playlist={item}
|
||||||
</div>
|
key={item.url}
|
||||||
|
uploaderAvatar={channel.avatarUrl}
|
||||||
|
/>
|
||||||
);
|
);
|
||||||
|
} else if (item.type === "channel") {
|
||||||
|
item = item as Channel;
|
||||||
|
return <div>Soon...</div>;
|
||||||
|
} else {
|
||||||
|
<div className="" key={Math.random()}>
|
||||||
|
Idk how to render this
|
||||||
|
</div>;
|
||||||
}
|
}
|
||||||
})}
|
})}
|
||||||
</VideoContainer>
|
</VideoContainer>
|
||||||
|
|
Loading…
Add table
Reference in a new issue