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