Pman.js
[Pman.Core] / Pman.js
1 //<script type="text/javascript">
2
3 /**
4  * 
5  *  
6  *  CHANGES
7  *  - gtranslate moved to Pman.GoogleTranslate
8  * 
9  * 
10  */
11  
12 if (typeof(_T) == 'undefined') { _T={};}
13  
14
15
16 Roo.XComponent.on('register', function(e) {
17         if (typeof(Pman) != 'undefined') { return Pman.xregister(e); } return true;
18 });
19 Roo.XComponent.on('beforebuild', function(e) {
20     if (typeof(Pman) != 'undefined') { return Pman.xbeforebuild(e); } return true;
21 });
22
23 Roo.XComponent.on('buildcomplete',  
24     function() {
25         Pman.building = false;   
26         Pman.layout.getRegion('center').showPanel(0);
27         Pman.layout.endUpdate(); 
28         Pman.addTopToolbar();  
29         Pman.finalize();
30         Pman.fireEvent('load',this);
31         
32         if (!Pman.layout.getRegion('south').panels.length) {
33             Pman.layout.getRegion('south').hide();
34         }
35     
36     
37 } );
38
39 //Roo.debug = 1;
40   
41
42 Pman = new Roo.Document(
43 {
44    /// appVersion: '1.7', // fixme = needs to be removed - use Global AppVersion
45     subMenuItems : [],
46     topMenuItems : [],
47     rightNames: { }, /// register right names here - so they can be translated and rendered.
48     /**
49      * @property {Roo.menu.Menu} pulldownMenu - the 'add menu pulldown, you can use it to add items..
50      *
51      */
52     pulldownMenu : false, 
53     
54     
55     buildCompleted : false, // flag to say if we are building interface..
56     events : {
57         'beforeload' : true, // fired after page ready, before module building.
58         'load' : true, // fired after module building
59         'authrefreshed' : true // fire on auth updated?? - should be on Login?!?!?
60     },
61     
62     listeners : {
63         'ready' : function()
64         {
65             // kludge to fix firebug debugger
66             if (typeof(console) == 'undefined') {
67                 console = { log : function() {  } };
68             }
69             
70             // remove loader..
71             if (Roo.get('loading')) {
72                 Roo.get('loading').remove();
73             }
74             
75             Roo.state.Manager.setProvider(new Roo.state.CookieProvider());
76             
77             // link errors...
78             
79             if (AppLinkError.length) {
80                 Roo.MessageBox.alert("Error", AppLinkError, function() {
81                     Pman.Login.onLoad();
82                 });
83                 return;
84             }
85             
86             
87             // reset password!!!!
88             if (showNewPass.length) {
89                 Pman.PasswordChange.show(  { passwordReset : showNewPass },
90                     function(data) {
91                         // fail and success we do  a load...
92                         Pman.Login.onLoad();
93                     }
94                 );
95                 return;
96             }
97              
98             Pman.Login.onLoad();
99             
100         },
101         'load' : function()
102         {
103             if (Roo.get('loading-logo-tile')) {
104                 Roo.get('loading-logo-tile').remove();
105             }
106             if (Roo.get('loading-logo-tile-top')) {
107                 Roo.get('loading-logo-tile-top').remove();
108             }
109             if (Roo.get('loading-logo-bottom')) {
110                 Roo.get('loading-logo-bottom').remove();
111             }
112             if (Roo.get('loading-logo-center')) {
113                 Roo.get('loading-logo-center').remove();
114             }
115         }   
116         
117     },
118    
119     fakeRoot :  new Roo.XComponent( {
120         modKey : '000',
121         module : 'Pman',
122         region : 'center',
123         parent : false,
124         isTop : true,
125         name : "Pman Base",
126         disabled : false, 
127         permname: '' ,
128         render : function (el) { this.el = this.layout; }
129     }),
130     
131     layout: false,
132     
133     onload: function() {
134         //this.fireEvent('beforeload',this);
135         
136         
137         
138         if (this.layout) {
139             return; // already loaded
140         } 
141         if (Roo.get('loading')) {
142             Roo.get('loading').remove();
143         }
144         if (Roo.get('loading-mask')) {
145             Roo.get('loading-mask').show();
146         }
147         
148      
149         var _this = this;
150         this.stime = new Date();
151         this.layout = new Roo.BorderLayout(document.body, {
152             north: {
153                 split:false,
154                 initialSize: 25,
155                 titlebar: false
156             },
157          
158              
159             center: {
160                 titlebar: false,
161                 autoScroll:false,
162                 closeOnTab: true,
163                 tabPosition: 'top',
164                 //resizeTabs: true,
165                 alwaysShowTabs: true,
166                 minTabWidth: 140
167             } ,
168             south: {
169                 collapsible : true,
170                 collapsed : true,
171                 split:false,
172                 height: 120,
173                 titlebar: false 
174             }
175             
176         });
177         this.fakeRoot.layout = this.layout;
178         /*
179         Pman.register( Roo.apply(this.fakeRoot, {
180             layout : this.layout      
181                 
182                                  
183         } ) );
184         */
185         
186         // creates all the modules ready to load..
187         
188         this.fireEvent('beforeload',this);
189         
190         
191         
192         this.layout.beginUpdate();
193         this.layout.add('north', new Roo.ContentPanel('title', 'North'));
194         var au = Pman.Login.authUser;
195         if (au.id > 0 && au.company_id_background_color && au.company_id_background_color.length) {
196             Roo.get('title').dom.style.backgroundColor = '#' + au.company_id_background_color;
197             Roo.get('headerInformation').dom.style.color = this.invertColor('#' + au.company_id_background_color);
198         }
199         if (au.id > 0 && au.company_id_logo_id * 1 > 0) {
200             Roo.get('headerInformation-company-logo').dom.src =  baseURL + 
201                 '/Images/' + au.company_id_logo_id + '/' + au.company_id_logo_id_filename;
202         } else {
203             Roo.get('headerInformation-company-logo').dom.src = Roo.BLANK_IMAGE_URL;
204         }
205         
206         Roo.get('headerInformation').dom.innerHTML = String.format(
207                 "You are Logged in as <b>{0} ({1})</b>", // to {4} v{3}", // for <b>{2}</b>",
208                 au.name, au.email, au.company_id_name, 
209                 AppVersion , appNameShort
210         );
211         
212         
213         document.title = appName + ' v' + AppVersion + ' - ' + au.company_id_name;
214         Roo.QuickTips.init(); 
215         if (Roo.isGecko) {
216            Roo.useShims = true;
217         }
218        
219         //this.mainLayout.beginUpdate();
220         //var maskDom = Roo.get(document.body)._maskMsg.dom
221         this.layout.beginUpdate();
222         
223         Pman.building = true;
224         Roo.XComponent.build();
225          
226         
227         
228      
229     },
230     
231     addTopToolbar : function()
232     {
233           //console.log( "t6:" + ((new Date())-stime));
234         //this.mainLayout.endUpdate();
235         // make a new tab to hold administration stuff...
236         
237        
238         //console.log( "t7:" + ((new Date())-stime));
239         var se = Pman.layout.getRegion('center').tabs.stripEl;
240         var tbh = se.createChild( 
241                 { tag: 'td', style: 'width:100%;'  });
242         
243         var lotb = new Roo.Toolbar(tbh);
244         
245         if (Roo.isSafari) {
246             var tbl = se.child('table', true);
247             tbl.setAttribute('width', '100%');
248         }
249         lotb.add(
250             new Roo.Toolbar.Fill(), 
251      
252             {
253                 text: "Change Password",
254                 cls: 'x-btn-text-icon',
255                 icon: rootURL + '/Pman/templates/images/change-password.gif',
256                 handler : function(){
257                     Pman.PasswordChange.show({});
258                 }
259             }, '-'
260         );
261          
262         
263         if (this.topMenuItems.length) {
264             
265             Roo.each(this.topMenuItems, function (mi) {
266                 lotb.add(mi);
267             });
268             lotb.add('-');
269         }
270         
271         
272         
273         if (this.subMenuItems.length) {
274             
275             this.subMenuItems.sort(function (a,b) {
276                 return a.seqid > b.seqid ? 1 : -1;
277             });
278             // chop off last seperator.
279             // since we always add it.. just chop of last item
280             this.subMenuItems.pop(); 
281             
282             var btn = new Roo.Toolbar.Button( 
283                 {
284                     text: "Add New Item",
285                     cls: 'x-btn-text-icon',
286                     icon: Roo.rootURL + 'images/default/dd/drop-add.gif',
287                     menu : {
288                         items : this.subMenuItems
289                     }     
290                 }
291             );
292             this.pulldownMenu = btn.menu;
293             lotb.add(btn, '-');
294             
295         }
296        
297         lotb.add(
298             {
299                 text: "Logout",
300                 cls: 'x-btn-text-icon',
301                 icon: rootURL + '/Pman/templates/images/logout.gif',
302                 handler: function() {
303                     Pman.Login.logout();
304                 }
305                  
306             }
307         );
308       
309        // this.layout.endUpdate();
310     },
311     
312     
313     finalize : function() {
314         
315       
316        
317         window.onbeforeunload = function(e) { 
318             e = e || window.event;
319             var r = "Closing this window will loose changes, are you sure you want to do that?";
320
321             // For IE and Firefox
322             if (e) {
323                 e.returnValue = r;
324             }
325
326             // For Safari
327             return r;
328             
329         };
330         
331         Roo.MessageBox.hide();
332         if (Roo.get('loading-mask')) {
333            Roo.get('loading-mask').remove();
334         }
335         
336         
337         this.buildCompleted = true; // now we can force refreshes on everything..
338         
339         
340         // does the URL indicate we want to see a system..
341         if (AppTrackOnLoad * 1 > 0) {
342             this.onLoadTrack(AppTrackOnLoad,false);
343         }
344         
345         // Open system..
346         
347         var forceAdmin = function(data)
348         {
349             if (!data || !data.id) {
350                 //Roo.log("Force Admin");
351                 Pman.Dialog.PersonStaff.show( 
352                     { 
353                         id : 0, 
354                         company_id : Pman.Login.authUser.company_id_id * 1, 
355                         company_id_name : Pman.Login.authUser.company_id_name
356                     }, function(data) {
357                         forceAdmin(data);
358                     }
359                 );
360                 return;
361             }
362             Roo.state.Manager.set('Pman.Login.username', data.email),
363             window.onbeforeunload = false;
364             document.location = baseURL + '?ts=' + Math.random();
365         }
366         
367         var forceCompany = function(data) {
368             if (Pman.Login.authUser.company_id * 1 > 0) {
369                 forceAdmin();
370                 return;
371             }
372             if (!data || !data.id) {
373                 Pman.Dialog.CoreCompanies.show( { id : 0, comptype: 'OWNER' }, function(data) {
374                     Roo.log("company dialog returned");
375                     Roo.log(data);
376                     forceCompany(data);
377                 });
378                 return;
379             }
380             Pman.Login.authUser.company_id_id  = data.id;
381             Pman.Login.authUser.company_id  = data.id;
382             Pman.Login.authUser.company_id_name  = data.name;
383             Roo.log("forcing admin");
384             forceAdmin();
385         }
386         
387         if (Pman.Login.authUser.id < 0) {
388             // admin company has been created - create the user..
389             if (Pman.Login.authUser.company_id_id* 1 > 0) {
390                 forceAdmin();
391                 return;
392             }
393             
394             forceCompany();
395             /// create account..
396             
397             
398         }
399         
400
401     },
402     
403     
404     // REMOVE THESE 
405     
406      
407     onLoadTrack : function(id,cb) {
408         this.onLoadTrackCall(id, cb, 'DocumentsCirc_');
409     },
410     onLoadTrackEdit : function(id,cb) {
411         this.onLoadTrackCall(id, cb, 'Documents_');
412     },
413     
414     
415     /// ----------- FIXME -----
416     
417     
418     onLoadTrackCall : function(id,cb, cls) {
419         Roo.get(document.body).mask("Loading Document details");
420
421         new Pman.Request({
422             url: baseURL + '/Roo/Documents.html',  
423             params: {
424                 _id: id
425             },  
426             method: 'GET',  
427             success : function(res) {
428                 var data = res.data;
429                 Roo.get(document.body).unmask();
430              
431                 
432                 switch(data.in_out) {
433                     case 'IN' : cls+='In';break;
434                     case 'OUT' : cls+='Out';break;
435                     case 'WIP' : cls+='Wip';break;
436                     default: 
437                         Roo.MessageBox.alert("Error", "invalid in_out");
438                         return;
439                 }
440                 Pman.Dialog[cls].show(data, cb ? cb : Pman.refreshActivePanel);
441             }, 
442             
443             failure: function() {
444                 Roo.get(document.body).unmask();
445                 //if (cb) {
446                 //    cb.call(false);
447                 //}
448                  
449            }
450         });
451           
452     },
453     
454     refreshActivePanel : function() {
455         var actpan = this.layout.getRegion('center').getActivePanel();
456         if (actpan.controller && actpan.controller.paging) {
457             actpan.controller.paging.onClick('refresh');
458             return;
459         }
460         
461         var agid = Pman.layout.getRegion('center').getActivePanel().id;
462         if (!agid) {
463             return;
464         }
465         Pman.Tab[agid].paging.onClick('refresh');
466     },
467     toCidV : function(data) {
468         return 'C' + data.in_out.substring(0,1) + data.cid;
469     },
470     
471     
472     /**
473      * hasPerm:
474      * Does the authenticated user have permission to see this.
475      * 
476      * @param {String} name the [Module].[permission] to check for
477      * @param {Char} lvl  - which type of permission to use (eg. S=show...)
478      * @returns {Boolean} tue indicates permission allowed
479      */
480     hasPerm: function(name, lvl) {
481         if (
482             (typeof(Pman.Login.authUser) != 'object')
483             ||
484             (typeof(Pman.Login.authUser.perms) != 'object')
485             ||
486             (typeof(Pman.Login.authUser.perms[name]) != 'string')
487             ) {
488                 return false;
489         }
490         
491         return Pman.Login.authUser.perms[name].indexOf(lvl) > -1;
492         
493     },
494     /**
495      * hasPermExists:
496      * Is there a permission defined for this (used by module registration.)
497      * 
498      * @param {String} name the [Module].[permission] to check for
499      * @returns {Boolean} tue indicates permission exists.
500      */
501     hasPermExists: function(name) {
502         if (
503             (typeof(Pman.Login.authUser) != 'object')
504             ||
505             (typeof(Pman.Login.authUser.perms) != 'object')
506             ||
507             (typeof(Pman.Login.authUser.perms[name]) != 'string')
508             ) {
509                 return false;
510         }
511         return true;
512     },
513     
514     
515     
516     
517     
518     
519     Readers : {},
520     ColModels : {},
521     Forms : {},
522     Tab : {},
523     Dialog : {},
524     
525     processResponse : function (response)
526     {
527         var res = '';
528         try {
529             res = Roo.decode(response.responseText);
530             // oops...
531             if (typeof(res) != 'object') {
532                 res = { success : false, errorMsg : res, errors : true };
533             }
534             if (typeof(res.success) == 'undefined') {
535                 res.success = false;
536             }
537             
538         } catch(e) {
539             res = { success : false,  errorMsg : response.responseText, errors : true };
540         }
541         return res;
542     },
543     genericDelete : function(tab,tbl) {
544         
545         var r = [];
546         
547             
548         var s = tab.grid.getSelectionModel().getSelections();
549         if (!s.length)  {
550             Roo.MessageBox.alert("Error", "Select at least one Row to delete" );
551             return '';
552         }
553         
554         for(var i = 0; i < s.length; i++) {
555             r.push(tab.grid.reader.getId(s[i]));
556         }
557     
558         Roo.MessageBox.confirm("Confirm", "Are you sure you want to delete that?",
559             function(btn) {
560                 if (btn != 'yes') {
561                     return;
562                 }
563                 // what about the toolbar??
564                 tab.grid.getView().mainWrap.mask("Deleting");
565                 new Pman.Request({
566                     url: baseURL + '/Roo/'+tbl+'.php',
567                     method: 'POST',
568                     params: {
569                         _delete : r.join(',')
570                     },
571                     success: function(response) {
572                         tab.grid.getView().mainWrap.unmask();
573                         if ( tab.paging ) {
574                             tab.paging.onClick('refresh');   
575                         } else if (tab.refresh) {
576                             tab.refresh();
577                         } else if (tab.grid.footer && tab.grid.footer.onClick) {
578                             // new xtype built grids
579                             tab.grid.footer.onClick('refresh');   
580                         } else {
581                             tab.grid.getDataSource().load();
582                         }
583                         
584                         
585                         
586                     },
587                     failure: function(act) {
588                         Roo.log(act);
589                         var msg = '';
590                         try {
591                             msg = act.errorMsg;
592                         } catch(e) {
593                             msg = "Error deleting";
594                         }
595                         tab.grid.getView().mainWrap.unmask();
596                         Roo.MessageBox.alert("Error",  msg);
597                     }
598                     
599                 });
600             }
601             
602         );
603         return '';
604     },
605     
606     
607     standardActionFailed :  function(f, act, cb) {
608     
609         if (act.failureType == 'client') {
610             Roo.MessageBox.alert("Error", "Please Correct all the errors in red", cb);
611             return;
612         }
613         if (act.failureType == 'connect') {
614             Roo.MessageBox.alert("Error", "Problem Connecting to Server - please try again.", cb);
615             return;
616         }
617         
618         if (act.type == 'submit') {
619             
620             Roo.MessageBox.alert("Error", typeof(act.result.errorMsg) == 'string' ?
621                 String.format('{0}', act.result.errorMsg) : 
622                 "Saving failed = fix errors and try again", cb);
623             return;
624         }
625         
626         // what about load failing..
627         Roo.MessageBox.alert("Error", "Error loading details",cb); 
628     },
629     /**
630      * Depreciated - USE new Pman.Request
631     *  We need to replace all the uses with this, however the api is slightly different,
632     *  the success argument is res.data, not res..
633      * 
634      */
635     request : function(c) {
636         return new Pman.Request(c);
637           
638     },
639     
640     
641     // depreciated - use Pman.Download()
642     
643     download : function(c) {
644         
645         return new Pman.Download(c);
646     },
647     
648     // fixme - move to document manager...
649     downloadRevision : function(doc, rev)
650     {
651         this.download({
652             url: baseURL + '/Documents/Doc/DownloadRev/'+ doc.id + '/' + rev + '/' +
653                 doc.project_id_code + '-' + doc.cidV + '-' + rev  + '-' +  doc.filename
654         }); 
655                     
656     },
657     
658     
659     exportCSV : function(c) {
660         
661         for(var i=0;i < c.csvFormat.length;i++) {
662             c.params['csvCols['+i+']'] = c.csvFormat[i][0];
663             c.params['csvTitles['+i+']'] = c.csvFormat[i][1];
664         }
665         c.url +=  '?' + Roo.urlEncode(c.params);
666         this.download(c);
667
668     },
669     
670     
671     prettyDate : function (value) 
672     {
673         if (typeof(value) == 'string') {
674             var ds = Date.parseDate(value, 'Y-m-d H:i:s');
675             if (ds) {
676                 return this.prettyDate(ds);
677             }
678             ds = Date.parseDate(value, 'Y-m-d');
679             if (ds) {
680                 return this.prettyDate(ds);
681             }
682             return '';
683         }
684 // last 7 days...
685         if (!value) {
686             return '';
687         }
688         var td = new Date();
689         var daysSince = Math.floor(td.getElapsed(value) / (1000 * 60*60*24));
690         if (daysSince < 7) {
691             return value.dateFormat('D H:i');
692         }
693         
694         // same month
695         if (td.dateFormat('m') == value.dateFormat('m')) {
696             return value.dateFormat('dS D');
697         }
698         // same year?
699         if (td.dateFormat('Y') == value.dateFormat('Y')) {
700             return value.dateFormat('dS M');
701         }
702         return value.dateFormat('d M Y');
703     },
704     loadException : function(a,b,c,d)
705     {
706         if (d && d.authFailure) {
707             Pman.Login.show();
708             return;
709         }
710         Roo.MessageBox.alert("Problem Loading Data", a.message || c.statusText);
711     },
712     
713     
714     /**
715      * 
716      * Routine to flash alerts in the title bar..
717      * 
718      * 
719      */
720     
721     notifyActive : false,
722     
723     notifyTitle: function(msg)
724     {
725         if (this.notifyActive ) {
726             return;
727         }
728         var stop = false;
729         
730         var stopper = function() {
731             stop = true;
732              document.title = oldtitle;
733         };
734         
735         Roo.get(document.body).on('mousemove', stopper, this);
736         var oldtitle = document.title;
737         var s = 1;
738         var _this = this;
739         var ivl = window.setInterval(function() {
740             
741             if (stop) {
742                 Roo.get(document.body).un('mousemove', stopper, this);
743                 _this.notifyActive = false;
744                 document.title = oldtitle;
745                 window.clearInterval(ivl);
746                 return true;
747             }
748             s = !s;
749             document.title = s ? msg : oldtitle;
750             return false;     
751         }, 1000); // every 120 secs = 2mins..
752          document.title =   msg;
753         
754         
755         
756     },
757     /**
758      * @property {Array} appModules  - array based on AppModules global
759      */
760     appModules : false,
761     
762     modules : false,
763     
764     
765     xregister : function(obj)
766     {
767         
768         // work out owner..
769         if (!Pman.appModules === false) {
770             Pman.appModules = typeof(AppModules ) == 'undefined'? [] :
771                 AppModules.split(',');
772         }
773         
774         
775         
776         // ignore registration of objects which are disabled.
777         // global supplied by master.html
778         appDisabled = typeof(appDisabled) == 'undefined' ? [] : appDisabled;
779         
780         
781         /// design flaw
782         // previously we did not a good naming policy for module and parts
783         // most things that are called module here, really are 'parts'
784         // new versions should have 'part' as [ module : part ]
785          if (typeof(obj.part) != 'undefined')  {
786            
787             var permname = obj.part.join('.');
788                 // we now have permission...
789                 // obj.moduleOwner '.' lname
790            
791            
792             if (appDisabled.indexOf(permname) > -1)  {
793                 Roo.log(permname + " is Disabled for this site");
794                 obj.disabled = true;
795                 return;
796             }
797             
798             
799         }
800         
801        
802         
803         if ( obj.isTop) {
804             // false parent... use it..
805             return;
806         }
807         
808         
809         if (obj.parent === Pman || obj.parent  == 'Pman') {
810             Roo.log("PARENT OF : " + obj.name + " replacing with fake");
811             obj.parent = Pman.fakeRoot;
812         }
813         
814         if (typeof(obj.parent) == 'undefined') {
815             Roo.log("Parent is undefined");
816             Roo.log(obj);
817             obj.disabled = true;
818             return;
819         }
820             
821             
822         if (obj.parent === false) {
823             obj.disabled = true;
824             Roo.log('ignoring top level object (as parent===false found)');
825             Roo.log(obj);
826             return;
827         }
828         // this is an error condition - the parent does not exist..
829             // technically it should not happen..
830           
831         // hack for Pman parent == Pman..
832         if (obj.parent == obj.module) {
833             obj.parent = false;
834             
835         }
836        
837         
838     },
839     /**
840      * fired before building on each compoenent
841      * used to apply permissions.
842      */
843     
844     xbeforebuild : function(obj)
845     {
846         if (typeof(obj.part) != 'undefined')  {
847            
848             if (!obj.part[1].length) {
849                 obj.part[1] = obj.part[0];
850             }
851             var permname = obj.part.join('.');
852             
853             Roo.log("CHECKING: "+ permname);
854             
855                 // we now have permission...
856                 // obj.moduleOwner '.' lname
857            
858             if (Pman.hasPermExists(permname) && !Pman.hasPerm(permname,'S')) {
859                 // it's a turned off permission...
860                 Roo.log(permname + " is Disabled for this user");
861                 obj.disabled = true;
862                 return;
863             }
864         
865             
866             
867         }
868         
869         
870     },
871     
872     /**
873      * DEPRICATED : use Roo.XComponents now..
874      * 
875      * Pman.register({
876           modKey : '00-admin-xxxx',
877           module : Pman.Tab.projectMgr, << really a components..
878           part : [ 'Admin', 'ProjectManager' ]
879           moduleOwner : 
880           region : 'center',
881           parent : Pman.layout
882         })
883      * 
884      */
885     register : function(obj)
886     {
887         
888         //this.xregister(obj);
889         
890         
891         // old style calls go in here..
892         // we need to convert the object so that it looks a bit like an XCompoenent..
893          
894         obj.render = function()
895         {
896             if (!this.parent) {
897                 Roo.log("Skip module, as parent does not exist");
898                 Roo.log(this);
899                 return;
900             }
901             //if (typeof(mod) == 'function') {
902             //    mod();
903                 
904             if (typeof(this.region) == 'undefined') {
905                 Roo.log("Module does not have region defined, skipping");
906                 Roo.log(this);
907                 return;
908             }
909             if (this.module.disabled) {
910                 Roo.log("Module disabled, should not rendering")
911                 Roo.log(this);
912                 return;
913             }
914             
915             if (!this.parent.layout) {
916                 Roo.log("Module parent does not have property layout.")
917                 Roo.log(this);
918                 return;
919             }
920         
921            // honour DEPRICATED permname setings..
922            // new code should use PART name, and matching permissions.
923             if (this.permname && this.permname.length) {
924                 if (!Pman.hasPerm(this.permname, 'S')) {
925                     return;
926                 }
927                 
928             }
929             this.add(this.parent.layout, this.region);
930             this.el = this.layout;
931             
932             
933               
934         };
935         // map some of the standard properties..
936         obj.order = obj.modKey;
937         
938         // a bit risky...
939         
940         
941         
942         // the other issue we have is that
943          
944         
945         // Roo.log("CALLING XComponent register with : " + obj.name);
946         
947         // this will call xregister as it's the on.register handler..
948         Roo.XComponent.register(obj.isTop ? obj : Roo.apply(obj.module, obj));
949          
950     } ,
951     invertColor : function(c)
952     {
953         // read..
954         var ca = [];
955         for(var i = 0; i < 3; i++){
956             ca[i] = parseInt(c.charAt((i*2)+1) + c.charAt((i*2)+2), 16);
957         }
958             
959         // invert..
960         var col = '';
961         Roo.each(ca, function(hi) {
962             var h = parseInt(255-hi).toString(16);
963             if(h < 16){
964                 h = '0' + h;
965             }
966             col += h;
967         });
968         return '#' + col;
969         
970     }
971     
972     
973     
974     
975     
976     
977     
978 });
979