aboutsummaryrefslogblamecommitdiffstats
path: root/ui/app/components/modals/notification-modal.js
blob: 46a4c8a2174e9cd50bc01f7c5db2db85593166ff (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11


                                       
                                              






                                           



                                

                  

                                                             
                     
                                            

          
                                                 
                                 

           

                                                          
                                    



                                
                             

           














                                                                                    







                               



                                    
                      









                                        



                                  
                                                                     
 
const { Component } = require('react')
const PropTypes = require('prop-types')
const h = require('react-hyperscript')
const connect = require('react-redux').connect
const actions = require('../../actions')

class NotificationModal extends Component {
  render () {
    const {
      header,
      message,
      showCancelButton = false,
      showConfirmButton = false,
      hideModal,
      onConfirm,
    } = this.props

    const showButtons = showCancelButton || showConfirmButton

    return h('div', [
      h('div.notification-modal__wrapper', {
      }, [

        h('div.notification-modal__header', {}, [
          this.context.t(header),
        ]),

        h('div.notification-modal__message-wrapper', {}, [
          h('div.notification-modal__message', {}, [
            this.context.t(message),
          ]),
        ]),

        h('div.modal-close-x', {
          onClick: hideModal,
        }),

        showButtons && h('div.notification-modal__buttons', [

          showCancelButton && h('div.btn-cancel.notification-modal__buttons__btn', {
            onClick: hideModal,
          }, 'Cancel'),

          showConfirmButton && h('div.btn-clear.notification-modal__buttons__btn', {
            onClick: () => {
              onConfirm()
              hideModal()
            },
          }, 'Confirm'),

        ]),

      ]),
    ])
  }
}

NotificationModal.propTypes = {
  hideModal: PropTypes.func,
  header: PropTypes.string,
  message: PropTypes.node,
  showCancelButton: PropTypes.bool,
  showConfirmButton: PropTypes.bool,
  onConfirm: PropTypes.func,
    t: PropTypes.func,
}

const mapDispatchToProps = dispatch => {
  return {
    hideModal: () => {
      dispatch(actions.hideModal())
    },
  }
}

NotificationModal.contextTypes = {
  t: PropTypes.func,
}

module.exports = connect(null, mapDispatchToProps)(NotificationModal)