mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-26 21:10:38 +03:00
72 lines
1.8 KiB
TypeScript
72 lines
1.8 KiB
TypeScript
import { createContext, useCallback, useContext, useEffect, useState } from 'react';
|
|
|
|
import { type IUserInfo } from '../models/library';
|
|
import { getActiveUsers } from '../utils/backendAPI';
|
|
|
|
interface IUsersContext {
|
|
users: IUserInfo[]
|
|
reload: (callback?: () => void) => void
|
|
getUserLabel: (userID: number | null) => string
|
|
}
|
|
|
|
const UsersContext = createContext<IUsersContext | null>(null)
|
|
export const useUsers = (): IUsersContext => {
|
|
const context = useContext(UsersContext);
|
|
if (context === null) {
|
|
throw new Error('useUsers has to be used within <UsersState.Provider>');
|
|
}
|
|
return context;
|
|
}
|
|
|
|
interface UsersStateProps {
|
|
children: React.ReactNode
|
|
}
|
|
|
|
export const UsersState = ({ children }: UsersStateProps) => {
|
|
const [users, setUsers] = useState<IUserInfo[]>([])
|
|
|
|
function getUserLabel(userID: number | null) {
|
|
const user = users.find(({ id }) => id === userID)
|
|
if (!user) {
|
|
return (userID ? userID.toString() : 'Отсутствует');
|
|
}
|
|
const hasFirstName = user.first_name !== '';
|
|
const hasLastName = user.last_name !== '';
|
|
if (hasFirstName || hasLastName) {
|
|
if (!hasLastName) {
|
|
return user.first_name;
|
|
}
|
|
if (!hasFirstName) {
|
|
return user.last_name;
|
|
}
|
|
return user.first_name + ' ' + user.last_name;
|
|
}
|
|
return user.username;
|
|
}
|
|
|
|
const reload = useCallback(
|
|
(callback?: () => void) => {
|
|
getActiveUsers({
|
|
showError: true,
|
|
onError: () => setUsers([]),
|
|
onSuccess: newData => {
|
|
setUsers(newData);
|
|
if (callback) callback();
|
|
}
|
|
});
|
|
}, [setUsers]);
|
|
|
|
useEffect(() => {
|
|
reload();
|
|
}, [reload]);
|
|
|
|
return (
|
|
<UsersContext.Provider value={{
|
|
users,
|
|
reload,
|
|
getUserLabel
|
|
}}>
|
|
{ children }
|
|
</UsersContext.Provider>);
|
|
}
|