mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
feat: add search in collections
This commit is contained in:
parent
c9a1ec5324
commit
048bed7085
3 changed files with 48 additions and 25 deletions
|
@ -13,7 +13,7 @@ const profile_lists = {
|
||||||
};
|
};
|
||||||
|
|
||||||
export const ReleaseLink169 = (props: any) => {
|
export const ReleaseLink169 = (props: any) => {
|
||||||
const grade = props.grade.toFixed(1);
|
const grade = props.grade ? props.grade.toFixed(1) : null;
|
||||||
const profile_list_status = props.profile_list_status;
|
const profile_list_status = props.profile_list_status;
|
||||||
let user_list = null;
|
let user_list = null;
|
||||||
if (profile_list_status != null || profile_list_status != 0) {
|
if (profile_list_status != null || profile_list_status != 0) {
|
||||||
|
@ -45,20 +45,24 @@ export const ReleaseLink169 = (props: any) => {
|
||||||
"
|
"
|
||||||
/>
|
/>
|
||||||
<div className="absolute flex flex-wrap items-start justify-start gap-0.5 sm:gap-1 left-0 top-0 p-1 sm:p-2">
|
<div className="absolute flex flex-wrap items-start justify-start gap-0.5 sm:gap-1 left-0 top-0 p-1 sm:p-2">
|
||||||
<Chip
|
{grade ? (
|
||||||
bg_color={
|
<Chip
|
||||||
grade == 0
|
bg_color={
|
||||||
? "hidden"
|
grade == 0
|
||||||
: grade < 2
|
? "hidden"
|
||||||
? "bg-red-500"
|
: grade < 2
|
||||||
: grade < 3
|
? "bg-red-500"
|
||||||
? "bg-orange-500"
|
: grade < 3
|
||||||
: grade < 4
|
? "bg-orange-500"
|
||||||
? "bg-yellow-500"
|
: grade < 4
|
||||||
: "bg-green-500"
|
? "bg-yellow-500"
|
||||||
}
|
: "bg-green-500"
|
||||||
name={grade}
|
}
|
||||||
/>
|
name={grade}
|
||||||
|
/>
|
||||||
|
) : (
|
||||||
|
""
|
||||||
|
)}
|
||||||
{user_list && (
|
{user_list && (
|
||||||
<Chip bg_color={user_list.bg_color} name={user_list.name} />
|
<Chip bg_color={user_list.bg_color} name={user_list.name} />
|
||||||
)}
|
)}
|
||||||
|
|
|
@ -13,7 +13,7 @@ const profile_lists = {
|
||||||
};
|
};
|
||||||
|
|
||||||
export const ReleaseLink169Poster = (props: any) => {
|
export const ReleaseLink169Poster = (props: any) => {
|
||||||
const grade = props.grade.toFixed(1);
|
const grade = props.grade ? props.grade.toFixed(1) : null;
|
||||||
const profile_list_status = props.profile_list_status;
|
const profile_list_status = props.profile_list_status;
|
||||||
let user_list = null;
|
let user_list = null;
|
||||||
if (profile_list_status != null || profile_list_status != 0) {
|
if (profile_list_status != null || profile_list_status != 0) {
|
||||||
|
@ -56,7 +56,7 @@ export const ReleaseLink169Poster = (props: any) => {
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div className="flex flex-wrap gap-1 mt-1">
|
<div className="flex flex-wrap gap-1 mt-1">
|
||||||
<Chip
|
{grade ? <Chip
|
||||||
bg_color={
|
bg_color={
|
||||||
grade == 0
|
grade == 0
|
||||||
? "hidden"
|
? "hidden"
|
||||||
|
@ -69,7 +69,7 @@ export const ReleaseLink169Poster = (props: any) => {
|
||||||
: "bg-green-500"
|
: "bg-green-500"
|
||||||
}
|
}
|
||||||
name={grade}
|
name={grade}
|
||||||
/>
|
/> : ""}
|
||||||
{user_list && (
|
{user_list && (
|
||||||
<Chip bg_color={user_list.bg_color} name={user_list.name} />
|
<Chip bg_color={user_list.bg_color} name={user_list.name} />
|
||||||
)}
|
)}
|
||||||
|
|
|
@ -9,6 +9,7 @@ import { useRouter } from "next/navigation";
|
||||||
import { useSearchParams } from "next/navigation";
|
import { useSearchParams } from "next/navigation";
|
||||||
import { useUserStore } from "../store/auth";
|
import { useUserStore } from "../store/auth";
|
||||||
import { Button, Dropdown, Modal } from "flowbite-react";
|
import { Button, Dropdown, Modal } from "flowbite-react";
|
||||||
|
import { CollectionsSection } from "#/components/CollectionsSection/CollectionsSection";
|
||||||
|
|
||||||
const fetcher = async (url: string) => {
|
const fetcher = async (url: string) => {
|
||||||
const res = await fetch(url);
|
const res = await fetch(url);
|
||||||
|
@ -94,10 +95,10 @@ export function SearchPage() {
|
||||||
const userStore = useUserStore();
|
const userStore = useUserStore();
|
||||||
|
|
||||||
const getKey = (pageIndex: number, previousPageData: any) => {
|
const getKey = (pageIndex: number, previousPageData: any) => {
|
||||||
if (where == "list") {
|
if (where == "releases") {
|
||||||
if (previousPageData && !previousPageData.content.length) return null;
|
|
||||||
} else {
|
|
||||||
if (previousPageData && !previousPageData.releases.length) return null;
|
if (previousPageData && !previousPageData.releases.length) return null;
|
||||||
|
} else {
|
||||||
|
if (previousPageData && !previousPageData.content.length) return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
const url = new URL("/api/search", window.location.origin);
|
const url = new URL("/api/search", window.location.origin);
|
||||||
|
@ -134,13 +135,13 @@ export function SearchPage() {
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (data) {
|
if (data) {
|
||||||
let allReleases = [];
|
let allReleases = [];
|
||||||
if (where == "list") {
|
if (where == "releases") {
|
||||||
for (let i = 0; i < data.length; i++) {
|
for (let i = 0; i < data.length; i++) {
|
||||||
allReleases.push(...data[i].content);
|
allReleases.push(...data[i].releases);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
for (let i = 0; i < data.length; i++) {
|
for (let i = 0; i < data.length; i++) {
|
||||||
allReleases.push(...data[i].releases);
|
allReleases.push(...data[i].content);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
setContent(allReleases);
|
setContent(allReleases);
|
||||||
|
@ -235,7 +236,21 @@ export function SearchPage() {
|
||||||
{data && data[0].related && <RelatedSection {...data[0].related} />}
|
{data && data[0].related && <RelatedSection {...data[0].related} />}
|
||||||
{content ? (
|
{content ? (
|
||||||
content.length > 0 ? (
|
content.length > 0 ? (
|
||||||
<ReleaseSection sectionTitle="Найденные релизы" content={content} />
|
<>
|
||||||
|
{where == "collections" ? (
|
||||||
|
<CollectionsSection
|
||||||
|
sectionTitle="Найденные Коллекции"
|
||||||
|
content={content}
|
||||||
|
/>
|
||||||
|
) : where == "profiles" ? (
|
||||||
|
<>Not Implemented Yet</>
|
||||||
|
) : (
|
||||||
|
<ReleaseSection
|
||||||
|
sectionTitle="Найденные релизы"
|
||||||
|
content={content}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
</>
|
||||||
) : (
|
) : (
|
||||||
<div className="flex flex-col items-center justify-center min-w-full gap-4 mt-12 text-xl">
|
<div className="flex flex-col items-center justify-center min-w-full gap-4 mt-12 text-xl">
|
||||||
<span className="w-24 h-24 iconify-color twemoji--crying-cat"></span>
|
<span className="w-24 h-24 iconify-color twemoji--crying-cat"></span>
|
||||||
|
@ -284,6 +299,7 @@ export function SearchPage() {
|
||||||
isAuth={userStore.isAuth}
|
isAuth={userStore.isAuth}
|
||||||
searchBy={searchBy}
|
searchBy={searchBy}
|
||||||
setSearchBy={setSearchBy}
|
setSearchBy={setSearchBy}
|
||||||
|
setContent={setContent}
|
||||||
/>
|
/>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
|
@ -299,6 +315,7 @@ const FiltersModal = (props: {
|
||||||
isAuth: boolean;
|
isAuth: boolean;
|
||||||
searchBy: string;
|
searchBy: string;
|
||||||
setSearchBy: any;
|
setSearchBy: any;
|
||||||
|
setContent: any;
|
||||||
}) => {
|
}) => {
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
const [where, setWhere] = useState(props.where);
|
const [where, setWhere] = useState(props.where);
|
||||||
|
@ -335,6 +352,8 @@ const FiltersModal = (props: {
|
||||||
props.setSearchBy("name");
|
props.setSearchBy("name");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
props.setContent(null);
|
||||||
|
|
||||||
const url = new URL(`/search?${Params.toString()}`, window.location.origin);
|
const url = new URL(`/search?${Params.toString()}`, window.location.origin);
|
||||||
router.push(url.toString());
|
router.push(url.toString());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue