blob: efd76280eec4c17f860632c92acfce2e56acccab [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import Modal from './modal'
const CONTENT_CLASS = 'content'
const MSG_CLASS = 'content-msg'
const BUTTON_GROUP_CLASS = 'btn-group'
const BUTTON_CLASS = 'btn'
export default function Confirm (config) {
this.msg = config.message || ''
this.callback = config.callback
this.okTitle = config.okTitle || 'OK'
this.cancelTitle = config.cancelTitle || 'Cancel'
Modal.call(this)
this.node.classList.add('weex-confirm')
}
Confirm.prototype = Object.create(Modal.prototype)
Confirm.prototype.createNodeContent = function () {
const content = document.createElement('div')
content.classList.add(CONTENT_CLASS)
this.node.appendChild(content)
const msg = document.createElement('div')
msg.classList.add(MSG_CLASS)
msg.appendChild(document.createTextNode(this.msg))
content.appendChild(msg)
const buttonGroup = document.createElement('div')
buttonGroup.classList.add(BUTTON_GROUP_CLASS)
this.node.appendChild(buttonGroup)
const btnOk = document.createElement('div')
btnOk.appendChild(document.createTextNode(this.okTitle))
btnOk.classList.add('btn-ok', BUTTON_CLASS)
const btnCancel = document.createElement('div')
btnCancel.appendChild(document.createTextNode(this.cancelTitle))
btnCancel.classList.add('btn-cancel', BUTTON_CLASS)
buttonGroup.appendChild(btnOk)
buttonGroup.appendChild(btnCancel)
this.node.appendChild(buttonGroup)
}
Confirm.prototype.bindEvents = function () {
Modal.prototype.bindEvents.call(this)
const btnOk = this.node.querySelector('.' + BUTTON_CLASS + '.btn-ok')
const btnCancel = this.node.querySelector('.' + BUTTON_CLASS + '.btn-cancel')
btnOk.addEventListener('click', function () {
this.destroy()
this.callback && this.callback(this.okTitle)
}.bind(this))
btnCancel.addEventListener('click', function () {
this.destroy()
this.callback && this.callback(this.cancelTitle)
}.bind(this))
}