mirror of
https://github.com/trafficlunar/tomodachi-share.git
synced 2026-05-13 13:17:45 +00:00
feat: time range select (#29)
Co-authored-by: AlexHelo <itsalexhelo@gmail.com>
This commit is contained in:
parent
b6839c8d21
commit
c14b8d5a93
4 changed files with 111 additions and 84 deletions
|
|
@ -9,7 +9,22 @@ export async function GET(request: NextRequest) {
|
||||||
const parsed = searchSchema.safeParse(Object.fromEntries(request.nextUrl.searchParams));
|
const parsed = searchSchema.safeParse(Object.fromEntries(request.nextUrl.searchParams));
|
||||||
if (!parsed.success) return NextResponse.json({ error: parsed.error.issues[0].message }, { status: 400 });
|
if (!parsed.success) return NextResponse.json({ error: parsed.error.issues[0].message }, { status: 400 });
|
||||||
|
|
||||||
const { q: query, sort, tags, exclude, platform, gender, makeup, allowCopying, quarantined, page = 1, limit = 24, parentPage, userId } = parsed.data;
|
const {
|
||||||
|
q: query,
|
||||||
|
sort,
|
||||||
|
tags,
|
||||||
|
exclude,
|
||||||
|
platform,
|
||||||
|
gender,
|
||||||
|
makeup,
|
||||||
|
allowCopying,
|
||||||
|
quarantined,
|
||||||
|
page = 1,
|
||||||
|
limit = 24,
|
||||||
|
parentPage,
|
||||||
|
userId,
|
||||||
|
timeRange,
|
||||||
|
} = parsed.data;
|
||||||
|
|
||||||
// My Likes page
|
// My Likes page
|
||||||
let miiIdsLiked: number[] | undefined = undefined;
|
let miiIdsLiked: number[] | undefined = undefined;
|
||||||
|
|
@ -55,6 +70,12 @@ export async function GET(request: NextRequest) {
|
||||||
...(makeup && { makeup: { equals: makeup } }),
|
...(makeup && { makeup: { equals: makeup } }),
|
||||||
// Quarantined
|
// Quarantined
|
||||||
...(!quarantined && !userId && { quarantined: false }),
|
...(!quarantined && !userId && { quarantined: false }),
|
||||||
|
// Time range
|
||||||
|
...(timeRange && {
|
||||||
|
createdAt: {
|
||||||
|
gte: new Date(Date.now() - { day: 86400000, week: 604800000, month: 2592000000, year: 31536000000 }[timeRange]),
|
||||||
|
},
|
||||||
|
}),
|
||||||
};
|
};
|
||||||
|
|
||||||
const select: Prisma.MiiSelect = {
|
const select: Prisma.MiiSelect = {
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ import { Icon } from "@iconify/react";
|
||||||
import LikeButton from "../../like-button";
|
import LikeButton from "../../like-button";
|
||||||
import { useStore } from "@nanostores/react";
|
import { useStore } from "@nanostores/react";
|
||||||
import { session } from "../../../session";
|
import { session } from "../../../session";
|
||||||
import Description from "../../description";
|
import TimeRangeSelect from "./time-range-select";
|
||||||
|
|
||||||
interface ApiResponse {
|
interface ApiResponse {
|
||||||
totalCount: number;
|
totalCount: number;
|
||||||
|
|
@ -19,14 +19,13 @@ interface ApiResponse {
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
userId?: number;
|
userId?: number;
|
||||||
parentPage?: "likes" | "admin";
|
parentPage?: "likes";
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function MiiList({ parentPage, userId }: Props) {
|
export default function MiiList({ parentPage, userId }: Props) {
|
||||||
const [searchParams] = useSearchParams();
|
const [searchParams] = useSearchParams();
|
||||||
const [data, setData] = useState<ApiResponse | null>(null);
|
const [data, setData] = useState<ApiResponse | null>(null);
|
||||||
const [loading, setLoading] = useState(true);
|
const [loading, setLoading] = useState(true);
|
||||||
const [acceptingAll, setAcceptingAll] = useState(false);
|
|
||||||
const [likedIds, setLikedIds] = useState<Set<number>>(new Set());
|
const [likedIds, setLikedIds] = useState<Set<number>>(new Set());
|
||||||
|
|
||||||
const $session = useStore(session);
|
const $session = useStore(session);
|
||||||
|
|
@ -60,28 +59,6 @@ export default function MiiList({ parentPage, userId }: Props) {
|
||||||
});
|
});
|
||||||
}, [searchParams, userId, parentPage, $session]);
|
}, [searchParams, userId, parentPage, $session]);
|
||||||
|
|
||||||
async function handleAcceptAll() {
|
|
||||||
if (!data) return;
|
|
||||||
setAcceptingAll(true);
|
|
||||||
try {
|
|
||||||
await Promise.all(
|
|
||||||
data.miis.map((mii) =>
|
|
||||||
fetch(`${import.meta.env.VITE_API_URL}/api/admin/accept-mii?id=${mii.id}`, {
|
|
||||||
method: "POST",
|
|
||||||
credentials: "include",
|
|
||||||
}),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
const params = new URLSearchParams(searchParams.toString());
|
|
||||||
if (userId) params.append("userId", userId.toString());
|
|
||||||
if (parentPage) params.append("parentPage", parentPage);
|
|
||||||
const res = await fetch(`${import.meta.env.VITE_API_URL}/api/mii/list?${params.toString()}`, { credentials: "include" });
|
|
||||||
if (res.ok) setData(await res.json());
|
|
||||||
} finally {
|
|
||||||
setAcceptingAll(false);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
{loading ? (
|
{loading ? (
|
||||||
|
|
@ -95,18 +72,9 @@ export default function MiiList({ parentPage, userId }: Props) {
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="relative flex items-center justify-end gap-2 w-full md:max-w-2/3 max-md:justify-center">
|
<div className="relative flex items-center justify-end gap-2 w-full md:max-w-2/3 max-md:justify-center">
|
||||||
{parentPage === "admin" && data.miis.length > 0 && (
|
|
||||||
<button
|
|
||||||
onClick={handleAcceptAll}
|
|
||||||
disabled={acceptingAll}
|
|
||||||
className="pill button flex items-center gap-1.5 px-3 py-1.5 bg-green-500! border-green-600! hover:bg-green-600! disabled:opacity-60 disabled:cursor-not-allowed text-white text-sm font-semibold rounded-xl shadow transition-colors"
|
|
||||||
>
|
|
||||||
<Icon icon="material-symbols:check-circle-rounded" className="text-base" />
|
|
||||||
{acceptingAll ? "Accepting…" : `Accept All`}
|
|
||||||
</button>
|
|
||||||
)}
|
|
||||||
<FilterMenu />
|
<FilterMenu />
|
||||||
<SortSelect />
|
<SortSelect />
|
||||||
|
<TimeRangeSelect />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
@ -114,7 +82,7 @@ export default function MiiList({ parentPage, userId }: Props) {
|
||||||
{data.miis.map((mii) => (
|
{data.miis.map((mii) => (
|
||||||
<div
|
<div
|
||||||
key={mii.id}
|
key={mii.id}
|
||||||
className={`flex flex-col relative bg-zinc-50 rounded-3xl border-2 shadow-lg p-[0.8rem] transition hover:scale-105 hover:bg-cyan-100 hover:border-cyan-600 ${mii.quarantined ? "border-red-300 bg-red-50!" : mii.in_queue && parentPage !== "admin" ? "border-zinc-400 opacity-70" : "border-zinc-300"}`}
|
className={`flex flex-col relative bg-zinc-50 rounded-3xl border-2 shadow-lg p-[0.8rem] transition hover:scale-105 hover:bg-cyan-100 hover:border-cyan-600 ${mii.quarantined ? "border-red-300 bg-red-50!" : mii.in_queue ? "border-zinc-400 opacity-70" : "border-zinc-300"}`}
|
||||||
>
|
>
|
||||||
{mii.in_queue && (
|
{mii.in_queue && (
|
||||||
<div className="absolute top-2 left-2 z-10 bg-zinc-500 text-white text-xs font-semibold px-2 py-1 rounded-full shadow-sm flex items-center gap-1">
|
<div className="absolute top-2 left-2 z-10 bg-zinc-500 text-white text-xs font-semibold px-2 py-1 rounded-full shadow-sm flex items-center gap-1">
|
||||||
|
|
@ -123,29 +91,15 @@ export default function MiiList({ parentPage, userId }: Props) {
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{parentPage !== "admin" ? (
|
<Link to={`/mii/${mii.id}`} className="overflow-hidden rounded-xl bg-zinc-300 shrink-0">
|
||||||
<Link to={`/mii/${mii.id}`} className="overflow-hidden rounded-xl bg-zinc-300 shrink-0">
|
<img
|
||||||
<img
|
src={`${import.meta.env.VITE_API_URL}/mii/${mii.id}/image?type=mii`}
|
||||||
src={`${import.meta.env.VITE_API_URL}/mii/${mii.id}/image?type=mii`}
|
width={240}
|
||||||
width={240}
|
height={160}
|
||||||
height={160}
|
alt="mii image"
|
||||||
alt="mii image"
|
className="w-full h-auto aspect-3/2 object-contain"
|
||||||
className="w-full h-auto aspect-3/2 object-contain"
|
/>
|
||||||
/>
|
</Link>
|
||||||
</Link>
|
|
||||||
) : (
|
|
||||||
<div className="grid grid-cols-2 gap-1 rounded-xl bg-zinc-200">
|
|
||||||
{[
|
|
||||||
`${import.meta.env.VITE_API_URL}/mii/${mii.id}/image?type=mii`,
|
|
||||||
mii.platform === "THREE_DS"
|
|
||||||
? `${import.meta.env.VITE_API_URL}/mii/${mii.id}/image?type=qr-code`
|
|
||||||
: `${import.meta.env.VITE_API_URL}/mii/${mii.id}/image?type=features`,
|
|
||||||
...Array.from({ length: mii.imageCount }, (_, i) => `${import.meta.env.VITE_API_URL}/mii/${mii.id}/image?type=image${i}`),
|
|
||||||
].map((src, i) => (
|
|
||||||
<img key={i} src={src} alt="mii image" className="w-full bg-zinc-200" />
|
|
||||||
))}
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
|
|
||||||
<div className="p-4 flex flex-col gap-1 h-full">
|
<div className="p-4 flex flex-col gap-1 h-full">
|
||||||
<div className="flex justify-between">
|
<div className="flex justify-between">
|
||||||
|
|
@ -169,8 +123,6 @@ export default function MiiList({ parentPage, userId }: Props) {
|
||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{parentPage === "admin" && mii.description && <Description text={mii.description} />}
|
|
||||||
|
|
||||||
<div className="mt-auto grid grid-cols-2 items-center">
|
<div className="mt-auto grid grid-cols-2 items-center">
|
||||||
<LikeButton likes={mii.likeCount} miiId={mii.id} isLiked={likedIds.has(mii.id)} abbreviate />
|
<LikeButton likes={mii.likeCount} miiId={mii.id} isLiked={likedIds.has(mii.id)} abbreviate />
|
||||||
|
|
||||||
|
|
@ -188,27 +140,6 @@ export default function MiiList({ parentPage, userId }: Props) {
|
||||||
<DeleteMiiButton miiId={mii.id} miiName={mii.name} likes={mii.likeCount} />
|
<DeleteMiiButton miiId={mii.id} miiName={mii.name} likes={mii.likeCount} />
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{parentPage === "admin" && (
|
|
||||||
<div className="flex justify-between w-full col-span-2 mt-2">
|
|
||||||
<div className="flex gap-1 text-3xl justify-center">
|
|
||||||
<button
|
|
||||||
onClick={async () => {
|
|
||||||
await fetch(`${import.meta.env.VITE_API_URL}/api/admin/accept-mii?id=${mii.id}`, { method: "POST", credentials: "include" });
|
|
||||||
}}
|
|
||||||
className="cursor-pointer text-zinc-400 hover:text-green-500 transition-colors p-1 bg-white rounded-md shadow-sm border border-zinc-200 hover:border-green-500"
|
|
||||||
title="Accept Mii"
|
|
||||||
>
|
|
||||||
<Icon icon="material-symbols:check-rounded" />
|
|
||||||
</button>
|
|
||||||
<div className="text-zinc-400 hover:text-red-500 transition-colors p-1 bg-white rounded-md shadow-sm border border-zinc-200 hover:border-red-500 flex items-center justify-center">
|
|
||||||
<DeleteMiiButton miiId={mii.id} miiName={mii.name} likes={mii.likeCount} />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<span className="text-sm w-1/2 text-right">{new Date(mii.createdAt).toLocaleString("en-GB", { timeZone: "UTC" })}</span>
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
73
frontend/src/components/mii/list/time-range-select.tsx
Normal file
73
frontend/src/components/mii/list/time-range-select.tsx
Normal file
|
|
@ -0,0 +1,73 @@
|
||||||
|
import { useTransition } from "react";
|
||||||
|
import { useSelect } from "downshift";
|
||||||
|
import { Icon } from "@iconify/react";
|
||||||
|
import { useNavigate, useSearchParams } from "react-router";
|
||||||
|
|
||||||
|
type TimeRange = "day" | "week" | "month" | "year";
|
||||||
|
|
||||||
|
const items: { value: TimeRange | "all"; label: string }[] = [
|
||||||
|
{ value: "all", label: "all time" },
|
||||||
|
{ value: "day", label: "today" },
|
||||||
|
{ value: "week", label: "this week" },
|
||||||
|
{ value: "month", label: "this month" },
|
||||||
|
{ value: "year", label: "this year" },
|
||||||
|
];
|
||||||
|
|
||||||
|
export default function TimeRangeSelect() {
|
||||||
|
const navigate = useNavigate();
|
||||||
|
const [searchParams] = useSearchParams();
|
||||||
|
const [, startTransition] = useTransition();
|
||||||
|
|
||||||
|
const currentRange = (searchParams.get("timeRange") as TimeRange) || "all";
|
||||||
|
const currentItem = items.find((i) => i.value === currentRange) || items[0];
|
||||||
|
|
||||||
|
const { isOpen, getToggleButtonProps, getMenuProps, getItemProps, highlightedIndex, selectedItem } = useSelect({
|
||||||
|
items,
|
||||||
|
selectedItem: currentItem,
|
||||||
|
itemToString: (item) => item?.label || "",
|
||||||
|
onSelectedItemChange: ({ selectedItem }) => {
|
||||||
|
if (!selectedItem) return;
|
||||||
|
|
||||||
|
const params = new URLSearchParams(searchParams);
|
||||||
|
params.set("page", "1");
|
||||||
|
|
||||||
|
if (selectedItem.value === "all") {
|
||||||
|
params.delete("timeRange");
|
||||||
|
} else {
|
||||||
|
params.set("timeRange", selectedItem.value);
|
||||||
|
}
|
||||||
|
|
||||||
|
startTransition(() => {
|
||||||
|
navigate(`?${params.toString()}`, { preventScrollReset: true });
|
||||||
|
});
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="relative w-fit">
|
||||||
|
<button type="button" {...getToggleButtonProps()} aria-label="Time range dropdown" className="pill input w-full gap-1 justify-between! text-nowrap">
|
||||||
|
<Icon icon="mdi:clock-outline" className="size-5 mr-1" />
|
||||||
|
{selectedItem?.label || "all time"}
|
||||||
|
<Icon icon="tabler:chevron-down" className="ml-1 size-5" />
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<ul
|
||||||
|
{...getMenuProps()}
|
||||||
|
className={`absolute z-50 w-full bg-orange-200 border-2 border-orange-400 rounded-lg mt-1 shadow-lg max-h-60 overflow-y-auto ${
|
||||||
|
isOpen ? "block" : "hidden"
|
||||||
|
}`}
|
||||||
|
>
|
||||||
|
{isOpen &&
|
||||||
|
items.map((item, index) => (
|
||||||
|
<li
|
||||||
|
key={item.value}
|
||||||
|
{...getItemProps({ item, index })}
|
||||||
|
className={`px-4 py-1 cursor-pointer text-sm ${highlightedIndex === index ? "bg-black/15" : ""}`}
|
||||||
|
>
|
||||||
|
{item.label}
|
||||||
|
</li>
|
||||||
|
))}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
@ -39,6 +39,7 @@ export const idSchema = z.coerce.number({ error: "ID must be a number" }).int({
|
||||||
export const searchSchema = z.object({
|
export const searchSchema = z.object({
|
||||||
q: querySchema.optional(),
|
q: querySchema.optional(),
|
||||||
sort: z.enum(["likes", "newest", "oldest"], { error: "Sort must be either 'likes', 'newest', 'oldest'" }).default("newest"),
|
sort: z.enum(["likes", "newest", "oldest"], { error: "Sort must be either 'likes', 'newest', 'oldest'" }).default("newest"),
|
||||||
|
// todo: incorporate tagsSchema
|
||||||
tags: z
|
tags: z
|
||||||
.string()
|
.string()
|
||||||
.optional()
|
.optional()
|
||||||
|
|
@ -62,7 +63,6 @@ export const searchSchema = z.object({
|
||||||
makeup: z.enum(["FULL", "PARTIAL", "NONE"], { error: "Makeup must be either 'FULL', 'PARTIAL', or 'NONE'" }).optional(),
|
makeup: z.enum(["FULL", "PARTIAL", "NONE"], { error: "Makeup must be either 'FULL', 'PARTIAL', or 'NONE'" }).optional(),
|
||||||
allowCopying: z.coerce.boolean({ error: "Allow Copying must be either true or false" }).optional(),
|
allowCopying: z.coerce.boolean({ error: "Allow Copying must be either true or false" }).optional(),
|
||||||
quarantined: z.coerce.boolean({ error: "Quarantined must be either true or false" }).optional(),
|
quarantined: z.coerce.boolean({ error: "Quarantined must be either true or false" }).optional(),
|
||||||
// todo: incorporate tagsSchema
|
|
||||||
// Pages
|
// Pages
|
||||||
limit: z.coerce
|
limit: z.coerce
|
||||||
.number({ error: "Limit must be a number" })
|
.number({ error: "Limit must be a number" })
|
||||||
|
|
@ -74,6 +74,8 @@ export const searchSchema = z.object({
|
||||||
// Other
|
// Other
|
||||||
parentPage: z.string().optional(),
|
parentPage: z.string().optional(),
|
||||||
userId: idSchema.optional(),
|
userId: idSchema.optional(),
|
||||||
|
// Time range filter
|
||||||
|
timeRange: z.enum(["day", "week", "month", "year"], { error: "Time range must be either 'day', 'week', 'month', or 'year'" }).optional(),
|
||||||
});
|
});
|
||||||
|
|
||||||
export const userNameSchema = z
|
export const userNameSchema = z
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue