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          * @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.hide, this);
283         }
284         Roo.EventManager.onWindowResize(this.resize, this, true);
285
286
287     },
288   
289
290     resize : function()
291     {
292         this.maskEl.setSize(
293             Roo.lib.Dom.getViewWidth(true),
294             Roo.lib.Dom.getViewHeight(true)
295         );
296         
297         if (this.fitwindow) {
298             
299             var view_height = Roo.lib.Dom.getViewportHeight(true);
300             
301             this.setSize(
302                 this.width || Roo.lib.Dom.getViewportWidth(true) - 30,
303                 this.height || Roo.lib.Dom.getViewportHeight(true) // catering margin-top 30 margin-bottom 30
304             );
305             return;
306         }
307         
308         if(this.max_width !== 0) {
309             
310             var w = Math.min(this.max_width, Roo.lib.Dom.getViewportWidth(true) - 30);
311             
312             if(this.height) {
313                 this.setSize(w, this.height);
314                 return;
315             }
316             
317             if(this.max_height) {
318                 this.setSize(w,Math.min(
319                     this.max_height,
320                     Roo.lib.Dom.getViewportHeight(true) - 60
321                 ));
322                 
323                 return;
324             }
325             
326             if(!this.fit_content) {
327                 this.setSize(w, Roo.lib.Dom.getViewportHeight(true) - 60);
328                 return;
329             }
330             
331             this.setSize(w, Math.min(
332                 60 +
333                 this.headerEl.getHeight() + 
334                 this.footerEl.getHeight() + 
335                 this.getChildHeight(this.bodyEl.dom.childNodes),
336                 Roo.lib.Dom.getViewportHeight(true) - 60)
337             );
338         }
339         
340     },
341
342     setSize : function(w,h)
343     {
344         if (!w && !h) {
345             return;
346         }
347         
348         this.resizeTo(w,h);
349     },
350
351     show : function() {
352
353         if (!this.rendered) {
354             this.render();
355         }
356
357         //this.el.setStyle('display', 'block');
358         this.el.removeClass('hideing');
359         this.el.dom.style.display='block';
360         
361         Roo.get(document.body).addClass('modal-open');
362  
363         if(this.animate){  // element has 'fade'  - so stuff happens after .3s ?- not sure why the delay?
364             var _this = this;
365             (function(){
366                 this.el.addClass('show');
367                 this.el.addClass('in');
368             }).defer(50, this);
369         }else{
370             this.el.addClass('show');
371             this.el.addClass('in');
372         }
373
374         // not sure how we can show data in here..
375         //if (this.tmpl) {
376         //    this.getChildContainer().dom.innerHTML = this.tmpl.applyTemplate(this);
377         //}
378
379         Roo.get(document.body).addClass("x-body-masked");
380         
381         this.maskEl.setSize(Roo.lib.Dom.getViewWidth(true),   Roo.lib.Dom.getViewHeight(true));
382         this.maskEl.setStyle('z-index', Roo.bootstrap.Modal.zIndex++);
383         this.maskEl.dom.style.display = 'block';
384         this.maskEl.addClass('show');
385         
386         
387         this.resize();
388         
389         this.fireEvent('show', this);
390
391         // set zindex here - otherwise it appears to be ignored...
392         this.el.setStyle('z-index', Roo.bootstrap.Modal.zIndex++);
393
394         (function () {
395             this.items.forEach( function(e) {
396                 e.layout ? e.layout() : false;
397
398             });
399         }).defer(100,this);
400
401     },
402     hide : function()
403     {
404         if(this.fireEvent("beforehide", this) !== false){
405             
406             this.maskEl.removeClass('show');
407             
408             this.maskEl.dom.style.display = '';
409             Roo.get(document.body).removeClass("x-body-masked");
410             this.el.removeClass('in');
411             this.el.select('.modal-dialog', true).first().setStyle('transform','');
412
413             if(this.animate){ // why
414                 this.el.addClass('hideing');
415                 this.el.removeClass('show');
416                 (function(){
417                     if (!this.el.hasClass('hideing')) {
418                         return; // it's been shown again...
419                     }
420                     
421                     this.el.dom.style.display='';
422
423                     Roo.get(document.body).removeClass('modal-open');
424                     this.el.removeClass('hideing');
425                 }).defer(150,this);
426                 
427             }else{
428                 this.el.removeClass('show');
429                 this.el.dom.style.display='';
430                 Roo.get(document.body).removeClass('modal-open');
431
432             }
433             this.fireEvent('hide', this);
434         }
435     },
436     isVisible : function()
437     {
438         
439         return this.el.hasClass('show') && !this.el.hasClass('hideing');
440         
441     },
442
443     addButton : function(str, cb)
444     {
445
446
447         var b = Roo.apply({}, { html : str } );
448         b.xns = b.xns || Roo.bootstrap;
449         b.xtype = b.xtype || 'Button';
450         if (typeof(b.listeners) == 'undefined') {
451             b.listeners = { click : cb.createDelegate(this)  };
452         }
453
454         var btn = Roo.factory(b);
455
456         btn.render(this.getButtonContainer());
457
458         return btn;
459
460     },
461
462     setDefaultButton : function(btn)
463     {
464         //this.el.select('.modal-footer').()
465     },
466
467     resizeTo: function(w,h)
468     {
469         this.dialogEl.setWidth(w);
470         
471         var diff = this.headerEl.getHeight() + this.footerEl.getHeight() + 60; // dialog margin-bottom: 30  
472
473         this.bodyEl.setHeight(h - diff);
474         
475         this.fireEvent('resize', this);
476     },
477     
478     setContentSize  : function(w, h)
479     {
480
481     },
482     onButtonClick: function(btn,e)
483     {
484         //Roo.log([a,b,c]);
485         this.fireEvent('btnclick', btn.name, e);
486     },
487      /**
488      * Set the title of the Dialog
489      * @param {String} str new Title
490      */
491     setTitle: function(str) {
492         this.titleEl.dom.innerHTML = str;
493     },
494     /**
495      * Set the body of the Dialog
496      * @param {String} str new Title
497      */
498     setBody: function(str) {
499         this.bodyEl.dom.innerHTML = str;
500     },
501     /**
502      * Set the body of the Dialog using the template
503      * @param {Obj} data - apply this data to the template and replace the body contents.
504      */
505     applyBody: function(obj)
506     {
507         if (!this.tmpl) {
508             Roo.log("Error - using apply Body without a template");
509             //code
510         }
511         this.tmpl.overwrite(this.bodyEl, obj);
512     },
513     
514     getChildHeight : function(child_nodes)
515     {
516         if(
517             !child_nodes ||
518             child_nodes.length == 0
519         ) {
520             return;
521         }
522         
523         var child_height = 0;
524         
525         for(var i = 0; i < child_nodes.length; i++) {
526             
527             /*
528             * for modal with tabs...
529             if(child_nodes[i].classList.contains('roo-layout-panel')) {
530                 
531                 var layout_childs = child_nodes[i].childNodes;
532                 
533                 for(var j = 0; j < layout_childs.length; j++) {
534                     
535                     if(layout_childs[j].classList.contains('roo-layout-panel-body')) {
536                         
537                         var layout_body_childs = layout_childs[j].childNodes;
538                         
539                         for(var k = 0; k < layout_body_childs.length; k++) {
540                             
541                             if(layout_body_childs[k].classList.contains('navbar')) {
542                                 child_height += layout_body_childs[k].offsetHeight;
543                                 continue;
544                             }
545                             
546                             if(layout_body_childs[k].classList.contains('roo-layout-tabs-body')) {
547                                 
548                                 var layout_body_tab_childs = layout_body_childs[k].childNodes;
549                                 
550                                 for(var m = 0; m < layout_body_tab_childs.length; m++) {
551                                     
552                                     if(layout_body_tab_childs[m].classList.contains('roo-layout-active-content')) {
553                                         child_height += this.getChildHeight(layout_body_tab_childs[m].childNodes);
554                                         continue;
555                                     }
556                                     
557                                 }
558                                 
559                             }
560                             
561                         }
562                     }
563                 }
564                 continue;
565             }
566             */
567             
568             child_height += child_nodes[i].offsetHeight;
569             // Roo.log(child_nodes[i].offsetHeight);
570         }
571         
572         return child_height;
573     }
574
575 });
576
577
578 Roo.apply(Roo.bootstrap.Modal,  {
579     /**
580          * Button config that displays a single OK button
581          * @type Object
582          */
583         OK :  [{
584             name : 'ok',
585             weight : 'primary',
586             html : 'OK'
587         }],
588         /**
589          * Button config that displays Yes and No buttons
590          * @type Object
591          */
592         YESNO : [
593             {
594                 name  : 'no',
595                 html : 'No'
596             },
597             {
598                 name  :'yes',
599                 weight : 'primary',
600                 html : 'Yes'
601             }
602         ],
603
604         /**
605          * Button config that displays OK and Cancel buttons
606          * @type Object
607          */
608         OKCANCEL : [
609             {
610                name : 'cancel',
611                 html : 'Cancel'
612             },
613             {
614                 name : 'ok',
615                 weight : 'primary',
616                 html : 'OK'
617             }
618         ],
619         /**
620          * Button config that displays Yes, No and Cancel buttons
621          * @type Object
622          */
623         YESNOCANCEL : [
624             {
625                 name : 'yes',
626                 weight : 'primary',
627                 html : 'Yes'
628             },
629             {
630                 name : 'no',
631                 html : 'No'
632             },
633             {
634                 name : 'cancel',
635                 html : 'Cancel'
636             }
637         ],
638         
639         zIndex : 10001
640 });