/* * Kyoo - A portable and vast media library solution. * Copyright (c) Kyoo. * * See AUTHORS.md and LICENSE file in the project root for full license information. * * Kyoo is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * any later version. * * Kyoo is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Kyoo. If not, see . */ import { type LibraryItem, LibraryItemP, type QueryIdentifier, type QueryPage, getDisplayDate, } from "@kyoo/models"; import { type ComponentProps, useState } from "react"; import { createParam } from "solito"; import { InfiniteFetch } from "../fetch-infinite"; import { DefaultLayout } from "../layout"; import { ItemGrid } from "./grid"; import { BrowseSettings } from "./header"; import { ItemList } from "./list"; import { MediaTypeAll, Layout, MediaTypes, SortBy, SortOrd, MediaTypeKey, MediaType, } from "./types"; const { useParam } = createParam<{ sortBy?: string; mediaType?: string }>(); export const itemMap = ( item: LibraryItem, ): ComponentProps & ComponentProps => ({ slug: item.slug, name: item.name, subtitle: item.kind !== "collection" ? getDisplayDate(item) : null, href: item.href, poster: item.poster, thumbnail: item.thumbnail, watchStatus: item.kind !== "collection" ? item.watchStatus?.status ?? null : null, type: item.kind, watchPercent: item.kind !== "collection" ? item.watchStatus?.watchedPercent ?? null : null, unseenEpisodesCount: item.kind === "show" ? item.watchStatus?.unseenEpisodesCount ?? item.episodesCount! : null, }); const query = ( mediaType: MediaType, sortKey?: SortBy, sortOrd?: SortOrd, ): QueryIdentifier => { const filter = mediaType !== MediaTypeAll ? `kind eq ${mediaType.key}` : undefined; return { parser: LibraryItemP, path: ["items"], infinite: true, params: { sortBy: sortKey ? `${sortKey}:${sortOrd ?? "asc"}` : "name:asc", filter, fields: ["watchStatus", "episodesCount"], }, }; }; const getMediaTypeFromParam = (mediaTypeParam?: string): MediaType => { const mediaTypeKey = (mediaTypeParam as MediaTypeKey) || MediaTypeKey.All; return MediaTypes.find((t) => t.key === mediaTypeKey) ?? MediaTypeAll; }; export const BrowsePage: QueryPage = () => { const [sort, setSort] = useParam("sortBy"); const [mediaTypeParam, setMediaTypeKey] = useParam("mediaType"); const sortKey = (sort?.split(":")[0] as SortBy) || SortBy.Name; const sortOrd = (sort?.split(":")[1] as SortOrd) || SortOrd.Asc; const [layout, setLayout] = useState(Layout.Grid); const mediaType = getMediaTypeFromParam(mediaTypeParam); const LayoutComponent = layout === Layout.Grid ? ItemGrid : ItemList; return ( { setSort(`${key}:${ord}`); }} mediaType={mediaType} availableMediaTypes={MediaTypes} setMediaType={(mediaType) => { setMediaTypeKey(mediaType.key); }} layout={layout} setLayout={setLayout} /> } Render={({ item }) => } Loader={LayoutComponent.Loader} /> ); }; BrowsePage.getLayout = DefaultLayout; BrowsePage.getFetchUrls = ({ mediaType, sortBy }) => { const mediaTypeObj = getMediaTypeFromParam(mediaType); return [query(mediaTypeObj, sortBy?.split("-")[0] as SortBy, sortBy?.split("-")[1] as SortOrd)]; };