WindowLog.js
[gitlive] / StatusIcon.js
index 519ccaf..89a5477 100644 (file)
@@ -1,6 +1,3 @@
-//<script type="text/javascript">
-
-
 /**
  * Status icon and menu for component of gitlive.
  * 
  * b) Pause!??!
  */
  
-Gtk      = imports.gi.Gtk;
-Gdk      = imports.gi.Gdk;
-XObject = imports['XObject.js'].XObject
+var Gtk      = imports.gi.Gtk;
+var Gdk      = imports.gi.Gdk;
+var Gio      = imports.gi.Gio;
+var GLib     = imports.gi.GLib;
+var Notify   = imports.gi.Notify;
 
+var XObject = imports.XObject.XObject;
+
+//var gitlive = imports.gitlive;
 
  
-StatusIcon  = new XObject({
+var StatusIcon  = new XObject({
     
     paused : false, // on!
     xtype : Gtk.StatusIcon,
-    stock : Gtk.STOCK_MEDIA_PLAY,
+    title : 'gitlive',
+    stock : Gtk.STOCK_REFRESH,
     tooltip_text : 'GitLive',
+        init : function() {
+        XObject.prototype.init.call(this);
+        this.el.set_name('gitlive');
+    },
     listeners : {
         //'popup-menu' : function( w, event, event_time) {
         'activate' : function( w, event, event_time) {
             print(Array.prototype.slice.call(arguments).join(','));
             
-            menu = this.get('menu');
+            var menu = this.get('menu');
             
             menu.el.show_all();
             
             this.get(!this.paused ? 'resume' : 'pause' ).el.hide();
+            print("MENU EL: "  + menu.el);
+            print("POPUP: " + typeof(menu.el.popup));
+            
+            
+            menu.el.popup(null, null,Gtk.StatusIcon.position_menu , this.el , 1, Gtk.get_current_event_time());
+            //menu.el.popup(null, null,null, null, 1, Gtk.get_current_event_time());
+            
+            return;
             
-            menu.el.popup(null, null,null, null, 1, Gtk.get_current_event_time());
             var g = { };
             var a = new Gdk.Rectangle();
             //  needs direction=inout setting in gir to work (in bugzilla @present)
@@ -51,7 +65,7 @@ StatusIcon  = new XObject({
     items : [
        {
             xtype: Gtk.Menu,
-            xid : 'menu',
+            id : 'menu',
             pack: false,
             items : [
                 {
@@ -63,12 +77,13 @@ StatusIcon  = new XObject({
                    
                     always_show_image : true,
                     accel_group : null,
-                    xid : 'pause',
+                    id : 'pause',
                     //label: 'Pause',
                     pack:  'append',
                     listeners : {
                         activate : function () {
                             this.parent.parent.paused = true;
+                            imports.GitMonitor.GitMonitor.stop();
                            // this.el.label  = status ? 'Resume' : 'Pause';
                             this.parent.parent.el.set_from_stock( Gtk.STOCK_MEDIA_PAUSE );
                             
@@ -84,15 +99,16 @@ StatusIcon  = new XObject({
                     label: 'Resume Commits',
                     always_show_image : true,
                     accel_group : null,
-                    xid : 'resume',
+                    id : 'resume',
                     //label: 'Pause',
                     pack:  'append',
                     listeners : {
                         activate : function () {
                             this.parent.parent.paused = false;
+                             imports.GitMonitor.GitMonitor.start();
                             //var status = this.el.label == 'Pause' ? 1 : 0
                            // this.el.label  = status ? 'Resume' : 'Pause';
-                            this.parent.parent.el.set_from_stock(   Gtk.STOCK_MEDIA_PLAY);
+                               
                             
                         }
                     }
@@ -106,14 +122,52 @@ StatusIcon  = new XObject({
                     label: 'Pull (Refresh) All',
                     always_show_image : true,
                     accel_group : null,
-                    xid : 'resume',
                     //label: 'Pause',
                     pack:  'append',
                     listeners : {
                         activate : function () {
-                             
+                            imports.GitMonitor.GitMonitor.stop();
+                           
                             
-                        }
+                            var tr = imports.Scm.Repo.Repo.list();
+                            for (var i= 0; i< tr.length;i++) {
+                                this.parent.parent.el.set_from_stock( i%2 ?  Gtk.STOCK_FULLSCREEN : Gtk.STOCK_LEAVE_FULLSCREEN );
+                                
+                                var repo = tr[i];
+                                if (!repo.autocommit()) {
+                                    //??? should we ignore ones not on autocommit..
+                                    continue;
+                                }
+                                try {
+                                    this.parent.parent.el.set_tooltip_text("pull: " + repo.name);
+                               
+                                    var str = repo.pull();
+                                    // do not care if it's already in sycn..
+                                    if (str.match(/Already up-to-date/)) {
+                                        continue;
+                                    }
+                                    var notification = new Notify.Notification({
+                                       summary: "Updated " + repo.name,
+                                       body : str
+                                   });
+                                   notification.set_timeout(20);
+                                   notification.show();
+                                   
+                                } catch(e) {
+                                    this.parent.parent.el.set_from_stock( Gtk.STOCK_MEDIA_RECORD );
+                                    print(JSON.stringify(e));
+                                    print("notification or push errror- probably to many in queue..");
+                                    imports.gitlive.errorDialog(e.message);
+
+                                }
+                            }
+                            this.parent.parent.el.set_tooltip_text(this.parent.parent.tooltip_text);
+                               
+                            
+                             
+                          
+                            imports.GitMonitor.GitMonitor.start();
+                        }   
                     }
                 },
                 {
@@ -124,12 +178,12 @@ StatusIcon  = new XObject({
                     label: 'Manage Clones',
                     always_show_image : true,
                     accel_group : null,
-                    xid : 'resume',
+                    
                     //label: 'Pause',
                     pack:  'append',
                     listeners : {
                         activate : function () {
-                             
+                             var ret = imports.Clones.Clones.show();
                             
                         }
                     }
@@ -147,8 +201,14 @@ StatusIcon  = new XObject({
                     pack:  'append',
                     listeners : {
                         activate : function () {
-                            var msg = new Gtk.MessageDialog({message_type:
-                                Gtk.MessageType.INFO, buttons : Gtk.ButtonsType.OK, text: "GIT Live - auto commits and pushes everything in ~/gitlive"});
+                            var msg = new Gtk.AboutDialog({
+                                program_name : "Git Live",
+                                version: '0.3',
+                                website: 'http://www.roojs.org/index.php/projects/gitlive.html',
+                                website_label: 'RooJS Consulting',
+                                license : 'LGPL'
+                            });
+                            msg.set_authors([ "Alan Knowles <alan@roojs.com>" ]);
                             msg.run();
                             msg.destroy();
                         }