浏览代码

Tweaks to Modal methods. Modal will now listen for a 'modal-open' and 'modal-close' event.

dev-tmpl
Bryan Miller 6 年前
父节点
当前提交
cc2464cb77
共有 1 个文件被更改,包括 29 次插入27 次删除
  1. +29
    -27
      app/js/ui/Modal.js

+ 29
- 27
app/js/ui/Modal.js 查看文件

class Modal{ class Modal{
constructor(){ constructor(){
this.__currentModalEl = null; this.__currentModalEl = null;
this.__initialized = false;


EventWindow.listen("onclick", (function(event){ EventWindow.listen("onclick", (function(event){
if (event.target === this.__currentModalEl){ if (event.target === this.__currentModalEl){
this.close_modal(); this.close_modal();
} }
}).bind(this)); }).bind(this));

EventWindow.listen("modal-open", (function(event){
if (event.hasOwnProperty("id") && typeof(event.id) === 'string'){
var force = (event.hasOwnProperty("force")) ? event.force === true : false;
this.open_modal_id(event.id, force);
}
}).bind(this));

EventWindow.listen("modal-close", (function(event){
this.close_modal();
}).bind(this));
} }


get currentModalElement(){ get currentModalElement(){
return this.__currentModalEl; return this.__currentModalEl;
} }


open_modal_by_id(idname){
if (this.__initialized === true && this.__currentModalEl === null){
var el = document.getElementById(idname);
if (el){
return this.open_modal_element(el);
open_modal_id(idname, force=false){
var el = document.getElementById(idname);
if (el.classList.contains("modal") && this.__currentModalEl !== el){
if (this.__currentModalEl !== null && force)
this.close_modal();
if (this.__currentModalEl === null){
if (el){
return this.open_modal_element(el);
}
} }
} }
return this; return this;
} }


open_modal_element(el){
if (this.__initialized === true, this.__currentModalEl === null && el.classList.contains("modal")){
el.classList.add("modal-visible");
this.__currentModalEl = el;
open_modal_element(el, force=false){
if (el.classList.contains("modal")){
if (this.__currentModalEl !== null && force)
this.close_modal();
if this.__currentModalEl === null){
el.classList.add("modal-visible");
this.__currentModalEl = el;
}
} }
return this; return this;
} }
close_modal(){ close_modal(){
if (this.__currentModalEl !== null){ if (this.__currentModalEl !== null){
this.__currentModalEl.classList.remove("modal-visible"); this.__currentModalEl.classList.remove("modal-visible");
this.__currentModalEl = null;
} }
return this; return this;
} }

initialize_btn_element(el){
if (this.__initialized === true){
if (el.hasAttribute("data-modal-open")){

} else if (el.hasAttribute("data-modal-close")){

} else if (el.hasAttribute("data-modal-toggle")){

}
}
return this;
}

initialize(){
;
}
} }





正在加载...
取消
保存