-
Notifications
You must be signed in to change notification settings - Fork 294
Expand file tree
/
Copy pathUserEntityCard.tsx
More file actions
222 lines (212 loc) · 6.73 KB
/
UserEntityCard.tsx
File metadata and controls
222 lines (212 loc) · 6.73 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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
import React, { useContext } from 'react';
import Link from '../../utilities/Link';
import type { UserShortProfile } from '../../../lib/user';
import EntityCard from './EntityCard';
import {
Typography,
TypographyColor,
TypographyTag,
TypographyType,
} from '../../typography/Typography';
import { BlockIcon, DevPlusIcon, FlagIcon, GiftIcon } from '../../icons';
import { VerifiedCompanyUserBadge } from '../../VerifiedCompanyUserBadge';
import { ProfileImageSize } from '../../ProfilePicture';
import { ReputationUserBadge } from '../../ReputationUserBadge';
import { IconSize } from '../../Icon';
import JoinedDate from '../../profile/JoinedDate';
import { FollowButton } from '../../contentPreference/FollowButton';
import {
ContentPreferenceStatus,
ContentPreferenceType,
} from '../../../graphql/contentPreference';
import { useContentPreferenceStatusQuery } from '../../../hooks/contentPreference/useContentPreferenceStatusQuery';
import { useContentPreference } from '../../../hooks/contentPreference/useContentPreference';
import { LazyModal } from '../../modals/common/types';
import { useLazyModal } from '../../../hooks/useLazyModal';
import { usePlusSubscription } from '../../../hooks/usePlusSubscription';
import { LogEvent, TargetId } from '../../../lib/log';
import CustomFeedOptionsMenu from '../../CustomFeedOptionsMenu';
import AuthContext from '../../../contexts/AuthContext';
import { ButtonVariant } from '../../buttons/Button';
import EntityDescription from './EntityDescription';
import useUserMenuProps from '../../../hooks/useUserMenuProps';
import useShowFollowAction from '../../../hooks/useShowFollowAction';
import type { MenuItemProps } from '../../dropdown/common';
type Props = {
user?: UserShortProfile;
className?: {
container?: string;
};
};
const UserEntityCard = ({ user, className }: Props) => {
const { user: loggedUser } = useContext(AuthContext);
const isSameUser = loggedUser?.id === user?.id;
const userId = user?.id ?? '';
const { data: contentPreference } = useContentPreferenceStatusQuery({
id: userId,
entity: ContentPreferenceType.User,
});
const { unblock, block } = useContentPreference();
const blocked = contentPreference?.status === ContentPreferenceStatus.Blocked;
const { openModal } = useLazyModal();
const { logSubscriptionEvent } = usePlusSubscription();
const menuProps = useUserMenuProps({ user });
const { isLoading } = useShowFollowAction({
entityId: userId,
entityType: ContentPreferenceType.User,
});
const onReportUser = React.useCallback(
(defaultBlocked = false) => {
if (!user?.id || !user.username) {
return;
}
openModal({
type: LazyModal.ReportUser,
props: {
offendingUser: {
id: user.id,
username: user.username,
},
defaultBlockUser: defaultBlocked,
},
});
},
[user, openModal],
);
const { username, bio, name, image, isPlus, createdAt, id, permalink } =
user || {};
const showActionBtns = !!user && !isLoading && !isSameUser;
if (!user || !id || !username || !image || !permalink || !createdAt) {
return null;
}
const options: MenuItemProps[] = [
{
icon: <BlockIcon />,
label: `${blocked ? 'Unblock' : 'Block'} ${username}`,
action: () =>
blocked
? unblock({
id,
entity: ContentPreferenceType.User,
entityName: username,
})
: block({
id,
entity: ContentPreferenceType.User,
entityName: username,
}),
},
{
icon: <FlagIcon />,
label: 'Report',
action: () => onReportUser(),
},
];
if (!blocked && !isPlus && !isSameUser) {
options.push({
icon: <GiftIcon />,
label: 'Gift daily.dev Plus',
action: () => {
logSubscriptionEvent({
event_name: LogEvent.GiftSubscription,
target_id: TargetId.Cards,
});
openModal({
type: LazyModal.GiftPlus,
props: { preselected: user },
});
},
});
}
return (
<EntityCard
permalink={permalink}
image={image}
type="user"
className={{
image: 'size-16 rounded-20',
container: className?.container,
}}
entityName={username}
actionButtons={
showActionBtns && (
<>
<CustomFeedOptionsMenu
buttonVariant={ButtonVariant.Option}
className={{
menu: 'z-[9999]',
button: 'invisible group-hover/menu:visible',
}}
{...menuProps}
additionalOptions={options}
/>
<FollowButton
variant={ButtonVariant.Primary}
entityId={id}
status={contentPreference?.status}
showSubscribe={false}
type={ContentPreferenceType.User}
entityName={username}
/>
</>
)
}
>
<div className="mt-2 flex w-full flex-col gap-3">
<Link passHref href={permalink}>
<Typography
tag={TypographyTag.Link}
className="flex"
type={TypographyType.Body}
color={TypographyColor.Primary}
bold
>
{name ?? username}
{isPlus && (
<DevPlusIcon className="ml-1 text-action-plus-default" />
)}
</Typography>
</Link>
<div className="flex items-center gap-1">
<Link passHref href={permalink}>
<Typography
tag={TypographyTag.Link}
type={TypographyType.Callout}
color={TypographyColor.Tertiary}
>
@{username}
</Typography>
</Link>
<JoinedDate
className="text-text-quaternary typo-footnote"
date={new Date(createdAt)}
dateFormat="MMM d. yyyy"
/>
</div>
<div className="flex min-w-0 gap-2">
{!!user?.reputation && (
<div className="rounded-8 border border-border-subtlest-tertiary px-2">
<ReputationUserBadge
iconProps={{
size: IconSize.Small,
className: 'text-accent-onion-default',
}}
user={user}
/>
</div>
)}
<div className="min-w-0 flex-1">
<VerifiedCompanyUserBadge
size={ProfileImageSize.Small}
user={user}
showCompanyName
showVerified
/>
</div>
</div>
{bio && <EntityDescription copy={bio} length={100} />}
</div>
</EntityCard>
);
};
export default UserEntityCard;