Raid groups page working
This commit is contained in:
@@ -102,6 +102,56 @@ export function useGetRaidGroupsByGameCount(gameId: string, searchTerm?: string)
|
||||
});
|
||||
}
|
||||
|
||||
export function useGetRaidGroupsByAccount(accountId: string, page: number, pageSize: number, searchTerm?: string){
|
||||
return useQuery({
|
||||
queryKey: ["raidGroups", accountId, { page, pageSize, searchTerm }],
|
||||
queryFn: async () => {
|
||||
const params = new URLSearchParams();
|
||||
params.append("page", page.toString());
|
||||
params.append("pageSize", pageSize.toString());
|
||||
if(searchTerm){
|
||||
params.append("searchTerm", searchTerm);
|
||||
}
|
||||
|
||||
const response = await api.get(`/raidGroup/account/${accountId}?${params}`);
|
||||
|
||||
if(response.status !== 200){
|
||||
throw new Error("Failed to get raid groups");
|
||||
}
|
||||
else if(response.data.errors){
|
||||
throw new Error(response.data.errors.join(", "));
|
||||
}
|
||||
|
||||
return response.data as RaidGroup[];
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
export function useGetRaidGroupsCountByAccount(accountId: string, searchTerm?: string){
|
||||
const searchParams = new URLSearchParams();
|
||||
if(searchTerm){
|
||||
searchParams.append("searchTerm", searchTerm);
|
||||
}
|
||||
|
||||
|
||||
return useQuery({
|
||||
queryKey: ["raidGroups", accountId, "count", searchTerm],
|
||||
queryFn: async () => {
|
||||
const response = await api.get(`/raidGroup/account/${accountId}/count?${searchParams}`);
|
||||
|
||||
if(response.status !== 200){
|
||||
throw new Error("Failed to get raid groups count");
|
||||
}
|
||||
else if(response.data.errors){
|
||||
throw new Error(response.data.errors.join(", "));
|
||||
}
|
||||
|
||||
return response.data.count as number;
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
export function useGetRaidGroupCalendar(raidGroupId: string){
|
||||
return useQuery({
|
||||
queryKey: ["raidGroups", raidGroupId, "calendar"],
|
||||
|
||||
@@ -3,8 +3,19 @@ import AllGamesDisplay from "@/ui/game/AllGamesDisplay";
|
||||
|
||||
export default function GamesPage(){
|
||||
return (
|
||||
<main>
|
||||
<AllGamesDisplay/>
|
||||
<main
|
||||
className="flex flex-col items-center justify-center gap-8"
|
||||
>
|
||||
<h1
|
||||
className="text-4xl"
|
||||
>
|
||||
Games
|
||||
</h1>
|
||||
<div
|
||||
className="w-full"
|
||||
>
|
||||
<AllGamesDisplay/>
|
||||
</div>
|
||||
</main>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,10 +1,27 @@
|
||||
import { useAuth } from "@/providers/AuthProvider";
|
||||
import RaidGroupsByAccountDisplay from "@/ui/raidGroup/RaidGroupsByAccountDisplay";
|
||||
|
||||
|
||||
export default function RaidGroupsPage(){
|
||||
//TODO:
|
||||
const { accountId } = useAuth();
|
||||
|
||||
|
||||
return (
|
||||
<div>
|
||||
Raid Groups Page
|
||||
</div>
|
||||
<main
|
||||
className="flex flex-col items-center justify-center gap-8"
|
||||
>
|
||||
<h1
|
||||
className="text-4xl"
|
||||
>
|
||||
Raid Groups
|
||||
</h1>
|
||||
<div
|
||||
className="w-full"
|
||||
>
|
||||
<RaidGroupsByAccountDisplay
|
||||
accountId={accountId ?? ""}
|
||||
/>
|
||||
</div>
|
||||
</main>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -14,13 +14,15 @@ type AuthProviderState = {
|
||||
setJwt: (token: string | null) => void;
|
||||
expiration: Date | null;
|
||||
setExpiration: (expiration: Date | null) => void;
|
||||
accountId: string | null;
|
||||
}
|
||||
|
||||
const initialState: AuthProviderState = {
|
||||
jwt: null,
|
||||
setJwt: () => null,
|
||||
expiration: null,
|
||||
setExpiration: () => null
|
||||
setExpiration: () => null,
|
||||
accountId: null
|
||||
}
|
||||
|
||||
const AuthContext = createContext<AuthProviderState>(initialState);
|
||||
@@ -32,6 +34,7 @@ export function AuthProvider({
|
||||
const [ jwt, setJwt ] = useState<string | null>(null);
|
||||
const [ expiration, setExpiration ] = useState<Date | null>(null);
|
||||
const [ firstFetch, setFirstFetch ] = useState(true);
|
||||
const [ accountId, setAccountId ] = useState<string | null>(null);
|
||||
|
||||
|
||||
const fetchToken = useCallback(async () => {
|
||||
@@ -41,8 +44,12 @@ export function AuthProvider({
|
||||
//If the token is retrieved
|
||||
if((response.status === 200) && (!response.data.errors)){
|
||||
setJwt(response.data.token);
|
||||
setExpiration(new Date(JSON.parse(atob(response.data.token.split(".")[1])).exp * 1000));
|
||||
const decodedToken = JSON.parse(atob(response.data.token.split(".")[1]));
|
||||
//console.log("decodedToken = ");
|
||||
//console.log(decodedToken);
|
||||
setExpiration(new Date(decodedToken.exp * 1000));
|
||||
setFirstFetch(false);
|
||||
setAccountId(decodedToken.accountId);
|
||||
return response.data.token;
|
||||
}
|
||||
//If the token cannot be retrieved
|
||||
@@ -90,8 +97,10 @@ export function AuthProvider({
|
||||
jwt,
|
||||
setJwt,
|
||||
expiration,
|
||||
setExpiration
|
||||
}), [ jwt, setJwt, expiration, setExpiration ]);
|
||||
setExpiration,
|
||||
accountId
|
||||
}), [ jwt, setJwt, expiration, setExpiration, accountId ]);
|
||||
|
||||
|
||||
//TODO: Return a spinner while the first token is being fetched
|
||||
if(firstFetch){
|
||||
|
||||
103
src/ui/raidGroup/RaidGroupsByAccountDisplay.tsx
Normal file
103
src/ui/raidGroup/RaidGroupsByAccountDisplay.tsx
Normal file
@@ -0,0 +1,103 @@
|
||||
import PrimaryButton from "@/components/button/PrimaryButton";
|
||||
import TextInput from "@/components/input/TextInput";
|
||||
import Pagination from "@/components/pagination/Pagination";
|
||||
import { useGetRaidGroupsCountByAccount } from "@/hooks/RaidGroupHooks";
|
||||
import { useEffect, useState } from "react";
|
||||
import { useDebouncedCallback } from "use-debounce";
|
||||
import RaidGroupsByAccountLoader from "./RaidGroupsByAccountLoader";
|
||||
import RaidGroupModal from "./modals/RaidGroupModal";
|
||||
|
||||
|
||||
export default function RaidGroupsByAccountDisplay({
|
||||
accountId
|
||||
}:{
|
||||
accountId: string;
|
||||
}){
|
||||
const [ displayCreateAccountModal, setDisplayCreateAccountModal ] = useState(false);
|
||||
const [ page, setPage ] = useState(1);
|
||||
const [ totalPages, setTotalPages ] = useState(1);
|
||||
const [ searchTerm, setSearchTerm ] = useState("");
|
||||
const [ sentSearchTerm, setSentSearchTerm ] = useState<string>();
|
||||
const pageSize = 10;
|
||||
const modalId = crypto.randomUUID().replaceAll("-", "");
|
||||
|
||||
const raidGroupsCountQuery = useGetRaidGroupsCountByAccount(accountId, sentSearchTerm);
|
||||
|
||||
|
||||
const updateSearchTerm = useDebouncedCallback((newSearchTerm: string) => {
|
||||
setSentSearchTerm(newSearchTerm.length ? newSearchTerm : undefined);
|
||||
}, 1000);
|
||||
|
||||
|
||||
useEffect(() => {
|
||||
updateSearchTerm(searchTerm ?? "");
|
||||
}, [ searchTerm, updateSearchTerm ]);
|
||||
|
||||
|
||||
useEffect(() => {
|
||||
if(raidGroupsCountQuery.status === "success"){
|
||||
setTotalPages(Math.ceil(raidGroupsCountQuery.data / pageSize));
|
||||
}
|
||||
}, [ raidGroupsCountQuery ]);
|
||||
|
||||
|
||||
return (
|
||||
<>
|
||||
<div
|
||||
className="flex flex-row justify-between items-center w-full"
|
||||
>
|
||||
<div
|
||||
className="flex flex-row items-center justify-start w-full"
|
||||
>
|
||||
|
||||
</div>
|
||||
{/* Add Raid Group Button */}
|
||||
<div
|
||||
className="flex flex-row items-center justify-center w-full"
|
||||
>
|
||||
<PrimaryButton
|
||||
className="mb-8"
|
||||
onClick={() => setDisplayCreateAccountModal(true)}
|
||||
>
|
||||
Create Raid Group
|
||||
</PrimaryButton>
|
||||
<RaidGroupModal
|
||||
display={displayCreateAccountModal}
|
||||
close={() => setDisplayCreateAccountModal(false)}
|
||||
raidGroup={undefined}
|
||||
/>
|
||||
</div>
|
||||
{/* Raid Group Search Box */}
|
||||
<div
|
||||
className="flex flex-row items-center justify-end w-full"
|
||||
>
|
||||
<div>
|
||||
<TextInput
|
||||
id={`raidGroupSearchBox${modalId}`}
|
||||
value={searchTerm}
|
||||
onChange={(e) => setSearchTerm(e.target.value)}
|
||||
placeholder="Search"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{/* Raid Groups List */}
|
||||
<RaidGroupsByAccountLoader
|
||||
accountId={accountId}
|
||||
page={page}
|
||||
pageSize={pageSize}
|
||||
searchTerm={sentSearchTerm}
|
||||
/>
|
||||
{/* Pagination */}
|
||||
<div
|
||||
className="my-12"
|
||||
>
|
||||
<Pagination
|
||||
currentPage={page}
|
||||
totalPages={totalPages}
|
||||
onChange={setPage}
|
||||
/>
|
||||
</div>
|
||||
</>
|
||||
);
|
||||
}
|
||||
33
src/ui/raidGroup/RaidGroupsByAccountLoader.tsx
Normal file
33
src/ui/raidGroup/RaidGroupsByAccountLoader.tsx
Normal file
@@ -0,0 +1,33 @@
|
||||
import DangerMessage from "@/components/message/DangerMessage";
|
||||
import { useGetRaidGroupsByAccount } from "@/hooks/RaidGroupHooks";
|
||||
import RaidGroupsList from "./RaidGroupsList";
|
||||
import RaidGroupsListSkeleton from "./RaidGroupsListSkeleton";
|
||||
|
||||
export default function RaidGroupsByAccountLoader({
|
||||
accountId,
|
||||
page,
|
||||
pageSize,
|
||||
searchTerm
|
||||
}:{
|
||||
accountId: string;
|
||||
page: number;
|
||||
pageSize: number;
|
||||
searchTerm?: string;
|
||||
}){
|
||||
const raidGroupsQuery = useGetRaidGroupsByAccount(accountId, page - 1, pageSize, searchTerm);
|
||||
|
||||
|
||||
if(raidGroupsQuery.status === "pending"){
|
||||
return <RaidGroupsListSkeleton/>
|
||||
}
|
||||
else if(raidGroupsQuery.status === "error"){
|
||||
return <DangerMessage>Error {raidGroupsQuery.error.message}</DangerMessage>
|
||||
}
|
||||
else{
|
||||
return (
|
||||
<RaidGroupsList
|
||||
raidGroups={raidGroupsQuery.data ?? []}
|
||||
/>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -2,6 +2,7 @@ import { ButtonProps } from "@/components/button/Button";
|
||||
import Table from "@/components/table/Table";
|
||||
import { RaidGroup } from "@/interface/RaidGroup";
|
||||
import { useState } from "react";
|
||||
import { Link } from "react-router";
|
||||
import DeleteRaidGroupModal from "./modals/DeleteRaidGroupModal";
|
||||
import RaidGroupModal from "./modals/RaidGroupModal";
|
||||
import RaidGroupAdminButtons from "./RaidGroupAdminButtons";
|
||||
@@ -55,9 +56,11 @@ export default function RaidGroupsList({
|
||||
}
|
||||
|
||||
</div>,
|
||||
<div>
|
||||
<Link
|
||||
to={`/raidGroup/${raidGroup.raidGroupId}`}
|
||||
>
|
||||
{raidGroup.raidGroupName}
|
||||
</div>,
|
||||
</Link>,
|
||||
<div
|
||||
className="flex flex-row items-center justify-center gap-2 pl-16"
|
||||
>
|
||||
|
||||
@@ -1,7 +1,71 @@
|
||||
import { ButtonShape, ButtonSizeType, ButtonVariant } from "@/components/button/Button";
|
||||
import Table from "@/components/table/Table";
|
||||
import { elementBg } from "@/util/SkeletonUtil";
|
||||
import RaidGroupAdminButtons from "./RaidGroupAdminButtons";
|
||||
|
||||
|
||||
export default function RaidGroupsListSkeleton(){
|
||||
return (
|
||||
<div>
|
||||
Raid Group List Skeleton
|
||||
</div>
|
||||
);
|
||||
const headElements: React.ReactNode[] = [
|
||||
<div>
|
||||
Icon
|
||||
</div>,
|
||||
<div>
|
||||
Name
|
||||
</div>,
|
||||
<div
|
||||
className="pl-16"
|
||||
>
|
||||
Actions
|
||||
</div>
|
||||
];
|
||||
const bodyElements: React.ReactNode[][] = [
|
||||
RaidGroupSkeleton(),
|
||||
RaidGroupSkeleton(),
|
||||
RaidGroupSkeleton(),
|
||||
RaidGroupSkeleton(),
|
||||
RaidGroupSkeleton(),
|
||||
RaidGroupSkeleton(),
|
||||
RaidGroupSkeleton(),
|
||||
RaidGroupSkeleton(),
|
||||
RaidGroupSkeleton(),
|
||||
RaidGroupSkeleton(),
|
||||
];
|
||||
|
||||
|
||||
return (
|
||||
<Table
|
||||
tableHeadElements={headElements}
|
||||
tableBodyElements={bodyElements}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
function RaidGroupSkeleton(): React.ReactNode[]{
|
||||
const buttonsProps = {
|
||||
buttonProps: {
|
||||
variant: "ghost" as ButtonVariant,
|
||||
size: "md" as ButtonSizeType,
|
||||
shape: "square" as ButtonShape,
|
||||
disabled: true
|
||||
},
|
||||
showEditRaidGroupModal: () => {},
|
||||
showDeleteRaidGroupModal: () => {}
|
||||
}
|
||||
const elements: React.ReactNode[] = [
|
||||
<div
|
||||
className={`h-8 w-8 -my-1 mr-4 ${elementBg}`}
|
||||
/>,
|
||||
<div
|
||||
className={`h-6 w-full ${elementBg}`}
|
||||
/>,
|
||||
<div
|
||||
className={`flex flex-row items-center justify-center gap-2 pl-16`}
|
||||
>
|
||||
<div className="py-4 border-l border-neutral-500"> </div>
|
||||
<RaidGroupAdminButtons {...buttonsProps}/>
|
||||
</div>
|
||||
];
|
||||
|
||||
return elements;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user