mirror of
https://github.com/fleetdm/fleet
synced 2026-05-18 14:38:53 +00:00
57 lines
1.5 KiB
JavaScript
57 lines
1.5 KiB
JavaScript
import React, { PropTypes } from 'react';
|
|
import classnames from 'classnames';
|
|
|
|
import notificationInterface from 'interfaces/notification';
|
|
import Icon from 'components/icons/Icon';
|
|
import Button from 'components/buttons/Button';
|
|
|
|
const baseClass = 'flash-message';
|
|
|
|
const FlashMessage = ({ fullWidth, notification, onRemoveFlash, onUndoActionClick }) => {
|
|
const { alertType, isVisible, message, undoAction } = notification;
|
|
const klass = classnames(baseClass, `${baseClass}--${alertType}`, {
|
|
[`${baseClass}--full-width`]: fullWidth,
|
|
});
|
|
|
|
if (!isVisible) {
|
|
return false;
|
|
}
|
|
|
|
const alertIcon = alertType === 'success' ? 'success-check' : 'warning-filled';
|
|
|
|
return (
|
|
<div className={klass}>
|
|
<div className={`${baseClass}__content`}>
|
|
<Icon name={alertIcon} /> <span>{message}</span>
|
|
|
|
{undoAction &&
|
|
<Button
|
|
className={`${baseClass}__undo`}
|
|
variant="unstyled"
|
|
onClick={onUndoActionClick(undoAction)}
|
|
>
|
|
Undo
|
|
</Button>
|
|
}
|
|
</div>
|
|
<div className={`${baseClass}__action`}>
|
|
<Button
|
|
className={`${baseClass}__remove ${baseClass}__remove--${alertType}`}
|
|
variant="unstyled"
|
|
onClick={onRemoveFlash}
|
|
>
|
|
<Icon name="x" />
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
FlashMessage.propTypes = {
|
|
fullWidth: PropTypes.bool,
|
|
notification: notificationInterface,
|
|
onRemoveFlash: PropTypes.func,
|
|
onUndoActionClick: PropTypes.func,
|
|
};
|
|
|
|
export default FlashMessage;
|