1.0.2 • Published 18 days ago

react-weblineindia-message-dialog-box v1.0.2

Weekly downloads
3
License
MIT
Repository
github
Last release
18 days ago

ReactJS - MessageDialog component

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.

Table of contents

Browser Support

ChromeFirefoxSafariEdgeIE
83.0 ✔77.0 ✔13.1.1 ✔83.0 ✔11.9 ✔

Demo

npm.io

Getting started

npm install react-weblineindia-message-dialog-box
# or use npm
yarn add react-weblineindia-message-dialog-box

Usage

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;

Available Props

PropData TypeDefaultDescription
idstringid of the component
namestringname of the component
visibleBooleanfalseShow/Hide Modal.
contentStringContent of the modal
buttonsArray[]Buttons objects to contain the button label, button click event, no buttons etc.
showHeaderbooleanfalseTo hide or show the header of the component.
headerContentStringheader Content of the modal.

Methods

NameDescriptionValue
onButtonClickEmitted when the button clickevent
closeEmitted when click on the close modalevent ,modalValue

Want to Contribute?

  • 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.

Collection of Components

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.


Changelog

Detailed changes for each release are documented in CHANGELOG.md.

License

MIT

Keywords

react-weblineindia-message-dialog-box, message-dialog-box, react-message-dialog-box, reactjs-message-dialog-box, alertbox, messagedialog, message-dialogbox, react-alertbox