Easy to use, function-based, type safe dialogs manager for React.
# yarn
yarn install easy-dialogs
# npm
npm install easy-dialogs
# pnpm
pnpm install easy-dialogs
import { Dialog } from "easy-dialogs"
function App() {
return (
<section>
{/* ...rest of your root layout */}
<Dialog />
</section>
)
}
export default App
import DialogComponent from "../components/DialogComponent";
export const dialogs = [
{ id: "test-dialog", component: DialogComponent }
// Here you can add more dialogs
] as const
import { useDialogManager } from "easy-dialogs";
import { dialogs } from "../libs/dialogs";
const List = () => {
const { callDialog } = useDialogManager(dialogs)
return (
<div>
<button onClick={async () => {
const result = await callDialog("test-dialog")
if(result) {
alert('Result is success!')
}else{
alert('Result is failure :(')
}
}}>Call me!</button>
</div>
);
}
export default List;
Dialog components MUST return some value. callDialog()
function awaits for the response from the Dialog component.
Example:
type ExampleDialogType = {
onClose: (val: boolean) => void,
additionalProps?: {
id: string
}
}
const DialogComponent: React.FC<ExampleDialogType> = ({ onClose, additionalProps }) => {
return (
<div>
<h1>Example dialog {additionalProps?.id}</h1>
<button onClick={() => onClose(true)}>Success!</button>
<button onClick={() => onClose(false)}>Failure :(</button>
</div>
);
}
export default DialogComponent;