-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathAvatar.tsx
More file actions
187 lines (167 loc) · 4.43 KB
/
Avatar.tsx
File metadata and controls
187 lines (167 loc) · 4.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
import {
BuildingOffice2Icon,
CodeBracketSquareIcon,
FaceSmileIcon,
FireIcon,
RocketLaunchIcon,
StarIcon,
} from "@heroicons/react/20/solid";
import type { Prisma } from "@trigger.dev/database";
import { z } from "zod";
import { logger } from "~/services/logger.server";
import { cn } from "~/utils/cn";
export const AvatarType = z.enum(["icon", "letters", "image"]);
export const AvatarData = z.discriminatedUnion("type", [
z.object({
type: z.literal(AvatarType.enum.icon),
name: z.string(),
hex: z.string(),
}),
z.object({
type: z.literal(AvatarType.enum.letters),
hex: z.string(),
}),
z.object({
type: z.literal(AvatarType.enum.image),
url: z.string().url(),
}),
]);
export type Avatar = z.infer<typeof AvatarData>;
export type IconAvatar = Extract<Avatar, { type: "icon" }>;
export type ImageAvatar = Extract<Avatar, { type: "image" }>;
export type LettersAvatar = Extract<Avatar, { type: "letters" }>;
export function parseAvatar(json: Prisma.JsonValue, defaultAvatar: Avatar): Avatar {
if (!json || typeof json !== "object") {
return defaultAvatar;
}
const parsed = AvatarData.safeParse(json);
if (!parsed.success) {
logger.error("Invalid org avatar", { json, error: parsed.error });
return defaultAvatar;
}
return parsed.data;
}
export function Avatar({
avatar,
size,
includePadding,
orgName,
}: {
avatar: Avatar;
/** Size in rems of the icon */
size: number;
includePadding?: boolean;
orgName: string;
}) {
switch (avatar.type) {
case "icon":
return <AvatarIcon avatar={avatar} size={size} includePadding={includePadding} />;
case "letters":
return (
<AvatarLetters
avatar={avatar}
size={size}
includePadding={includePadding}
orgName={orgName}
/>
);
case "image":
return <AvatarImage avatar={avatar} size={size} />;
}
}
export const avatarIcons: Record<string, React.ComponentType<React.SVGProps<SVGSVGElement>>> = {
"hero:building-office-2": BuildingOffice2Icon,
"hero:rocket-launch": RocketLaunchIcon,
"hero:code-bracket-square": CodeBracketSquareIcon,
"hero:fire": FireIcon,
"hero:star": StarIcon,
"hero:face-smile": FaceSmileIcon,
};
export const defaultAvatarColors = [
{ hex: "#878C99", name: "Gray" },
{ hex: "#713F12", name: "Brown" },
{ hex: "#F97316", name: "Orange" },
{ hex: "#EAB308", name: "Yellow" },
{ hex: "#22C55E", name: "Green" },
{ hex: "#3B82F6", name: "Blue" },
{ hex: "#6366F1", name: "Purple" },
{ hex: "#EC4899", name: "Pink" },
{ hex: "#F43F5E", name: "Red" },
];
// purple
export const defaultAvatarHex = defaultAvatarColors[6].hex;
export const defaultAvatar: Avatar = {
type: "letters",
hex: defaultAvatarHex,
};
function styleFromSize(size: number) {
return {
width: `${size}rem`,
height: `${size}rem`,
};
}
function AvatarLetters({
avatar,
size,
includePadding,
orgName,
}: {
avatar: LettersAvatar;
size: number;
includePadding?: boolean;
orgName: string;
}) {
const letters = orgName.slice(0, 2);
const style = {
backgroundColor: avatar.hex,
};
const scaleFactor = includePadding ? 0.8 : 1;
return (
<span
className="grid shrink-0 place-items-center overflow-hidden text-charcoal-750"
style={styleFromSize(size)}
>
{/* This is the square container */}
<span
className={cn(
"relative grid place-items-center overflow-hidden rounded-[10%] font-semibold",
includePadding ? "size-[80%]" : "size-[100%]"
)}
style={style}
>
<span
className="font-bold leading-none"
style={{ fontSize: `${size * 0.6 * scaleFactor}rem` }}
>
{letters}
</span>
</span>
</span>
);
}
function AvatarIcon({
avatar,
size,
includePadding,
}: {
avatar: IconAvatar;
size: number;
includePadding?: boolean;
}) {
const style = {
color: avatar.hex,
};
const IconComponent = avatarIcons[avatar.name];
return (
<span className="grid aspect-square place-items-center" style={styleFromSize(size)}>
<IconComponent className={includePadding ? "size-[80%]" : "size-[100%]"} style={style} />
</span>
);
}
function AvatarImage({ avatar, size }: { avatar: ImageAvatar; size: number }) {
return (
<span className="grid place-items-center" style={styleFromSize(size)}>
<img src={avatar.url} alt="Organization avatar" className="size-6" />
</span>
);
}