From: Alan Knowles Date: Wed, 19 Dec 2018 04:54:28 +0000 (+0800) Subject: RepoStatusPopover.bjs X-Git-Url: http://git.roojs.org/?p=gitlive;a=commitdiff_plain;h=005e856ef0c36a43d6417539c28f6fd42dbaec56 RepoStatusPopover.bjs RepoStatusPopover.vala --- diff --git a/RepoStatusPopover.bjs b/RepoStatusPopover.bjs index 43fc3671..1a1363ae 100644 --- a/RepoStatusPopover.bjs +++ b/RepoStatusPopover.bjs @@ -130,20 +130,20 @@ }, { "listeners" : { - "button_press_event" : "() => {\n _this.el.hide();\n return false;\n}" + "button_press_event" : "() => {\n \n \n GitMonitor.gitmonitor.stop();\n _this.repo.git({ \"reset\" , \"--hard\" });\n _this.repo.loadStatus();\n GitMonitor.gitmonitor.start();\n _this.diff_view.el.get_buffer().set_text(_this.repo.git_diff);\n _this.status_view.el.get_buffer().set_text(_this.repo.git_status);\n Clones.singleton().reposStore.load();\n \n _this.el.hide();\n return false;\n}" }, - "label" : "Ignore for now", - "xtype" : "Button", + "label" : "Reset to remote", "* pack" : "add", + "xtype" : "Button", "$ xns" : "Gtk" }, { "listeners" : { - "button_press_event" : "() => {\n \n \n GitMonitor.gitmonitor.stop();\n _this.repo.git({ \"reset\" , \"--hard\" });\n _this.repo.loadStatus();\n GitMonitor.gitmonitor.start();\n _this.diff_view.el.get_buffer().set_text(_this.repo.git_diff);\n _this.status_view.el.get_buffer().set_text(_this.repo.git_status);\n Clones.singleton().reposStore.load();\n \n _this.el.hide();\n return false;\n}" + "button_press_event" : "() => {\n \n \n GitMonitor.gitmonitor.stop();\n _this.repo.git({ \"pull\" , \"--all\" });\n _this.repo.loadStatus();\n GitMonitor.gitmonitor.start();\n _this.diff_view.el.get_buffer().set_text(_this.repo.git_diff);\n _this.status_view.el.get_buffer().set_text(_this.repo.git_status);\n Clones.singleton().reposStore.load();\n \n _this.el.hide();\n return false;\n}" }, - "label" : "Reset to remote", - "* pack" : "add", + "label" : "Pull updates", "xtype" : "Button", + "* pack" : "add", "$ xns" : "Gtk" }, { @@ -151,8 +151,8 @@ "button_press_event" : "() => {\n \n \n GitMonitor.gitmonitor.stop();\n _this.repo.git({ \"pull\" , \"--all\" });\n _this.repo.loadStatus();\n GitMonitor.gitmonitor.start();\n _this.diff_view.el.get_buffer().set_text(_this.repo.git_diff);\n _this.status_view.el.get_buffer().set_text(_this.repo.git_status);\n Clones.singleton().reposStore.load();\n \n _this.el.hide();\n return false;\n}" }, "label" : "Pull updates", - "xtype" : "Button", "* pack" : "add", + "xtype" : "Button", "$ xns" : "Gtk" } ] diff --git a/RepoStatusPopover.vala b/RepoStatusPopover.vala index 69644ddb..5364fcd3 100644 --- a/RepoStatusPopover.vala +++ b/RepoStatusPopover.vala @@ -500,12 +500,22 @@ public class RepoStatusPopover : Object // my vars (dec) // set gobject values - this.el.label = "Ignore for now"; + this.el.label = "Reset to remote"; //listeners this.el.button_press_event.connect( () => { - _this.el.hide(); - return false; + + + GitMonitor.gitmonitor.stop(); + _this.repo.git({ "reset" , "--hard" }); + _this.repo.loadStatus(); + GitMonitor.gitmonitor.start(); + _this.diff_view.el.get_buffer().set_text(_this.repo.git_diff); + _this.status_view.el.get_buffer().set_text(_this.repo.git_status); + Clones.singleton().reposStore.load(); + + _this.el.hide(); + return false; }); } @@ -529,14 +539,14 @@ public class RepoStatusPopover : Object // my vars (dec) // set gobject values - this.el.label = "Reset to remote"; + this.el.label = "Pull updates"; //listeners this.el.button_press_event.connect( () => { GitMonitor.gitmonitor.stop(); - _this.repo.git({ "reset" , "--hard" }); + _this.repo.git({ "pull" , "--all" }); _this.repo.loadStatus(); GitMonitor.gitmonitor.start(); _this.diff_view.el.get_buffer().set_text(_this.repo.git_diff);