ab945dd052c843c8bdcfd5139b1d318fdc36e493
[roojs1] / Roo / bootstrap / Modal.js
1
2 /*
3 * Licence: LGPL
4 */
5
6 /**
7  * @class Roo.bootstrap.Modal
8  * @extends Roo.bootstrap.Component
9  * Bootstrap Modal class
10  * @cfg {String} title Title of dialog
11  * @cfg {String} html - the body of the dialog (for simple ones) - you can also use template..
12  * @cfg {Roo.Template} tmpl - a template with variables. to use it, add a handler in show:method  adn
13  * @cfg {Boolean} specificTitle default false
14  * @cfg {Array} buttons Array of buttons or standard button set..
15  * @cfg {String} buttonPosition (left|right|center) default right (DEPRICATED) - use mr-auto on buttons to put them on the left
16  * @cfg {Boolean} animate default true
17  * @cfg {Boolean} allow_close default true
18  * @cfg {Boolean} fitwindow default false
19  * @cfg {String} size (sm|lg) default empty
20  * @cfg {Number} max_width set the max width of modal
21  *
22  *
23  * @constructor
24  * Create a new Modal Dialog
25  * @param {Object} config The config object
26  */
27
28 Roo.bootstrap.Modal = function(config){
29     Roo.bootstrap.Modal.superclass.constructor.call(this, config);
30     this.addEvents({
31         // raw events
32         /**
33          * @event btnclick
34          * The raw btnclick event for the button
35          * @param {Roo.EventObject} e
36          */
37         "btnclick" : true,
38         /**
39          * @event resize
40          * Fire when dialog resize
41          * @param {Roo.bootstrap.Modal} this
42          * @param {Roo.EventObject} e
43          */
44         "resize" : true,
45          /**
46          * @event close
47          * Fire when the top 'x' close button is pressed.
48          * @param {Roo.bootstrap.Modal} this
49          * @param {Roo.EventObject} e
50          */
51         "close" : true
52     });
53     this.buttons = this.buttons || [];
54
55     if (this.tmpl) {
56         this.tmpl = Roo.factory(this.tmpl);
57     }
58
59 };
60
61 Roo.extend(Roo.bootstrap.Modal, Roo.bootstrap.Component,  {
62
63     title : 'test dialog',
64
65     buttons : false,
66
67     // set on load...
68
69     html: false,
70
71     tmp: false,
72
73     specificTitle: false,
74
75     buttonPosition: 'right',
76
77     allow_close : true,
78
79     animate : true,
80
81     fitwindow: false,
82     
83      // private
84     dialogEl: false,
85     bodyEl:  false,
86     footerEl:  false,
87     titleEl:  false,
88     closeEl:  false,
89
90     size: '',
91     
92     max_width: 0,
93     
94     max_height: 0,
95     
96     fit_content: false,
97
98     onRender : function(ct, position)
99     {
100         Roo.bootstrap.Component.superclass.onRender.call(this, ct, position);
101
102         if(!this.el){
103             var cfg = Roo.apply({},  this.getAutoCreate());
104             cfg.id = Roo.id();
105             //if(!cfg.name){
106             //    cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
107             //}
108             //if (!cfg.name.length) {
109             //    delete cfg.name;
110            // }
111             if (this.cls) {
112                 cfg.cls += ' ' + this.cls;
113             }
114             if (this.style) {
115                 cfg.style = this.style;
116             }
117             this.el = Roo.get(document.body).createChild(cfg, position);
118         }
119         //var type = this.el.dom.type;
120
121
122         if(this.tabIndex !== undefined){
123             this.el.dom.setAttribute('tabIndex', this.tabIndex);
124         }
125
126         this.dialogEl = this.el.select('.modal-dialog',true).first();
127         this.bodyEl = this.el.select('.modal-body',true).first();
128         this.closeEl = this.el.select('.modal-header .close', true).first();
129         this.headerEl = this.el.select('.modal-header',true).first();
130         this.titleEl = this.el.select('.modal-title',true).first();
131         this.footerEl = this.el.select('.modal-footer',true).first();
132
133         this.maskEl = Roo.DomHelper.append(document.body, {tag: "div", cls:"x-dlg-mask"}, true);
134         
135         //this.el.addClass("x-dlg-modal");
136
137         if (this.buttons.length) {
138             Roo.each(this.buttons, function(bb) {
139                 var b = Roo.apply({}, bb);
140                 b.xns = b.xns || Roo.bootstrap;
141                 b.xtype = b.xtype || 'Button';
142                 if (typeof(b.listeners) == 'undefined') {
143                     b.listeners = { click : this.onButtonClick.createDelegate(this)  };
144                 }
145
146                 var btn = Roo.factory(b);
147
148                 btn.render(this.getButtonContainer());
149
150             },this);
151         }
152         // render the children.
153         var nitems = [];
154
155         if(typeof(this.items) != 'undefined'){
156             var items = this.items;
157             delete this.items;
158
159             for(var i =0;i < items.length;i++) {
160                 nitems.push(this.addxtype(Roo.apply({}, items[i])));
161             }
162         }
163
164         this.items = nitems;
165
166         // where are these used - they used to be body/close/footer
167
168
169         this.initEvents();
170         //this.el.addClass([this.fieldClass, this.cls]);
171
172     },
173
174     getAutoCreate : function()
175     {
176         var bdy = {
177                 cls : 'modal-body',
178                 html : this.html || ''
179         };
180
181         var title = {
182             tag: 'h4',
183             cls : 'modal-title',
184             html : this.title
185         };
186
187         if(this.specificTitle){
188             title = this.title;
189
190         };
191
192         var header = [];
193         if (this.allow_close && Roo.bootstrap.version == 3) {
194             header.push({
195                 tag: 'button',
196                 cls : 'close',
197                 html : '&times'
198             });
199         }
200
201         header.push(title);
202
203         if (this.allow_close && Roo.bootstrap.version == 4) {
204             header.push({
205                 tag: 'button',
206                 cls : 'close',
207                 html : '&times'
208             });
209         }
210         
211         var size = '';
212
213         if(this.size.length){
214             size = 'modal-' + this.size;
215         }
216         
217         var footer = Roo.bootstrap.version == 3 ?
218             {
219                 cls : 'modal-footer',
220                 cn : [
221                     {
222                         tag: 'div',
223                         cls: 'btn-' + this.buttonPosition
224                     }
225                 ]
226
227             } :
228             {  // BS4 uses mr-auto on left buttons....
229                 cls : 'modal-footer'
230             };
231
232             
233
234         
235         
236         var modal = {
237             cls: "modal",
238              cn : [
239                 {
240                     cls: "modal-dialog " + size,
241                     cn : [
242                         {
243                             cls : "modal-content",
244                             cn : [
245                                 {
246                                     cls : 'modal-header',
247                                     cn : header
248                                 },
249                                 bdy,
250                                 footer
251                             ]
252
253                         }
254                     ]
255
256                 }
257             ]
258         };
259
260         if(this.animate){
261             modal.cls += ' fade';
262         }
263
264         return modal;
265
266     },
267     getChildContainer : function() {
268
269          return this.bodyEl;
270
271     },
272     getButtonContainer : function() {
273         
274          return Roo.bootstrap.version == 4 ?
275             this.el.select('.modal-footer',true).first()
276             : this.el.select('.modal-footer div',true).first();
277
278     },
279     initEvents : function()
280     {
281         if (this.allow_close) {
282             this.closeEl.on('click', this.onClosePress, this);
283         }
284         Roo.EventManager.onWindowResize(this.resize, this, true);
285
286
287     },
288     
289     onClosePress : function()
290     {
291         
292     },
293
294     resize : function()
295     {
296         this.maskEl.setSize(
297             Roo.lib.Dom.getViewWidth(true),
298             Roo.lib.Dom.getViewHeight(true)
299         );
300         
301         if (this.fitwindow) {
302             
303             var view_height = Roo.lib.Dom.getViewportHeight(true);
304             
305             this.setSize(
306                 this.width || Roo.lib.Dom.getViewportWidth(true) - 30,
307                 this.height || Roo.lib.Dom.getViewportHeight(true) // catering margin-top 30 margin-bottom 30
308             );
309             return;
310         }
311         
312         if(this.max_width !== 0) {
313             
314             var w = Math.min(this.max_width, Roo.lib.Dom.getViewportWidth(true) - 30);
315             
316             if(this.height) {
317                 this.setSize(w, this.height);
318                 return;
319             }
320             
321             if(this.max_height) {
322                 this.setSize(w,Math.min(
323                     this.max_height,
324                     Roo.lib.Dom.getViewportHeight(true) - 60
325                 ));
326                 
327                 return;
328             }
329             
330             if(!this.fit_content) {
331                 this.setSize(w, Roo.lib.Dom.getViewportHeight(true) - 60);
332                 return;
333             }
334             
335             this.setSize(w, Math.min(
336                 60 +
337                 this.headerEl.getHeight() + 
338                 this.footerEl.getHeight() + 
339                 this.getChildHeight(this.bodyEl.dom.childNodes),
340                 Roo.lib.Dom.getViewportHeight(true) - 60)
341             );
342         }
343         
344     },
345
346     setSize : function(w,h)
347     {
348         if (!w && !h) {
349             return;
350         }
351         
352         this.resizeTo(w,h);
353     },
354
355     show : function() {
356
357         if (!this.rendered) {
358             this.render();
359         }
360
361         //this.el.setStyle('display', 'block');
362         this.el.removeClass('hideing');
363         this.el.dom.style.display='block';
364         
365         Roo.get(document.body).addClass('modal-open');
366  
367         if(this.animate){  // element has 'fade'  - so stuff happens after .3s ?- not sure why the delay?
368             var _this = this;
369             (function(){
370                 this.el.addClass('show');
371                 this.el.addClass('in');
372             }).defer(50, this);
373         }else{
374             this.el.addClass('show');
375             this.el.addClass('in');
376         }
377
378         // not sure how we can show data in here..
379         //if (this.tmpl) {
380         //    this.getChildContainer().dom.innerHTML = this.tmpl.applyTemplate(this);
381         //}
382
383         Roo.get(document.body).addClass("x-body-masked");
384         
385         this.maskEl.setSize(Roo.lib.Dom.getViewWidth(true),   Roo.lib.Dom.getViewHeight(true));
386         this.maskEl.setStyle('z-index', Roo.bootstrap.Modal.zIndex++);
387         this.maskEl.dom.style.display = 'block';
388         this.maskEl.addClass('show');
389         
390         
391         this.resize();
392         
393         this.fireEvent('show', this);
394
395         // set zindex here - otherwise it appears to be ignored...
396         this.el.setStyle('z-index', Roo.bootstrap.Modal.zIndex++);
397
398         (function () {
399             this.items.forEach( function(e) {
400                 e.layout ? e.layout() : false;
401
402             });
403         }).defer(100,this);
404
405     },
406     hide : function()
407     {
408         if(this.fireEvent("beforehide", this) !== false){
409             
410             this.maskEl.removeClass('show');
411             
412             this.maskEl.dom.style.display = '';
413             Roo.get(document.body).removeClass("x-body-masked");
414             this.el.removeClass('in');
415             this.el.select('.modal-dialog', true).first().setStyle('transform','');
416
417             if(this.animate){ // why
418                 this.el.addClass('hideing');
419                 this.el.removeClass('show');
420                 (function(){
421                     if (!this.el.hasClass('hideing')) {
422                         return; // it's been shown again...
423                     }
424                     
425                     this.el.dom.style.display='';
426
427                     Roo.get(document.body).removeClass('modal-open');
428                     this.el.removeClass('hideing');
429                 }).defer(150,this);
430                 
431             }else{
432                 this.el.removeClass('show');
433                 this.el.dom.style.display='';
434                 Roo.get(document.body).removeClass('modal-open');
435
436             }
437             this.fireEvent('hide', this);
438         }
439     },
440     isVisible : function()
441     {
442         
443         return this.el.hasClass('show') && !this.el.hasClass('hideing');
444         
445     },
446
447     addButton : function(str, cb)
448     {
449
450
451         var b = Roo.apply({}, { html : str } );
452         b.xns = b.xns || Roo.bootstrap;
453         b.xtype = b.xtype || 'Button';
454         if (typeof(b.listeners) == 'undefined') {
455             b.listeners = { click : cb.createDelegate(this)  };
456         }
457
458         var btn = Roo.factory(b);
459
460         btn.render(this.getButtonContainer());
461
462         return btn;
463
464     },
465
466     setDefaultButton : function(btn)
467     {
468         //this.el.select('.modal-footer').()
469     },
470
471     resizeTo: function(w,h)
472     {
473         this.dialogEl.setWidth(w);
474         
475         var diff = this.headerEl.getHeight() + this.footerEl.getHeight() + 30; // dialog margin-bottom: 30  
476
477         this.bodyEl.setHeight(h - diff);
478         
479         this.fireEvent('resize', this);
480     },
481     
482     setContentSize  : function(w, h)
483     {
484
485     },
486     onButtonClick: function(btn,e)
487     {
488         //Roo.log([a,b,c]);
489         this.fireEvent('btnclick', btn.name, e);
490     },
491      /**
492      * Set the title of the Dialog
493      * @param {String} str new Title
494      */
495     setTitle: function(str) {
496         this.titleEl.dom.innerHTML = str;
497     },
498     /**
499      * Set the body of the Dialog
500      * @param {String} str new Title
501      */
502     setBody: function(str) {
503         this.bodyEl.dom.innerHTML = str;
504     },
505     /**
506      * Set the body of the Dialog using the template
507      * @param {Obj} data - apply this data to the template and replace the body contents.
508      */
509     applyBody: function(obj)
510     {
511         if (!this.tmpl) {
512             Roo.log("Error - using apply Body without a template");
513             //code
514         }
515         this.tmpl.overwrite(this.bodyEl, obj);
516     },
517     
518     getChildHeight : function(child_nodes)
519     {
520         if(
521             !child_nodes ||
522             child_nodes.length == 0
523         ) {
524             return;
525         }
526         
527         var child_height = 0;
528         
529         for(var i = 0; i < child_nodes.length; i++) {
530             
531             /*
532             * for modal with tabs...
533             if(child_nodes[i].classList.contains('roo-layout-panel')) {
534                 
535                 var layout_childs = child_nodes[i].childNodes;
536                 
537                 for(var j = 0; j < layout_childs.length; j++) {
538                     
539                     if(layout_childs[j].classList.contains('roo-layout-panel-body')) {
540                         
541                         var layout_body_childs = layout_childs[j].childNodes;
542                         
543                         for(var k = 0; k < layout_body_childs.length; k++) {
544                             
545                             if(layout_body_childs[k].classList.contains('navbar')) {
546                                 child_height += layout_body_childs[k].offsetHeight;
547                                 continue;
548                             }
549                             
550                             if(layout_body_childs[k].classList.contains('roo-layout-tabs-body')) {
551                                 
552                                 var layout_body_tab_childs = layout_body_childs[k].childNodes;
553                                 
554                                 for(var m = 0; m < layout_body_tab_childs.length; m++) {
555                                     
556                                     if(layout_body_tab_childs[m].classList.contains('roo-layout-active-content')) {
557                                         child_height += this.getChildHeight(layout_body_tab_childs[m].childNodes);
558                                         continue;
559                                     }
560                                     
561                                 }
562                                 
563                             }
564                             
565                         }
566                     }
567                 }
568                 continue;
569             }
570             */
571             
572             child_height += child_nodes[i].offsetHeight;
573             // Roo.log(child_nodes[i].offsetHeight);
574         }
575         
576         return child_height;
577     }
578
579 });
580
581
582 Roo.apply(Roo.bootstrap.Modal,  {
583     /**
584          * Button config that displays a single OK button
585          * @type Object
586          */
587         OK :  [{
588             name : 'ok',
589             weight : 'primary',
590             html : 'OK'
591         }],
592         /**
593          * Button config that displays Yes and No buttons
594          * @type Object
595          */
596         YESNO : [
597             {
598                 name  : 'no',
599                 html : 'No'
600             },
601             {
602                 name  :'yes',
603                 weight : 'primary',
604                 html : 'Yes'
605             }
606         ],
607
608         /**
609          * Button config that displays OK and Cancel buttons
610          * @type Object
611          */
612         OKCANCEL : [
613             {
614                name : 'cancel',
615                 html : 'Cancel'
616             },
617             {
618                 name : 'ok',
619                 weight : 'primary',
620                 html : 'OK'
621             }
622         ],
623         /**
624          * Button config that displays Yes, No and Cancel buttons
625          * @type Object
626          */
627         YESNOCANCEL : [
628             {
629                 name : 'yes',
630                 weight : 'primary',
631                 html : 'Yes'
632             },
633             {
634                 name : 'no',
635                 html : 'No'
636             },
637             {
638                 name : 'cancel',
639                 html : 'Cancel'
640             }
641         ],
642         
643         zIndex : 10001
644 });