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