mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
refactor(history-page): use ReleaseOverview component on search page
This commit is contained in:
parent
2d1b311feb
commit
f84c923ab7
1 changed files with 3 additions and 19 deletions
|
@ -4,7 +4,7 @@ import { getData } from "@/app/api/api-utils";
|
|||
import { endpoints } from "@/app/api/config";
|
||||
import { useEffect, useState, useCallback } from "react";
|
||||
import { usePathname, useRouter } from "next/navigation";
|
||||
import { CardList } from "@/app/components/CardList/CardList";
|
||||
import ReleasesOverview from "../components/ReleasesOverview/ReleasesOverview";
|
||||
import { useSearchParams } from "next/navigation";
|
||||
|
||||
function saveSearches(search) {
|
||||
|
@ -117,24 +117,8 @@ export default function Search() {
|
|||
</div>
|
||||
|
||||
{releases ? (
|
||||
releases.lenght > 0 ? (
|
||||
<>
|
||||
<div className="grid">
|
||||
<CardList data={releases} />
|
||||
</div>
|
||||
|
||||
<nav className="large-margin center-align">
|
||||
<button
|
||||
className="large"
|
||||
onClick={() => {
|
||||
setPage(page + 1);
|
||||
}}
|
||||
>
|
||||
<i>add</i>
|
||||
<span>загрузить ещё</span>
|
||||
</button>
|
||||
</nav>
|
||||
</>
|
||||
releases.length > 0 ? (
|
||||
<ReleasesOverview page={page} setPage={setPage} releases={releases} />
|
||||
) : (
|
||||
<div className="absolute padding primary center middle small-round">
|
||||
<i className="extra">search</i>
|
||||
|
|
Loading…
Add table
Reference in a new issue