Replaced table with grid Updated search - added servers button Updated leaderboard - Added buttons on top & pagination Added imageproxy for resizing.
88 lines
5.0 KiB
TypeScript
88 lines
5.0 KiB
TypeScript
/*
|
|
* Copyright (C) 2024 Aleksander <alekswilc> Wilczyński (aleks@alekswilc.dev)
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published
|
|
* by the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* See LICENSE for more.
|
|
*/
|
|
|
|
import { useTranslation } from "react-i18next";
|
|
import { Link } from "react-router-dom";
|
|
import { TTrainRecord } from "../../../types/train.ts";
|
|
import dayjs from "dayjs";
|
|
import { UserIcons } from "../../mini/icons/UserIcons.tsx";
|
|
import { toast } from "react-toastify";
|
|
|
|
// setSearchItem: Dispatch<SetStateAction<string>>
|
|
export const TrainTable = ({ trains }: {
|
|
trains: TTrainRecord[]
|
|
}) =>
|
|
{
|
|
const { t } = useTranslation();
|
|
|
|
|
|
const report = (data: TTrainRecord) =>
|
|
{
|
|
toast.info(t("log.toasts.report"), {
|
|
autoClose: 5000,
|
|
});
|
|
void navigator.clipboard.writeText(`;user: \`${ data.player.username }\`\n;steam: \`https://steamcommunity.com/profiles/${ data.player.id }\`\n;server: \`${ data.server.toUpperCase() }\`\n;left: <t:${ Math.floor(data.leftDate / 1000) }>${ data.joinedDate ? `\n;joined: <t:${ Math.floor(data.joinedDate / 1000) }>` : "" }\n;train: \`${ data.trainNumber }\`\n;link: https://${ location.hostname }/log/${ data.id }\n\n`);
|
|
};
|
|
|
|
return (
|
|
<div className="grid grid-cols-1 gap-7.5 sm:grid-cols-3 xl:grid-cols-4">
|
|
{ trains.map((train) =>
|
|
{
|
|
return <div
|
|
key={ train.id }
|
|
className="flex flex-col align-center items-center rounded-sm border border-stroke bg-stroke shadow-default dark:border-strokedark dark:bg-boxdark">
|
|
<div className="p-4">
|
|
<img className="rounded-full"
|
|
src={ train.player.avatar }
|
|
alt="Player"/>
|
|
</div>
|
|
<div className="flex flex-col p-2 align-center items-center">
|
|
<h4 className="mb-3 text-xl font-semibold text-black dark:text-white">
|
|
{ train.player.username }
|
|
<UserIcons flags={ train.player.flags }/>
|
|
</h4>
|
|
<p>{ t("log.train.train", { name: train.trainName, number: train.trainNumber }) }</p>
|
|
<p>{ t("log.train.server", { server: train.server.toUpperCase() }) }</p>
|
|
{ train.joinedDate &&
|
|
<p>{ t("log.train.joined", { date: dayjs(train.joinedDate).format("HH:mm DD/MM/YYYY") }) }</p> }
|
|
<p>{ t("log.train.left", { date: dayjs(train.leftDate).format("HH:mm DD/MM/YYYY") }) }</p>
|
|
{ train.joinedDate &&
|
|
<p>{ t("log.train.spent", { date: dayjs.duration(train.leftDate - train.joinedDate).format("H[h] m[m]") }) }</p> }
|
|
|
|
<p>{ t("log.train.distance", { distance: train.distance ? (train.distance / 1000).toFixed(2) : "--" }) }</p>
|
|
|
|
<p>{ t("log.train.points", { points: train.points || "--" }) }</p>
|
|
</div>
|
|
|
|
<div className="items-center justify-center p-2.5 flex xl:p-5 gap-2 flex-wrap mt-auto mb-2">
|
|
<Link to={ "/profile/" + (train.steam ?? train.player.id) }
|
|
className={ `inline-flex items-center justify-center rounded-md bg-primary py-2 px-5 text-center font-medium text-white hover:bg-opacity-50 lg:px-4 xl:px-5 ${ train.player.flags.includes("private") ? "bg-opacity-50" : "" }` }
|
|
style={ train.player.flags.includes("private") ? { pointerEvents: "none" } : undefined }>{ t("log.buttons.profile") }</Link>
|
|
<Link to={ "/log/" + train.id }
|
|
className={ `inline-flex items-center justify-center rounded-md bg-primary py-2 px-5 text-center font-medium text-white hover:bg-opacity-50 lg:px-4 xl:px-5` }>{ t("log.buttons.record") }</Link>
|
|
|
|
<a
|
|
onClick={ () => report(train) }
|
|
className="cursor-pointer inline-flex items-center justify-center rounded-md bg-danger py-2 px-5 text-center font-medium text-white hover:bg-opacity-50 lg:px-4 xl:px-5"
|
|
>
|
|
{ t("log.buttons.report") }
|
|
</a>
|
|
</div>
|
|
</div>;
|
|
}) }
|
|
</div>
|
|
);
|
|
}; |