2020-08-10 22:47:39 +02:00
|
|
|
// @flow
|
|
|
|
import React from 'react';
|
2020-08-11 22:32:03 +02:00
|
|
|
import classnames from 'classnames';
|
2020-08-10 22:47:39 +02:00
|
|
|
|
|
|
|
type Props = {
|
2021-03-16 02:42:49 +01:00
|
|
|
unseenCount: number,
|
2020-08-11 22:32:03 +02:00
|
|
|
inline: boolean,
|
|
|
|
user: ?User,
|
2020-08-10 22:47:39 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
export default function NotificationHeaderButton(props: Props) {
|
2021-03-16 02:42:49 +01:00
|
|
|
const { unseenCount, inline = false, user } = props;
|
2020-08-11 22:32:03 +02:00
|
|
|
const notificationsEnabled = user && user.experimental_ui;
|
2020-08-10 22:47:39 +02:00
|
|
|
|
2021-03-16 02:42:49 +01:00
|
|
|
if (unseenCount === 0 || !notificationsEnabled) {
|
2020-08-10 22:47:39 +02:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
2020-08-11 22:32:03 +02:00
|
|
|
<span
|
|
|
|
className={classnames('notification__bubble', {
|
|
|
|
'notification__bubble--inline': inline,
|
|
|
|
})}
|
|
|
|
>
|
2021-01-11 16:43:39 +01:00
|
|
|
<span
|
|
|
|
className={classnames('notification__count', {
|
2021-03-16 02:42:49 +01:00
|
|
|
'notification__bubble--small': unseenCount > 9,
|
2021-01-11 16:43:39 +01:00
|
|
|
})}
|
|
|
|
>
|
2021-03-16 02:42:49 +01:00
|
|
|
{unseenCount > 20 ? '20+' : unseenCount}
|
2021-01-11 16:43:39 +01:00
|
|
|
</span>
|
2020-08-10 22:47:39 +02:00
|
|
|
</span>
|
|
|
|
);
|
|
|
|
}
|