mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-05 07:44:38 +00:00
frontend: add load more button on index page. add title trimming for long release titles.
This commit is contained in:
parent
37d4b181f5
commit
2615c47f0c
4 changed files with 74 additions and 24 deletions
14
frontend/app/components/CardList/CardList.jsx
Normal file
14
frontend/app/components/CardList/CardList.jsx
Normal file
|
@ -0,0 +1,14 @@
|
|||
import { ReleaseCard } from "@/app/components/ReleaseCard/ReleaseCard";
|
||||
|
||||
export const CardList = (props) => {
|
||||
return props.data.map((item) => {
|
||||
return (
|
||||
<ReleaseCard key={item.id}
|
||||
id={item.id}
|
||||
title={item.title_ru}
|
||||
poster={item.image}
|
||||
description={item.description}
|
||||
/>
|
||||
);
|
||||
});
|
||||
};
|
|
@ -45,7 +45,7 @@ export const NavigationRail = () => {
|
|||
<div>share</div>
|
||||
</a> */}
|
||||
<span className="max"></span>
|
||||
<button className="circle transparent end-align" onClick={() => themeStore.changeTheme(themeStore.theme == "dark" ? "light" : "dark")}>
|
||||
<button className="circle transparent" onClick={() => themeStore.changeTheme(themeStore.theme == "dark" ? "light" : "dark")}>
|
||||
<i>palette</i>
|
||||
</button>
|
||||
</nav>
|
|
@ -8,8 +8,8 @@ export const ReleaseCard = (props) => {
|
|||
<article className="no-padding round fill" style={{"aspectRatio": "9/16"}}>
|
||||
<img className="responsive large top-round" src={props.poster} />
|
||||
<div className="padding">
|
||||
<h6>{props.title}</h6>
|
||||
<p>{props.description}</p>
|
||||
<h6>{`${props.title.substring(0, 36)}${[...props.title].length > 36 ? "..." : ""}`}</h6>
|
||||
<p>{`${props.description}${[...props.description].length > 160 ? "..." : ""}`}</p>
|
||||
</div>
|
||||
</article>
|
||||
</Link>
|
|
@ -1,26 +1,61 @@
|
|||
"use client";
|
||||
|
||||
import { ReleaseCard } from "./components/ReleaseCard/ReleaseCard";
|
||||
import { getData } from "./api/api-utils";
|
||||
import { endpoints } from "./api/config";
|
||||
import { useEffect, useState } from "react";
|
||||
import { useEffect, useState, useCallback } from "react";
|
||||
import { usePathname, useRouter } from "next/navigation";
|
||||
import { CardList } from "./components/CardList/CardList";
|
||||
|
||||
import { useSearchParams } from "next/navigation";
|
||||
import Link from "next/link";
|
||||
|
||||
export default function Home() {
|
||||
const router = useRouter();
|
||||
const pathname = usePathname();
|
||||
|
||||
const [list, setList] = useState();
|
||||
const [releases, setReleases] = useState();
|
||||
const [page, setPage] = useState(0);
|
||||
|
||||
const searchParams = useSearchParams();
|
||||
const [list, setList] = useState("last");
|
||||
const [releases, setReleases] = useState(null);
|
||||
const createQueryString = useCallback(
|
||||
(name, value) => {
|
||||
const params = new URLSearchParams(searchParams.toString());
|
||||
params.set(name, value);
|
||||
|
||||
return params.toString();
|
||||
},
|
||||
[searchParams]
|
||||
);
|
||||
|
||||
useEffect(() => {
|
||||
async function getReleases() {
|
||||
setReleases(await getData(endpoints.index[list]));
|
||||
}
|
||||
setList(searchParams.get("list") || "last");
|
||||
}, []);
|
||||
|
||||
async function getReleases() {
|
||||
const data = await getData(`${endpoints.index[list]}`);
|
||||
setReleases(data.content);
|
||||
}
|
||||
|
||||
async function getPage() {
|
||||
const data = await getData(`${endpoints.index[list]}?page=${page}`);
|
||||
setReleases([...releases, ...data.content]);
|
||||
}
|
||||
|
||||
useEffect(() => {
|
||||
router.push(pathname + "?" + createQueryString("list", list));
|
||||
setReleases(null);
|
||||
getReleases();
|
||||
setPage(0);
|
||||
if (list) {
|
||||
getReleases();
|
||||
}
|
||||
}, [list]);
|
||||
|
||||
useEffect(() => {
|
||||
if (list && releases) {
|
||||
getPage();
|
||||
}
|
||||
}, [page]);
|
||||
|
||||
return (
|
||||
<>
|
||||
<div>
|
||||
|
@ -59,19 +94,20 @@ export default function Home() {
|
|||
</div>
|
||||
|
||||
<div className="grid">
|
||||
{releases
|
||||
? releases.content.map((item) => {
|
||||
return (
|
||||
<ReleaseCard
|
||||
id={item.id}
|
||||
title={item.title_ru}
|
||||
poster={item.image}
|
||||
description={item.description}
|
||||
/>
|
||||
);
|
||||
})
|
||||
: ""}
|
||||
{releases ? <CardList data={releases} /> : <progress></progress>}
|
||||
</div>
|
||||
|
||||
<nav className="large-margin center-align">
|
||||
<button
|
||||
className="large"
|
||||
onClick={() => {
|
||||
setPage(page + 1);
|
||||
}}
|
||||
>
|
||||
<i>add</i>
|
||||
<span>загрузить ещё</span>
|
||||
</button>
|
||||
</nav>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue