ReactJS based MessageDialog component used for showing custom dialog with message. You can even change number of buttons on that. You can also hide header and cross icon.
- Browser Support
- Demo
- Getting started
- Usage
- Available Props
- Methods
- Want to Contribute?
- Collection of Other Components
- Changelog
- License
83.0 ✔ | 77.0 ✔ | 13.1.1 ✔ | 83.0 ✔ | 11.9 ✔ |
npm install react-weblineindia-message-dialog-box
# or use npm
yarn add react-weblineindia-message-dialog-box
import React, { Component } from "react";
import MessageDialogBox from 'react-weblineindia-message-dialog-box'
class Test extends Component {
constructor(props) {
super(props);
this.state = {
visible: true,
content: "Hello",
showHeader: "Modal Title",
buttons: [
{
id: 1,
title: "Yes"
},
{
id: 2,
title: "No"
}
]
};
}
onClose(value) {
this.setState({
visible: value
});
}
onButtonClick(event, value) {
this.setState({
visible: !value
});
}
render() {
return (
<div>
<MessageDialogBox
content={this.state.content}
visible={this.state.visible}
buttons={this.state.buttons}
onClose={this.onClose.bind(this)}
onButtonClick={this.onButtonClick.bind(this)}
/>
</div>
);
}
}
export default Test;
Prop | Data Type | Default | Description |
---|---|---|---|
id |
string | id of the component | |
name |
string | name of the component | |
visible |
Boolean | false | Show/Hide Modal. |
content |
String | Content of the modal | |
buttons |
Array | [] | Buttons objects to contain the button label, button click event, no buttons etc. |
showHeader |
boolean | false | To hide or show the header of the component. |
headerContent |
String | header Content of the modal. |
Name | Description | Value |
---|---|---|
onButtonClick |
Emitted when the button click | event |
close |
Emitted when click on the close modal | event ,modalValue |
- Created something awesome, made this code better, added some functionality, or whatever (this is the hardest part).
- Fork it.
- Create new branch to contribute your changes.
- Commit all your changes to your branch.
- Submit a pull request.
We have built many other components and free resources for software development in various programming languages. Kindly click here to view our Free Resources for Software Development.
Detailed changes for each release are documented in CHANGELOG.md.
react-weblineindia-message-dialog-box, message-dialog-box, react-message-dialog-box, reactjs-message-dialog-box, alertbox, messagedialog, message-dialogbox, react-alertbox