1.0.18 • Published 4 years ago

message-temp-demo v1.0.18

Weekly downloads
-
License
-
Repository
github
Last release
4 years ago

React-message-dialog component

A React.js MessageDialog component is used for showing dialog with message.
You can 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

<template>
  <div id="app">
    <button @click="onShowModal">Show Modal</button>
    <AlertBox
      :id="'alertbox'"
      :name="'alertbox'"
      :visible="isShowErrorInModal"
      :content="'Enter here your content'"
      :buttons="alertButtons"
      :show-header="true"
      :header-content="'Enter here your header content'"
      :closable="true"
      :no-of-button="3"
      :index="1"
      @onButtonClick="onClickButton"
      @close="onCrossClick"
      @hide="onHideMessageBox"
    />
  </div>
</template>
import AlertBox from "vue-weblineindia-message-dialog-box";
export default {
  components: {
    AlertBox
  },
  data() {
    return {
      alertButtons: [
        { id: 0, title: "Yes" },
        { id: 1, title: "No" },
        { id: 1, title: "Cancel" }
      ],
      isShowErrorInModal: false
    };
  },
  methods: {
    onShowModal() {
      this.isShowErrorInModal = true;
    },
    onClickButton(value) {
      this.isShowErrorInModal = false;
      switch (value.title) {
        case "Yes":
          // do something on Yes button
          break;
        case "No":
          // do something on No button
          break;
        case "Cancel":
          // do something on Cancel button
          break;
      }
    },
    onCrossClick() {
      this.isShowErrorInModal = false;
    },
    onHideMessageBox() {
      this.isShowErrorInModal = false;
    }
  }
};

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.
closableBooleanfalseAdds a close icon to the header to hide the dialog.
noOfButtonNumber0number of button on modal.
indexNumber0index of the component
valueStringvalue of the component

Methods

NameDescriptionValue
onButtonClickEmitted when the button clickEvent
closeEmitted when click on the close modalEvent
hideEmitted when input is clickedEvent

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.

Need Help?

We also provide a free, basic support for all users who want to use this ReactJS modal dialog in their software project. In case you want to customize this modal dialog to suit your development needs, then feel free to contact our ReactJS developers.


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.

Credits

react-weblineindia-message-dialog-box is inspired by bootstrap-vue.

License

MIT

1.0.18

4 years ago

1.0.17

4 years ago

1.0.16

4 years ago

1.0.15

4 years ago

1.0.14

4 years ago

1.0.13

4 years ago

1.0.12

4 years ago

1.0.11

4 years ago