2024-07-19 00:36:09 +10:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
|
|
|
|
|
|
|
import PersonAddIcon from '@/material-icons/400-24px/person_add-fill.svg?react';
|
2024-08-16 20:00:59 +10:00
|
|
|
import { FollowersCounter } from 'mastodon/components/counters';
|
|
|
|
import { FollowButton } from 'mastodon/components/follow_button';
|
|
|
|
import { ShortNumber } from 'mastodon/components/short_number';
|
2024-07-19 00:36:09 +10:00
|
|
|
import type { NotificationGroupFollow } from 'mastodon/models/notification_group';
|
2024-08-16 20:00:59 +10:00
|
|
|
import { useAppSelector } from 'mastodon/store';
|
2024-07-19 00:36:09 +10:00
|
|
|
|
|
|
|
import type { LabelRenderer } from './notification_group_with_status';
|
|
|
|
import { NotificationGroupWithStatus } from './notification_group_with_status';
|
|
|
|
|
|
|
|
const labelRenderer: LabelRenderer = (values) => (
|
|
|
|
<FormattedMessage
|
|
|
|
id='notification.follow'
|
|
|
|
defaultMessage='{name} followed you'
|
|
|
|
values={values}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
|
2024-08-16 20:00:59 +10:00
|
|
|
const FollowerCount: React.FC<{ accountId: string }> = ({ accountId }) => {
|
|
|
|
const account = useAppSelector((s) => s.accounts.get(accountId));
|
|
|
|
|
|
|
|
if (!account) return null;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<ShortNumber value={account.followers_count} renderer={FollowersCounter} />
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2024-07-19 00:36:09 +10:00
|
|
|
export const NotificationFollow: React.FC<{
|
|
|
|
notification: NotificationGroupFollow;
|
|
|
|
unread: boolean;
|
2024-08-16 20:00:59 +10:00
|
|
|
}> = ({ notification, unread }) => {
|
|
|
|
let actions: JSX.Element | undefined;
|
|
|
|
let additionalContent: JSX.Element | undefined;
|
|
|
|
|
|
|
|
if (notification.sampleAccountIds.length === 1) {
|
|
|
|
// only display those if the group contains 1 account, otherwise it does not makes sense
|
|
|
|
const account = notification.sampleAccountIds[0];
|
|
|
|
|
|
|
|
if (account) {
|
|
|
|
actions = <FollowButton accountId={notification.sampleAccountIds[0]} />;
|
|
|
|
additionalContent = <FollowerCount accountId={account} />;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<NotificationGroupWithStatus
|
|
|
|
type='follow'
|
|
|
|
icon={PersonAddIcon}
|
|
|
|
iconId='person-add'
|
|
|
|
accountIds={notification.sampleAccountIds}
|
|
|
|
timestamp={notification.latest_page_notification_at}
|
|
|
|
count={notification.notifications_count}
|
|
|
|
labelRenderer={labelRenderer}
|
|
|
|
unread={unread}
|
|
|
|
actions={actions}
|
|
|
|
additionalContent={additionalContent}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
};
|