mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2025-12-24 22:52:40 +00:00
32 lines
700 B
JavaScript
32 lines
700 B
JavaScript
// Dialog box, for popups and modal blocking messages
|
|
import React from 'react';
|
|
const { useRef, useEffect } = React;
|
|
|
|
function Dialog({ dismisskeys = [], closeText = 'Close', blocking = false, ...rest }) {
|
|
const dialogRef = useRef(null);
|
|
|
|
useEffect(()=>{
|
|
blocking ? dialogRef.current?.showModal() : dialogRef.current?.show();
|
|
}, []);
|
|
|
|
const dismiss = ()=>{
|
|
dismisskeys.forEach((key)=>{
|
|
if(key) {
|
|
localStorage.setItem(key, 'true');
|
|
}
|
|
});
|
|
dialogRef.current?.close();
|
|
};
|
|
|
|
return (
|
|
<dialog ref={dialogRef} onCancel={dismiss} {...rest}>
|
|
{rest.children}
|
|
<button className='dismiss' onClick={dismiss}>
|
|
{closeText}
|
|
</button>
|
|
</dialog>
|
|
);
|
|
};
|
|
|
|
export default Dialog;
|