feat: Implemented mouse and gamepad automatic switching fix: Made touch screen work better on the steam deck
83 lines
No EOL
3.6 KiB
TypeScript
83 lines
No EOL
3.6 KiB
TypeScript
import { useSuspenseQuery } from "@tanstack/react-query";
|
|
import { useNavigate } from "@tanstack/react-router";
|
|
import { DefaultRommStaleTime, RPC_URL } from "../../shared/constants";
|
|
import { CardList, GameMetaExtra } from "./CardList";
|
|
import classNames from "classnames";
|
|
import { rommApi } from "../scripts/clientApi";
|
|
import { SaveSource } from "../scripts/spatialNavigation";
|
|
import { JSX } from "react";
|
|
import { HardDrive } from "lucide-react";
|
|
import { GameCardFocusHandler } from "./GameCard";
|
|
|
|
export function PlatformsList (data: { id: string, setBackground: (url: string) => void; className?: string; onFocus?: GameCardFocusHandler; })
|
|
{
|
|
const navigate = useNavigate();
|
|
const { data: platforms } = useSuspenseQuery(
|
|
{
|
|
queryKey: ['platform', 'all'],
|
|
queryFn: async () =>
|
|
{
|
|
const { data, error } = await rommApi.api.romm.platforms.get();
|
|
if (error) throw error;
|
|
return data.platforms;
|
|
},
|
|
refetchOnWindowFocus: false,
|
|
staleTime: DefaultRommStaleTime,
|
|
});
|
|
|
|
return (
|
|
<CardList
|
|
type="platform"
|
|
id={data.id}
|
|
className={data.className}
|
|
onGameFocus={data.onFocus}
|
|
games={platforms.sort((a, b) => a.updated_at.getTime() - b.updated_at.getTime())
|
|
.map((g) =>
|
|
{
|
|
const badges: JSX.Element[] = [];
|
|
badges.push(<span className="flex items-center justify-center size-6 m-1 text-2xl font-semibold font-boldrounded-full">{g.game_count}</span>);
|
|
if (g.hasLocal)
|
|
badges.push(<HardDrive className="size-8 m-1" />);
|
|
const entry: GameMetaExtra = {
|
|
id: g.slug,
|
|
focusKey: g.slug,
|
|
title: g.name,
|
|
subtitle: g.family_name ?? "",
|
|
previewUrl: "",
|
|
badges,
|
|
onFocus: () => data.setBackground(
|
|
`https://picsum.photos/id/${10 + g.slug.length}/1920/1080.webp`,
|
|
),
|
|
onSelect: () =>
|
|
{
|
|
SaveSource('game-list');
|
|
navigate({ to: `/platform/${g.id.source}/${g.id.id}`, viewTransition: { types: ['zoom-in'] } });
|
|
},
|
|
preview:
|
|
({ focused }) => <div
|
|
className="flex h-60 p-6 bg-base-100 justify-center"
|
|
style={{
|
|
background: `linear-gradient(
|
|
color-mix(in srgb, var(--color-base-content) 60%, transparent),
|
|
color-mix(in srgb, var(--color-base-300) 60%, transparent)
|
|
), url(https://picsum.photos/id/${8 + g.slug.length}/300/300.webp?blur=10) center / cover`,
|
|
|
|
backgroundBlendMode: "screen",
|
|
boxShadow: 'inset 0 0 32px rgba(0,0,0,0.6)'
|
|
}}
|
|
>
|
|
<img className={classNames("drop-shadow-2xl", { "animate-rotate": focused })}
|
|
src={`${RPC_URL(__HOST__)}${g.path_cover}`}
|
|
></img>
|
|
</div>
|
|
,
|
|
};
|
|
return entry;
|
|
})}
|
|
onSelectGame={(id) =>
|
|
{
|
|
|
|
}}
|
|
/>
|
|
);
|
|
} |