ai-lab-tube / src /app /main.tsx
jbilcke-hf's picture
jbilcke-hf HF staff
improve huggingface support
9cea1bb
raw
history blame
No virus
2.53 kB
"use client"
import { useStore } from "./state/useStore"
import { HomeView } from "./views/home-view"
import { PublicChannelsView } from "./views/public-channels-view"
import { UserChannelsView } from "./views/user-channels-view"
import { PublicChannelView } from "./views/public-channel-view"
import { UserChannelView } from "./views/user-channel-view"
import { PublicVideoView } from "./views/public-video-view"
import { UserAccountView } from "./views/user-account-view"
import { NotFoundView } from "./views/not-found-view"
import { VideoInfo } from "@/types"
import { useEffect } from "react"
import { usePathname, useRouter } from "next/navigation"
import { TubeLayout } from "./interface/tube-layout"
// this is where we transition from the server-side space
// and the client-side space
// basically, all the views are generated in client-side space
// so the role of Main is to map server-side provided params
// to the Zustand store (client-side)
//
// one benefit of doing this is that we will able to add some animations/transitions
// more easily
export function Main({
video
}: {
// server side params
video?: VideoInfo
}) {
const pathname = usePathname()
const router = useRouter()
const setCurrentVideo = useStore(s => s.setCurrentVideo)
const setView = useStore(s => s.setView)
const setPathname = useStore(s => s.setPathname)
const videoId = `${video?.id || ""}`
// console.log("Main video= "+ videoId)
useEffect(() => {
// note: it is important to ALWAYS set the current video to videoId
// even if it's undefined
setCurrentVideo(video)
if (videoId) {
// this is a hack for hugging face:
// we allow the ?v=<id> param on the root of the domain
if (pathname !== "/watch") {
// console.log("we are on huggingface apparently!")
router.replace(`/watch?v=${videoId}`)
}
}
}, [videoId])
useEffect(() => {
setPathname(pathname)
}, [pathname])
const view = useStore(s => s.view)
return (
<TubeLayout>
{view === "home" && <HomeView />}
{view === "public_video" && <PublicVideoView />}
{view === "public_channels" && <PublicChannelsView />}
{view === "public_channel" && <PublicChannelView />}
{view === "user_channels" && <UserChannelsView />}
{/*view === "user_videos" && <UserVideosView />*/}
{view === "user_channel" && <UserChannelView />}
{view === "user_account" && <UserAccountView />}
{view === "not_found" && <NotFoundView />}
</TubeLayout>
)
}