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