24 lines
645 B
JavaScript
24 lines
645 B
JavaScript
import React from 'react';
|
|
import { createPortal } from 'react-dom';
|
|
|
|
export function FlashMessage({ message, level, sticky, fixed }) {
|
|
return createPortal(
|
|
<div className="flash_message center">
|
|
<div className={flashClassName(level, sticky, fixed)}>{message}</div>
|
|
</div>,
|
|
document.getElementById('flash_messages')
|
|
);
|
|
}
|
|
|
|
function flashClassName(level, sticky = false, fixed = false) {
|
|
const className =
|
|
level == 'notice' ? ['alert', 'alert-success'] : ['alert', 'alert-danger'];
|
|
|
|
if (sticky) {
|
|
className.push('sticky');
|
|
}
|
|
if (fixed) {
|
|
className.push('alert-fixed');
|
|
}
|
|
return className.join(' ');
|
|
}
|