fix: remove search box from user statistic page lists view

This commit is contained in:
Kentai Radiquum 2024-12-05 20:30:03 +05:00
parent d46075c88c
commit 2e037a99fe
Signed by: Radiquum
GPG key ID: 858E8EE696525EED

View file

@ -94,6 +94,7 @@ export function BookmarksCategoryPage(props: any) {
return (
<>
{!props.profile_id ? (
<form
className="flex-1 max-w-full mx-4"
onSubmit={(e) => {
@ -142,13 +143,81 @@ export function BookmarksCategoryPage(props: any) {
</button>
</div>
</form>
) : (
""
)}
<div className="m-4 overflow-auto">
<Button.Group>
<Button className="whitespace-nowrap" disabled={props.slug == "watching"} color="light" onClick={() => router.push(props.profile_id ? `/profile/${props.profile_id}/bookmarks/watching` : "/bookmarks/watching")}>{props.SectionTitleMapping["watching"]}</Button>
<Button className="whitespace-nowrap" disabled={props.slug == "planned"} color="light" onClick={() => router.push(props.profile_id ? `/profile/${props.profile_id}/bookmarks/planned` : "/bookmarks/planned")}>{props.SectionTitleMapping["planned"]}</Button>
<Button className="whitespace-nowrap" disabled={props.slug == "watched"} color="light" onClick={() => router.push(props.profile_id ? `/profile/${props.profile_id}/bookmarks/watched` : "/bookmarks/watched")}>{props.SectionTitleMapping["watched"]}</Button>
<Button className="whitespace-nowrap" disabled={props.slug == "delayed"} color="light" onClick={() => router.push(props.profile_id ? `/profile/${props.profile_id}/bookmarks/delayed` : "/bookmarks/delayed")}>{props.SectionTitleMapping["delayed"]}</Button>
<Button className="whitespace-nowrap" disabled={props.slug == "abandoned"} color="light" onClick={() => router.push(props.profile_id ? `/profile/${props.profile_id}/bookmarks/abandoned` : "/bookmarks/abandoned")}>{props.SectionTitleMapping["abandoned"]}</Button>
<Button
className="whitespace-nowrap"
disabled={props.slug == "watching"}
color="light"
onClick={() =>
router.push(
props.profile_id
? `/profile/${props.profile_id}/bookmarks/watching`
: "/bookmarks/watching"
)
}
>
{props.SectionTitleMapping["watching"]}
</Button>
<Button
className="whitespace-nowrap"
disabled={props.slug == "planned"}
color="light"
onClick={() =>
router.push(
props.profile_id
? `/profile/${props.profile_id}/bookmarks/planned`
: "/bookmarks/planned"
)
}
>
{props.SectionTitleMapping["planned"]}
</Button>
<Button
className="whitespace-nowrap"
disabled={props.slug == "watched"}
color="light"
onClick={() =>
router.push(
props.profile_id
? `/profile/${props.profile_id}/bookmarks/watched`
: "/bookmarks/watched"
)
}
>
{props.SectionTitleMapping["watched"]}
</Button>
<Button
className="whitespace-nowrap"
disabled={props.slug == "delayed"}
color="light"
onClick={() =>
router.push(
props.profile_id
? `/profile/${props.profile_id}/bookmarks/delayed`
: "/bookmarks/delayed"
)
}
>
{props.SectionTitleMapping["delayed"]}
</Button>
<Button
className="whitespace-nowrap"
disabled={props.slug == "abandoned"}
color="light"
onClick={() =>
router.push(
props.profile_id
? `/profile/${props.profile_id}/bookmarks/abandoned`
: "/bookmarks/abandoned"
)
}
>
{props.SectionTitleMapping["abandoned"]}
</Button>
</Button.Group>
</div>
<div className="flex items-center justify-between px-4 py-2 border-b-2 border-black dark:border-white">