35 lines
851 B
JavaScript
35 lines
851 B
JavaScript
// @flow
|
|
import React from 'react';
|
|
import classnames from 'classnames';
|
|
import { ENABLE_UI_NOTIFICATIONS } from 'config';
|
|
|
|
type Props = {
|
|
unseenCount: number,
|
|
inline: boolean,
|
|
user: ?User,
|
|
};
|
|
|
|
export default function NotificationHeaderButton(props: Props) {
|
|
const { unseenCount, inline = false, user } = props;
|
|
const notificationsEnabled = ENABLE_UI_NOTIFICATIONS || (user && user.experimental_ui);
|
|
|
|
if (unseenCount === 0 || !notificationsEnabled) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<span
|
|
className={classnames('notification__bubble', {
|
|
'notification__bubble--inline': inline,
|
|
})}
|
|
>
|
|
<span
|
|
className={classnames('notification__count', {
|
|
'notification__bubble--small': unseenCount > 9,
|
|
})}
|
|
>
|
|
{unseenCount > 20 ? '20+' : unseenCount}
|
|
</span>
|
|
</span>
|
|
);
|
|
}
|