import http, { FractalResponseData, getPaginationSet, PaginatedResult } from '@/api/http'; import { createContext, useContext } from 'react'; import useSWR from 'swr'; export interface User { id: number; externalId: string; uuid: string; username: string; email: string; firstName: string; lastName: string; language: string; rootAdmin: boolean; tfa: boolean; avatarURL: string; roleName: string | null; createdAt: Date; updatedAt: Date; } export const rawDataToUser = ({ attributes }: FractalResponseData): User => ({ id: attributes.id, externalId: attributes.external_id, uuid: attributes.uuid, username: attributes.username, email: attributes.email, firstName: attributes.first_name, lastName: attributes.last_name, language: attributes.language, rootAdmin: attributes.root_admin, tfa: attributes['2fa'], avatarURL: attributes.avatar_url, roleName: attributes.role_name, createdAt: new Date(attributes.created_at), updatedAt: new Date(attributes.updated_at), }); export interface Filters { id?: string; uuid?: string; username?: string; email?: string; firstName?: string; lastName?: string; } interface ctx { page: number; setPage: (value: number | ((s: number) => number)) => void; filters: Filters | null; setFilters: (filters: Filters | null) => void; sort: string | null; setSort: (sort: string | null) => void; sortDirection: boolean; setSortDirection: (direction: boolean) => void; } export const Context = createContext({ page: 1, setPage: () => 1, filters: null, setFilters: () => null, sort: null, setSort: () => null, sortDirection: false, setSortDirection: () => false, }); export default (include: string[] = []) => { const { page, filters, sort, sortDirection } = useContext(Context); const params = {}; if (filters !== null) { Object.keys(filters).forEach(key => { // @ts-ignore params['filter[' + key + ']'] = filters[key]; }); } if (sort !== null) { // @ts-ignore params.sort = (sortDirection ? '-' : '') + sort; } return useSWR>([ 'users', page, filters, sort, sortDirection ], async () => { const { data } = await http.get('/api/application/users', { params: { include: include.join(','), page, ...params } }); return ({ items: (data.data || []).map(rawDataToUser), pagination: getPaginationSet(data.meta.pagination), }); }); };