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

47 lines
1.2 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,
2019-12-06 22:12:48 +01:00
actionText: string,
href?: string,
2020-02-26 19:39:03 +01:00
type?: string,
2019-12-06 22:12:48 +01:00
onClick?: () => void,
onClose?: () => void,
};
export default function Nag(props: Props) {
2020-02-26 19:39:03 +01:00
const { message, actionText, href, onClick, onClose, type } = 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' })}>
2019-12-06 22:12:48 +01:00
{message}
<Button
className={classnames('nag__button', {
'nag__button--helpful': type === 'helpful',
'nag__button--error': type === 'error',
})}
{...buttonProps}
>
2019-12-06 22:12:48 +01:00
{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>
);
}