Roo/bootstrap/NavItem.js
[roojs1] / Roo / bootstrap / NavItem.js
1 /*
2  * - LGPL
3  *
4  * row
5  * 
6  */
7
8 /**
9  * @class Roo.bootstrap.NavItem
10  * @extends Roo.bootstrap.Component
11  * Bootstrap Navbar.NavItem class
12  * @cfg {String} href  link to
13  * @cfg {String} html content of button
14  * @cfg {String} badge text inside badge
15  * @cfg {String} badgecls (bg-green|bg-red|bg-yellow)the extra classes for the badge
16  * @cfg {String} glyphicon DEPRICATED - use fa
17  * @cfg {String} icon DEPRICATED - use fa
18  * @cfg {String} fa - Fontawsome icon name (can add stuff to it like fa-2x)
19  * @cfg {Boolean} active Is item active
20  * @cfg {Boolean} disabled Is item disabled
21  
22  * @cfg {Boolean} preventDefault (true | false) default false
23  * @cfg {String} tabId the tab that this item activates.
24  * @cfg {String} tagtype (a|span) render as a href or span?
25  * @cfg {Boolean} animateRef (true|false) link to element default false  
26   
27  * @constructor
28  * Create a new Navbar Item
29  * @param {Object} config The config object
30  */
31 Roo.bootstrap.NavItem = function(config){
32     Roo.bootstrap.NavItem.superclass.constructor.call(this, config);
33     this.addEvents({
34         // raw events
35         /**
36          * @event click
37          * The raw click event for the entire grid.
38          * @param {Roo.EventObject} e
39          */
40         "click" : true,
41          /**
42             * @event changed
43             * Fires when the active item active state changes
44             * @param {Roo.bootstrap.NavItem} this
45             * @param {boolean} state the new state
46              
47          */
48         'changed': true,
49         /**
50             * @event scrollto
51             * Fires when scroll to element
52             * @param {Roo.bootstrap.NavItem} this
53             * @param {Object} options
54             * @param {Roo.EventObject} e
55              
56          */
57         'scrollto': true
58     });
59    
60 };
61
62 Roo.extend(Roo.bootstrap.NavItem, Roo.bootstrap.Component,  {
63     
64     href: false,
65     html: '',
66     badge: '',
67     icon: false,
68     fa : false,
69     glyphicon: false,
70     active: false,
71     preventDefault : false,
72     tabId : false,
73     tagtype : 'a',
74     tag: 'li',
75     disabled : false,
76     animateRef : false,
77     was_active : false,
78     
79     navLink: false,
80     
81     getAutoCreate : function(){
82          
83         var cfg = {
84             tag: this.tag,
85             cls: 'nav-item'
86             
87         };
88         
89         if (this.active) {
90             cfg.cls = typeof(cfg.cls) == 'undefined' ? 'active' : cfg.cls + ' active';
91         }
92         if (this.disabled) {
93             cfg.cls += ' disabled';
94         }
95         
96         if (this.href || this.html || this.glyphicon || this.icon || this.fa) {
97             cfg.cn = [
98                 {
99                     tag: this.tagtype,
100                     href : this.href || "#",
101                     html: this.html || ''
102                 }
103             ];
104             if (this.tagtype == 'a') {
105                 cfg.cn[0].cls = 'nav-link';
106             }
107             if (this.icon) {
108                 cfg.cn[0].html = '<i class="'+this.icon+'"></i> <span>' + cfg.cn[0].html + '</span>'
109             }
110             if (this.fa) {
111                 cfg.cn[0].html = '<i class="fa fas fa-'+this.fa+'"></i> <span>' + cfg.cn[0].html + '</span>'
112             }
113             if(this.glyphicon) {
114                 cfg.cn[0].html = '<span class="glyphicon glyphicon-' + this.glyphicon + '"></span> '  + cfg.cn[0].html;
115             }
116             
117             if (this.menu) {
118                 
119                 cfg.cn[0].html += " <span class='caret'></span>";
120              
121             }
122             
123             if (this.badge !== '') {
124                  
125                 cfg.cn[0].html += ' <span class="badge badge-secondary">' + this.badge + '</span>';
126             }
127         }
128         
129         
130         
131         return cfg;
132     },
133     onRender : function(ct, position)
134     {
135        // Roo.log("Call onRender: " + this.xtype);
136         if (Roo.bootstrap.version == 4 && ct.dom.type != 'ul') {
137             this.tag = 'div';
138         }
139         
140         return Roo.bootstrap.NavItem.superclass.onRender.call(this, ct, position);
141     },
142       
143     
144     initEvents: function() 
145     {
146         if (typeof (this.menu) != 'undefined') {
147             this.menu.parentType = this.xtype;
148             this.menu.triggerEl = this.el;
149             this.menu = this.addxtype(Roo.apply({}, this.menu));
150         }
151         
152         this.el.select('a',true).on('click', this.onClick, this);
153         
154         if(this.tagtype == 'span'){
155             this.el.select('span',true).on('click', this.onClick, this);
156         }
157        
158         // at this point parent should be available..
159         this.parent().register(this);
160     },
161     
162     onClick : function(e)
163     {
164         if (e.getTarget('.dropdown-menu-item')) {
165             // did you click on a menu itemm.... - then don't trigger onclick..
166             return;
167         }
168         
169         if(
170                 this.preventDefault || 
171                 this.href == '#' 
172         ){
173             Roo.log("NavItem - prevent Default?");
174             e.preventDefault();
175         }
176         
177         if (this.disabled) {
178             return;
179         }
180         
181         var tg = Roo.bootstrap.TabGroup.get(this.navId);
182         if (tg && tg.transition) {
183             Roo.log("waiting for the transitionend");
184             return;
185         }
186         
187         
188         
189         //Roo.log("fire event clicked");
190         if(this.fireEvent('click', this, e) === false){
191             return;
192         };
193         
194         if(this.tagtype == 'span'){
195             return;
196         }
197         
198         //Roo.log(this.href);
199         var ael = this.el.select('a',true).first();
200         //Roo.log(ael);
201         
202         if(ael && this.animateRef && this.href.indexOf('#') > -1){
203             //Roo.log(["test:",ael.dom.href.split("#")[0], document.location.toString().split("#")[0]]);
204             if (ael.dom.href.split("#")[0] != document.location.toString().split("#")[0]) {
205                 return; // ignore... - it's a 'hash' to another page.
206             }
207             Roo.log("NavItem - prevent Default?");
208             e.preventDefault();
209             this.scrollToElement(e);
210         }
211         
212         
213         var p =  this.parent();
214    
215         if (['tabs','pills'].indexOf(p.type)!==-1) {
216             if (typeof(p.setActiveItem) !== 'undefined') {
217                 p.setActiveItem(this);
218             }
219         }
220         
221         // if parent is a navbarheader....- and link is probably a '#' page ref.. then remove the expanded menu.
222         if (p.parentType == 'NavHeaderbar' && !this.menu) {
223             // remove the collapsed menu expand...
224             p.parent().el.select('.navbar-collapse',true).removeClass('in');  
225         }
226     },
227     
228     isActive: function () {
229         return this.active
230     },
231     setActive : function(state, fire, is_was_active)
232     {
233         if (this.active && !state && this.navId) {
234             this.was_active = true;
235             var nv = Roo.bootstrap.NavGroup.get(this.navId);
236             if (nv) {
237                 nv.clearWasActive(this);
238             }
239             
240         }
241         this.active = state;
242         
243         if (!state ) {
244             this.el.removeClass('active');
245         } else if (!this.el.hasClass('active')) {
246             this.el.addClass('active');
247         }
248         if (fire) {
249             this.fireEvent('changed', this, state);
250         }
251         
252         // show a panel if it's registered and related..
253         
254         if (!this.navId || !this.tabId || !state || is_was_active) {
255             return;
256         }
257         
258         var tg = Roo.bootstrap.TabGroup.get(this.navId);
259         if (!tg) {
260             return;
261         }
262         var pan = tg.getPanelByName(this.tabId);
263         if (!pan) {
264             return;
265         }
266         // if we can not flip to new panel - go back to old nav highlight..
267         if (false == tg.showPanel(pan)) {
268             var nv = Roo.bootstrap.NavGroup.get(this.navId);
269             if (nv) {
270                 var onav = nv.getWasActive();
271                 if (onav) {
272                     onav.setActive(true, false, true);
273                 }
274             }
275             
276         }
277         
278         
279         
280     },
281      // this should not be here...
282     setDisabled : function(state)
283     {
284         this.disabled = state;
285         if (!state ) {
286             this.el.removeClass('disabled');
287         } else if (!this.el.hasClass('disabled')) {
288             this.el.addClass('disabled');
289         }
290         
291     },
292     
293     /**
294      * Fetch the element to display the tooltip on.
295      * @return {Roo.Element} defaults to this.el
296      */
297     tooltipEl : function()
298     {
299         return this.el.select('' + this.tagtype + '', true).first();
300     },
301     
302     scrollToElement : function(e)
303     {
304         var c = document.body;
305         
306         /*
307          * Firefox / IE places the overflow at the html level, unless specifically styled to behave differently.
308          */
309         if(Roo.isFirefox || Roo.isIE || Roo.isIE11){
310             c = document.documentElement;
311         }
312         
313         var target = Roo.get(c).select('a[name=' + this.href.split('#')[1] +']', true).first();
314         
315         if(!target){
316             return;
317         }
318
319         var o = target.calcOffsetsTo(c);
320         
321         var options = {
322             target : target,
323             value : o[1]
324         };
325         
326         this.fireEvent('scrollto', this, options, e);
327         
328         Roo.get(c).scrollTo('top', options.value, true);
329         
330         return;
331     }
332 });
333  
334
335