You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
1.8 KiB
81 lines
1.8 KiB
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)
|
|
|
|
|