天天看點

bootstrap weebox,支援ajax的模态彈出框(2)

②、bootstrap.weebox.js(檔案偏大,隻介紹部分)

var weeboxs = function() {
        var self = this;
        this._onbox = false;
        this._opening = false;
        this.boxs = new Array();
        this.zIndex = 999;
        this.push = function(box) {
            this.boxs.push(box);
        };
        this.pop = function() {
            if (this.boxs.length > 0) {
                return this.boxs.pop();
            } else {
                return false;
            }
        };
        // 提供給外部的open方法
        this.open = function(content, options) {
            self._opening = true;
            if (typeof (options) == "undefined") {
                options = {};
            }
            if (options.boxid) {
                this.close(options.boxid);
            }
            options.zIndex = this.zIndex;
            this.zIndex += 10;
            var box = new weebox(content, options);
            box.dh.click(function() {
                self._onbox = true;
            });
            this.push(box);
            return box;
        };
        // 提供給外部的close方法
        this.close = function(id) {
            if (id) {
                for (var i = 0; i < this.boxs.length; i++) {
                    if (this.boxs[i].dh.attr('id') == id) {
                        this.boxs[i].close();
                        this.boxs.splice(i, 1);
                    }
                }
            } else {
                this.pop().close();
            }
        };
        this.length = function() {
            return this.boxs.length;
        };
        this.getTopBox = function() {
            return this.boxs[this.boxs.length - 1];
        };
        this.find = function(selector) {
            return this.getTopBox().dh.find(selector);
        };
        this.setTitle = function(title) {
            this.getTopBox().setTitle(title);
        };
        this.getTitle = function() {
            return this.getTopBox().getTitle();
        };
        this.setContent = function(content) {
            this.getTopBox().setContent(content);
        };
        this.getContent = function() {
            return this.getTopBox().getContent();
        };
        this.hideButton = function(btname) {
            this.getTopBox().hideButton(btname);
        };
        this.showButton = function(btname) {
            this.getTopBox().showButton(btname);
        };
        this.setButtonTitle = function(btname, title) {
            this.getTopBox().setButtonTitle(btname, title);
        };

        $(window).scroll(function() {
            if (self.length() > 0) {
                var box = self.getTopBox();
                if (box.options.position == "center") {
                    box.setCenterPosition();
                }
            }
        }).bind("resize", function() {
            // 視窗在resize能夠使視窗重新居中,模态層的高度和寬度為目前document的大小
            if (self.length() > 0) {
                // 居中
                var box = self.getTopBox();
                if (box.options.position == "center") {
                    box.setCenterPosition();
                }

                if (box.mh) {
                    // 模态層先隐藏,使document的高度和寬度得到變化
                    box.mh.hide();
                    // 設定模态層新的大小
                    box.mh.css({
                        width : box.bwidth(),
                        height : box.bheight(),
                    });
                    // 展示模态層
                    box.mh.show();
                }
            }
        });

        $(document).click(function() {
            if (self.length() > 0) {
                var box = self.getTopBox();
                if (!self._opening && !self._onbox && box.options.clickClose) {
                    box.close();
                }
            }
            self._opening = false;
            self._onbox = false;
        });
    };
    $.extend({
        weeboxs : new weeboxs()
    });      

這段代碼我們可以看得到,頁面加載時就會初始化weebox的基礎參數、方法。

通過提供open方法,外部可以将基礎的參數options還有url傳遞到weebox對象中。

緊接着,weebox通過new weebox(content, options)建立weebox對象,稍候介紹。

然後呢,為了能夠産生響應式,weebox綁定了視窗的resize、scroll,這兩個方法很關鍵,resize是為了視窗在縮放過程中,彈出框的模态層、彈出框能夠重新繪制大小和居中,scroll為了彈出礦口始終處于window視窗的中心位置(setCenterPosition,稍候介紹)。

1.setCenterPosition 方法

// 居中
this.setCenterPosition = function() {
    var wnd = $(window), doc = $(document);

    // 大小不能超過視窗大小,很關鍵哦
    var iContentW = wnd.width() - 40;
    var iContentH = self.options.maxheight || wnd.height() - 100 * 2 - 40;
    self.dc.css({
        "max-height" : iContentH + 'px',
        "max-width" : iContentW + 'px',
    });
    self.dheader.css({
        "max-width" : iContentW + 'px',
    });
    self.df.css({
        "max-width" : iContentW + 'px',
    });

    // 設定top和left,使視窗居中
    self.dh.css({
        top : (wnd.height() - self.dh.height()) / 2 + doc.scrollTop(),
        left : (wnd.width() - self.dh.width()) / 2 + doc.scrollLeft()
    });

};      
2.initContent 方法,加載視窗内容
// 加載内容
this.initContent = function(content) {
    // ok button的名字
    self.bo.val(self.options.okBtnName);
    // cancel button的名字
    self.bc.val(self.options.cancelBtnName);

    // 視窗标題
    self.setTitle(self.options.title);

    if (!self.options.showTitle) {
        self.dheader.hide();
    }
    if (!self.options.showButton) {
        self.df.hide();
    }
    if (!self.options.showCancel) {
        self.bc.hide();
    }
    if (!self.options.showOk) {
        self.bo.hide();
    }
    if (self.options.contentType == "selector") {
        self.selector = self._content;
        self._content = $(self.selector).html();
        self.setContent(self._content);
        // if have checkbox do
        var cs = $(self.selector).find(':checkbox');
        self.dc.find(':checkbox').each(function(i) {
            this.checked = cs[i].checked;
        });
        $(self.selector).empty();
        self.onopen();
        self.show();
        self.focus();
    } else if (self.options.contentType == "ajax") {// content為ajax時,能夠将view視圖加載到彈出視窗中
        self.ajaxurl = self._content;
        // loading
        self.setContent('<div class="well well-large well-transparent lead"> <i class="icon-spinner icon-spin icon-2x pull-left"></i> 内容加載中... </div>');

        self.show();

        $.ajax({
            type : "post",
            cache : false,
            url : self.ajaxurl,
            success : function(data) {
                // 處理view視圖資料
                var json = YUNM.jsonEval(data);

                // 出現error時,關閉目前視窗,彈出錯誤消息
                if (json[YUNM.keys.statusCode] == YUNM.statusCode.error) {
                    self.close();
                    $.showErr(json[YUNM.keys.message]);
                } else {
                    // 正常情況下,顯示内容
                    self._content = data;
                    self.setContent(self._content);

                    // 設定打開事件
                    self.onopen();
                    // 設定焦點
                    self.focus();

                    // 居中顯示
                    if (self.options.position == 'center') {
                        self.setCenterPosition();
                    }
                }

            },
            // 通過彈出的對話框顯示錯誤資訊
            error : function(xhr, ajaxOptions, thrownError) {
                self.close();
                YUNM.ajaxError(xhr, ajaxOptions, thrownError);
            }
        });
    } else if (self.options.contentType == "image") {// image類型時,彈出圖檔
        self.setContent('<img src=' + self._content + ' ></div>');
        self.onopen();
        self.show();
        self.focus();
    } else {
        self.setContent(self._content);
        self.onopen();
        self.show();
        self.focus();
    }
};      

以上提供的這部分代碼很關鍵,無論你使用何種模态彈出框,其核心方法無非上述列出的内容,當然了,文章開頭也說了,你可以通過git下載下傳完整的源碼。