-
-
Notifications
You must be signed in to change notification settings - Fork 235
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: move highlights feed into organism component
- Loading branch information
1 parent
4810ee7
commit 7d0fd7f
Showing
3 changed files
with
278 additions
and
270 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,270 @@ | ||
import { useEffect, useState } from "react"; | ||
import { useRouter } from "next/router"; | ||
import Link from "next/link"; | ||
import formatDistanceToNowStrict from "date-fns/formatDistanceToNowStrict"; | ||
import clsx from "clsx"; | ||
|
||
import useSupabaseAuth from "lib/hooks/useSupabaseAuth"; | ||
import { useFetchAllHighlights } from "lib/hooks/useFetchAllHighlights"; | ||
import { useFetchHighlightRepos } from "lib/hooks/useFetchHiglightRepos"; | ||
import useFetchAllEmojis from "lib/hooks/useFetchAllEmojis"; | ||
import { useFetchFollowersHighlightRepos } from "lib/hooks/useFetchFollowingHighlightRepos"; | ||
import { useFetchUser } from "lib/hooks/useFetchUser"; | ||
|
||
import { WithPageLayout } from "interfaces/with-page-layout"; | ||
import ProfileLayout from "layouts/profile"; | ||
import SEO from "layouts/SEO/SEO"; | ||
|
||
import { Dialog, DialogCloseButton, DialogContent } from "components/molecules/Dialog/dialog"; | ||
import Avatar from "components/atoms/Avatar/avatar"; | ||
import { Tabs, TabsContent, TabsList, TabsTrigger } from "components/atoms/Tabs/tabs"; | ||
import ContributorHighlightCard from "components/molecules/ContributorHighlight/contributor-highlight-card"; | ||
import HighlightInputForm from "components/molecules/HighlightInput/highlight-input-form"; | ||
import HighlightsFilterCard from "components/molecules/HighlightsFeedCard/highlights-filter-card"; | ||
import Pagination from "components/molecules/Pagination/pagination"; | ||
import PaginationResults from "components/molecules/PaginationResults/pagination-result"; | ||
import FollowingHighlightWrapper from "components/organisms/FollowersHighlightWrapper/following-highlight-wrapper"; | ||
import HomeHighlightsWrapper from "components/organisms/HomeHighlightsWrapper/home-highlights-wrapper"; | ||
import NewsletterForm from "components/molecules/NewsletterForm/newsletter-form"; | ||
import UserCard, { MetaObj } from "components/atoms/UserCard/user-card"; | ||
import FeaturedHighlightsPanel from "components/molecules/FeaturedHighlightsPanel/featured-highlights-panel"; | ||
import { useFetchFeaturedHighlights } from "lib/hooks/useFetchFeaturedHighlights"; | ||
|
||
type activeTabType = "home" | "following"; | ||
type highlightReposType = { repoName: string; repoIcon: string; full_name: string }; | ||
|
||
interface HighlightSSRProps { | ||
highlight: DbHighlight | null; | ||
} | ||
|
||
const Feeds: WithPageLayout<HighlightSSRProps> = (props: HighlightSSRProps) => { | ||
const { user } = useSupabaseAuth(); | ||
const { data: repos } = useFetchHighlightRepos(); | ||
|
||
const { data: featuredHighlights } = useFetchFeaturedHighlights(); | ||
|
||
const repoTofilterList = (repos: { full_name: string }[]): highlightReposType[] => { | ||
const filtersArray = repos.map(({ full_name }) => { | ||
const [orgName, repo] = full_name.split("/"); | ||
return { repoName: repo, repoIcon: `https://www.github.com/${orgName}.png?size=300`, full_name }; | ||
}); | ||
|
||
return filtersArray; | ||
}; | ||
|
||
const router = useRouter(); | ||
const [openSingleHighlight, setOpenSingleHighlight] = useState(false); | ||
const [selectedRepo, setSelectedRepo] = useState(""); | ||
const [activeTab, setActiveTab] = useState<activeTabType>("home"); | ||
const [repoList, setRepoList] = useState<highlightReposType[]>(repoTofilterList(repos as highlightReposType[])); | ||
const [hydrated, setHydrated] = useState(false); | ||
|
||
const singleHighlight = props.highlight; | ||
const ogImage = props?.highlight | ||
? `${process.env.NEXT_PUBLIC_OPENGRAPH_URL}/highlights/${props.highlight.id}` | ||
: undefined; | ||
|
||
const { data: followersRepo } = useFetchFollowersHighlightRepos(); | ||
|
||
const { data, mutate, setPage, isLoading, meta } = useFetchAllHighlights(selectedRepo); | ||
const { data: emojis } = useFetchAllEmojis(); | ||
const { data: loggedInUser, isLoading: loggedInUserLoading } = useFetchUser(user?.user_metadata.user_name as string); | ||
|
||
const { followers_count, following_count, highlights_count } = loggedInUser || {}; | ||
|
||
const userMetaArray = [ | ||
{ name: "Followers", count: followers_count ?? 0 }, | ||
{ name: "Following", count: following_count ?? 0 }, | ||
{ name: "Highlights", count: highlights_count ?? 0 }, | ||
]; | ||
|
||
useEffect(() => { | ||
setSelectedRepo(""); | ||
if (activeTab === "home") { | ||
setRepoList(repoTofilterList(repos)); | ||
} else if (activeTab === "following") { | ||
setRepoList(repoTofilterList(followersRepo)); | ||
} | ||
}, [activeTab, followersRepo, repos]); | ||
|
||
useEffect(() => { | ||
console.log("id", props.highlight?.id); | ||
if (selectedRepo) { | ||
router.push(`/feed?repo=${selectedRepo}`); | ||
setPage(1); | ||
} | ||
if (props.highlight?.id) { | ||
setOpenSingleHighlight(true); | ||
router.push(`/feed/${props.highlight?.id}`); | ||
} | ||
|
||
if (!selectedRepo && !props.highlight?.id) { | ||
router.push("/feed"); | ||
setPage(1); | ||
} | ||
}, [selectedRepo, props.highlight?.id]); | ||
|
||
useEffect(() => { | ||
setHydrated(true); | ||
}, []); | ||
|
||
if (!hydrated) | ||
return ( | ||
<> | ||
<SEO | ||
title={`${props?.highlight ? "Highlight | OpenSauced" : "Highlights | OpenSauced"}`} | ||
description={`${props?.highlight?.highlight || "OpenSauced Highlight"}`} | ||
image={ogImage} | ||
twitterCard="summary_large_image" | ||
/> | ||
</> | ||
); | ||
|
||
return ( | ||
<> | ||
<SEO | ||
title={`${props?.highlight ? "Highlight | OpenSauced" : "Highlights | OpenSauced"}`} | ||
description={`${props?.highlight?.highlight || "OpenSauced Highlight"}`} | ||
image={ogImage} | ||
twitterCard="summary_large_image" | ||
/> | ||
<div className="container flex flex-col gap-16 px-2 pt-12 mx-auto md:px-16 lg:justify-end md:flex-row"> | ||
<div className="flex-col flex-1 hidden gap-8 mt-12 md:flex"> | ||
{user && ( | ||
<div> | ||
<UserCard | ||
loading={loggedInUserLoading} | ||
username={loggedInUser?.login as string} | ||
meta={userMetaArray as MetaObj[]} | ||
name={loggedInUser?.name as string} | ||
/> | ||
</div> | ||
)} | ||
</div> | ||
{singleHighlight && ( | ||
<Dialog | ||
open={openSingleHighlight} | ||
onOpenChange={(open) => { | ||
if (!open) { | ||
setOpenSingleHighlight(false); | ||
router.push("/feed"); | ||
} | ||
}} | ||
> | ||
<DialogContent className=" sm:max-w-[80%] w-full sm:max-h-screen "> | ||
<div className="flex flex-col gap-8 mx-auto mt-10"> | ||
<div className="flex flex-col gap-6 px-3 "> | ||
<div className="flex items-center gap-3 "> | ||
<Link href={`/user/${singleHighlight.login}`} className="flex items-center gap-3"> | ||
<Avatar | ||
alt="user profile avatar" | ||
isCircle | ||
size="sm" | ||
avatarURL={`https://www.github.com/${singleHighlight.login}.png?size=300`} | ||
/> | ||
<strong>{singleHighlight.login}</strong> | ||
</Link> | ||
<span className="text-xs font-normal text-light-slate-11"> | ||
{formatDistanceToNowStrict(new Date(singleHighlight.created_at), { | ||
addSuffix: true, | ||
})} | ||
</span> | ||
<DialogCloseButton onClick={() => router.push("/feed")} /> | ||
</div> | ||
|
||
<div className="w-full px-2 py-6 border bg-light-slate-1 md:px-6 lg:px-12 rounded-xl"> | ||
<ContributorHighlightCard | ||
emojis={emojis} | ||
title={singleHighlight.title} | ||
desc={singleHighlight.highlight} | ||
prLink={singleHighlight.url} | ||
user={singleHighlight.login} | ||
id={singleHighlight.id} | ||
shipped_date={singleHighlight.shipped_at} | ||
refreshCallBack={mutate} | ||
/> | ||
</div> | ||
</div> | ||
</div> | ||
</DialogContent> | ||
</Dialog> | ||
)} | ||
<Tabs | ||
onValueChange={(value) => { | ||
setActiveTab(value as activeTabType); | ||
}} | ||
defaultValue="home" | ||
className="md:flex-[2] " | ||
> | ||
<TabsList className={clsx("justify-start w-full border-b", !user && "hidden")}> | ||
<TabsTrigger | ||
className="data-[state=active]:border-sauced-orange data-[state=active]:border-b-2 text-2xl" | ||
value="home" | ||
> | ||
Home | ||
</TabsTrigger> | ||
<TabsTrigger | ||
className="data-[state=active]:border-sauced-orange data-[state=active]:border-b-2 text-2xl" | ||
value="following" | ||
> | ||
Following | ||
</TabsTrigger> | ||
</TabsList> | ||
|
||
{user && ( | ||
<div className="lg:gap-x-3 px-3 pt-4 flex max-w-[48rem]"> | ||
<div className="hidden lg:inline-flex pt-[0.4rem]"> | ||
<Avatar | ||
alt="user profile avatar" | ||
isCircle | ||
size="sm" | ||
avatarURL={`https://www.github.com/${user?.user_metadata.user_name}.png?size=300`} | ||
/> | ||
</div> | ||
|
||
<HighlightInputForm refreshCallback={mutate} /> | ||
</div> | ||
)} | ||
<TabsContent value="home"> | ||
<HomeHighlightsWrapper emojis={emojis} mutate={mutate} highlights={data} loading={isLoading} /> | ||
{meta.pageCount > 1 && ( | ||
<div className="mt-10 max-w-[48rem] flex px-2 items-center justify-between"> | ||
<div className="flex items-center w-max gap-x-4"> | ||
<PaginationResults metaInfo={meta} total={meta.itemCount} entity={"highlights"} /> | ||
</div> | ||
<Pagination | ||
pages={[]} | ||
totalPage={meta.pageCount} | ||
page={meta.page} | ||
pageSize={meta.itemCount} | ||
goToPage | ||
hasNextPage={meta.hasNextPage} | ||
hasPreviousPage={meta.hasPreviousPage} | ||
onPageChange={function (page: number): void { | ||
setPage(page); | ||
}} | ||
/> | ||
</div> | ||
)} | ||
</TabsContent> | ||
<TabsContent value="following"> | ||
<FollowingHighlightWrapper selectedFilter={selectedRepo} emojis={emojis} /> | ||
</TabsContent> | ||
</Tabs> | ||
<div className="hidden gap-6 mt-10 md:flex-1 md:flex md:flex-col"> | ||
{repoList && repoList.length > 0 && ( | ||
<HighlightsFilterCard selectedFilter={selectedRepo} setSelected={setSelectedRepo} repos={repoList} /> | ||
)} | ||
|
||
{featuredHighlights && featuredHighlights.length > 0 && ( | ||
<FeaturedHighlightsPanel highlights={featuredHighlights} /> | ||
)} | ||
<NewsletterForm /> | ||
</div> | ||
</div> | ||
</> | ||
); | ||
}; | ||
|
||
Feeds.PageLayout = ProfileLayout; | ||
export default Feeds; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.