Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature: Sorting & finding by username (ID) admin interface #1778

Merged
merged 9 commits into from
Feb 21, 2023
10 changes: 5 additions & 5 deletions website/src/components/DataTable/DataTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ import {
} from "@tanstack/react-table";
import { Filter } from "lucide-react";
import { useTranslation } from "next-i18next";
import { ChangeEvent, ReactNode, useState } from "react";
import { ChangeEvent, ReactNode, useRef, useState } from "react";
import { useDebouncedCallback } from "use-debounce";

// eslint-disable-next-line @typescript-eslint/no-explicit-any
Expand All @@ -59,7 +59,7 @@ export type DataTableProps<T> = {
filterValues?: FilterItem[];
onNextClick?: () => void;
onPreviousClick?: () => void;
onFilterChange?: (items: FilterItem[]) => void;
onFilterChange?: (items: FilterItem[], filterByColumn?: string) => void;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why do you need filterByColumn here? Isn't id in FilterItem enough?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I went and removed it

owenduncansnobel marked this conversation as resolved.
Show resolved Hide resolved
disableNext?: boolean;
disablePrevious?: boolean;
disablePagination?: boolean;
Expand Down Expand Up @@ -198,13 +198,13 @@ const FilterModal = ({
value: string;
}) => {
const { isOpen, onOpen, onClose } = useDisclosure();

const initialFocusRef = useRef();
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what is the purpose of this ref?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@AbdBarho That ref is for auto-focusing on the text input when the filter button is clicked. That way you can start typing as soon as the parent div/button is clicked

const handleInputChange = useDebouncedCallback((e: ChangeEvent<HTMLInputElement>) => {
onChange(e.target.value);
}, 500);

return (
<Popover isOpen={isOpen} onOpen={onOpen} onClose={onClose}>
<Popover isOpen={isOpen} onOpen={onOpen} initialFocusRef={initialFocusRef} onClose={onClose}>
<PopoverTrigger>
<Button variant={"unstyled"} ml="2">
<Filter size="1em"></Filter>
Expand All @@ -216,7 +216,7 @@ const FilterModal = ({
<PopoverBody mt="4">
<FormControl>
<FormLabel>{label}</FormLabel>
<Input onChange={handleInputChange} defaultValue={value}></Input>
<Input ref={initialFocusRef} onChange={handleInputChange} autoFocus defaultValue={value}></Input>
</FormControl>
</PopoverBody>
</PopoverContent>
Expand Down
22 changes: 17 additions & 5 deletions website/src/components/UserTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,12 @@ const columns: DataTableColumnDef<User>[] = [
columnHelper.accessor("user_id", {
header: "ID",
}),
columnHelper.accessor("id", {
header: "Auth ID",
}),
{
...columnHelper.accessor("id", {
header: "Auth ID",
}),
filterable: true,
},
columnHelper.accessor("auth_method", {
header: "Auth Method",
}),
Expand Down Expand Up @@ -55,9 +58,18 @@ export const UserTable = memo(function UserTable() {
// Fetch and save the users.
// This follows useSWR's recommendation for simple pagination:
// https://swr.vercel.app/docs/pagination#when-to-use-useswr
const display_name = filterValues.find((value) => value.id === "display_name")?.value ?? "";

// TODO this should probably change names + back-end changes since we are search by not only display name
owenduncansnobel marked this conversation as resolved.
Show resolved Hide resolved
const display_name =
filterValues.find((value) => value.id === filterValues[filterValues.length - 1]?.id)?.value ?? "";
const { data, error } = useSWR<FetchUsersResponse<User>>(
`/api/admin/users?direction=${pagination.direction}&cursor=${pagination.cursor}&searchDisplayName=${display_name}&sortKey=display_name`,
`/api/admin/users?direction=${pagination.direction}&cursor=${
pagination.cursor
}&searchDisplayName=${display_name}&sortKey=${
filterValues[filterValues.length - 1]?.id === "id"
? "username"
: filterValues[filterValues.length - 1]?.id || "display_name"
}`,
get,
{
keepPreviousData: true,
Expand Down