lbry-desktop/ui/component/common/nag.jsx

58 lines
1.4 KiB
React
Raw Normal View History

2019-12-06 22:12:48 +01:00
// @flow
2020-02-21 22:05:20 +01:00
import type { Node } from 'react';
2019-12-06 22:12:48 +01:00
import * as ICONS from 'constants/icons';
2020-02-26 19:39:03 +01:00
import classnames from 'classnames';
2019-12-06 22:12:48 +01:00
import React from 'react';
import Button from 'component/button';
type Props = {
2020-02-21 22:05:20 +01:00
message: string | Node,
actionText?: string,
2019-12-06 22:12:48 +01:00
href?: string,
2020-02-26 19:39:03 +01:00
type?: string,
inline?: boolean,
relative?: boolean,
2019-12-06 22:12:48 +01:00
onClick?: () => void,
onClose?: () => void,
};
export default function Nag(props: Props) {
const { message, actionText, href, onClick, onClose, type, inline, relative } = props;
2019-12-06 22:12:48 +01:00
const buttonProps = onClick ? { onClick } : { href };
return (
<div
className={classnames('nag', {
'nag--helpful': type === 'helpful',
'nag--error': type === 'error',
'nag--inline': inline,
'nag--relative': relative,
})}
>
2020-03-26 16:18:05 +01:00
<div className="nag__message">{message}</div>
{(href || onClick) && (
<Button
className={classnames('nag__button', {
'nag__button--helpful': type === 'helpful',
'nag__button--error': type === 'error',
})}
{...buttonProps}
>
{actionText}
</Button>
)}
{onClose && (
<Button
className={classnames('nag__button nag__close', {
'nag__button--helpful': type === 'helpful',
'nag__button--error': type === 'error',
})}
icon={ICONS.REMOVE}
onClick={onClose}
/>
)}
2019-12-06 22:12:48 +01:00
</div>
);
}