* fix: Flash of empty state on paginated lists fix: Typing of PaginatedList to generic * test * test
47 lines
990 B
TypeScript
47 lines
990 B
TypeScript
import { User } from "@server/models";
|
|
|
|
type Options = {
|
|
includeDetails?: boolean;
|
|
};
|
|
|
|
type UserPresentation = {
|
|
id: string;
|
|
name: string;
|
|
avatarUrl: string | null | undefined;
|
|
createdAt: Date;
|
|
updatedAt: Date;
|
|
lastActiveAt: Date | null;
|
|
color: string;
|
|
isAdmin: boolean;
|
|
isSuspended: boolean;
|
|
isViewer: boolean;
|
|
email?: string | null;
|
|
language?: string;
|
|
};
|
|
|
|
export default (
|
|
user: User,
|
|
options: Options = {}
|
|
): UserPresentation | null | undefined => {
|
|
const userData: UserPresentation = {
|
|
id: user.id,
|
|
name: user.name,
|
|
avatarUrl: user.avatarUrl,
|
|
color: user.color,
|
|
isAdmin: user.isAdmin,
|
|
isSuspended: user.isSuspended,
|
|
isViewer: user.isViewer,
|
|
createdAt: user.createdAt,
|
|
updatedAt: user.updatedAt,
|
|
lastActiveAt: user.lastActiveAt,
|
|
};
|
|
|
|
if (options.includeDetails) {
|
|
userData.email = user.email;
|
|
userData.language =
|
|
user.language || process.env.DEFAULT_LANGUAGE || "en_US";
|
|
}
|
|
|
|
return userData;
|
|
};
|