mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
feat: add faster navigation between Index Category and fix films had no category name
This commit is contained in:
parent
d8903ae300
commit
d3f966e62c
2 changed files with 12 additions and 0 deletions
|
@ -5,6 +5,7 @@ const SectionTitleMapping = {
|
||||||
finished: "Завершенные релизы",
|
finished: "Завершенные релизы",
|
||||||
ongoing: "В эфире",
|
ongoing: "В эфире",
|
||||||
announce: "Анонсированные релизы",
|
announce: "Анонсированные релизы",
|
||||||
|
films: "Фильмы",
|
||||||
};
|
};
|
||||||
|
|
||||||
export async function generateMetadata({ params }) {
|
export async function generateMetadata({ params }) {
|
||||||
|
|
|
@ -6,12 +6,14 @@ import { useScrollPosition } from "#/hooks/useScrollPosition";
|
||||||
import { useUserStore } from "../store/auth";
|
import { useUserStore } from "../store/auth";
|
||||||
import { _FetchHomePageReleases } from "#/api/utils";
|
import { _FetchHomePageReleases } from "#/api/utils";
|
||||||
import { Button } from "flowbite-react";
|
import { Button } from "flowbite-react";
|
||||||
|
import { useRouter } from "next/navigation";
|
||||||
|
|
||||||
export function IndexCategoryPage(props) {
|
export function IndexCategoryPage(props) {
|
||||||
const token = useUserStore((state) => state.token);
|
const token = useUserStore((state) => state.token);
|
||||||
const [isLoading, setIsLoading] = useState(true);
|
const [isLoading, setIsLoading] = useState(true);
|
||||||
const [content, setContent] = useState(null);
|
const [content, setContent] = useState(null);
|
||||||
const [page, setPage] = useState(0);
|
const [page, setPage] = useState(0);
|
||||||
|
const router = useRouter();
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
async function _loadInitialReleases() {
|
async function _loadInitialReleases() {
|
||||||
|
@ -50,6 +52,15 @@ export function IndexCategoryPage(props) {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
|
<div className="mb-4 overflow-auto">
|
||||||
|
<Button.Group>
|
||||||
|
<Button className="whitespace-nowrap" disabled={props.slug == "last"} color="light" onClick={() => router.push("/home/last")}>{props.SectionTitleMapping["last"]}</Button>
|
||||||
|
<Button className="whitespace-nowrap" disabled={props.slug == "finished"} color="light" onClick={() => router.push("/home/finished")}>{props.SectionTitleMapping["finished"]}</Button>
|
||||||
|
<Button className="whitespace-nowrap" disabled={props.slug == "ongoing"} color="light" onClick={() => router.push("/home/ongoing")}>{props.SectionTitleMapping["ongoing"]}</Button>
|
||||||
|
<Button className="whitespace-nowrap" disabled={props.slug == "announce"} color="light" onClick={() => router.push("/home/announce")}>{props.SectionTitleMapping["announce"]}</Button>
|
||||||
|
<Button className="whitespace-nowrap" disabled={props.slug == "films"} color="light" onClick={() => router.push("/home/films")}>{props.SectionTitleMapping["films"]}</Button>
|
||||||
|
</Button.Group>
|
||||||
|
</div>
|
||||||
{content && content.length > 0 ? (
|
{content && content.length > 0 ? (
|
||||||
<ReleaseSection
|
<ReleaseSection
|
||||||
sectionTitle={props.SectionTitleMapping[props.slug]}
|
sectionTitle={props.SectionTitleMapping[props.slug]}
|
||||||
|
|
Loading…
Add table
Reference in a new issue