RepoStatusPopover.bjs
[gitlive] / RepoStatusPopover.bjs
1 {
2  "name" : "RepoStatusPopover",
3  "parent" : "",
4  "title" : "",
5  "path" : "/home/alan/gitlive/gitlive/RepoStatusPopover.bjs",
6  "permname" : "",
7  "modOrder" : "",
8  "build_module" : "gitlive",
9  "items" : [
10   {
11    "GitRepo repo" : "",
12    "| void show" : " (Gtk.Widget btn, Gdk.Rectangle rect, GitRepo repo) {\n    _this.repo = repo;\n    // get the active project.\n     var lm = Gtk.SourceLanguageManager.get_default();\n                \n//    ((Gtk.SourceBuffer)(_this.view.el.get_buffer())) .set_language(\n  //      lm.get_language(\"html\")\n //   );\n  \n    //print (project.fn);\n    //project.runhtml = project.runhtml || '';\n    _this.diff_view.el.get_buffer().set_text(repo.git_diff);\n    _this.status_view.el.get_buffer().set_text(repo.git_status);\n       \n    \t//console.log('show all');\n\tthis.el.set_modal(true);\n\tthis.el.set_relative_to(btn);\n    this.el.set_pointing_to(rect);\n  \n\t//this.el.set_position(Gtk.PositionType.RIGHT);\n\n\tif (repo.activeTicket == null) {\n\t\t_this.btn_merge.el.set_sensitive(false);\n\t} else {\n\t\t_this.btn_merge.el.set_sensitive(true);\n\t}\n\t_this.btn_create.el.set_sensitive(repo.is_master());\n\t\n\t_this.btn_stash.el.set_sensitive(repo.has_local_changes);\n\t_this.btn_commit.el.set_sensitive(repo.has_local_changes);\n\t_this.btn_reset.el.set_sensitive(repo.has_local_changes);\n\t_this.btn_pull.el.set_sensitive(repo.ahead_or_behind == \"B\");\t\n\t\n\t// window + header?\n\t GLib.debug(\"SHOWALL - POPIP\\n\");\n\tthis.el.show_all();\n\t//this.el.set_size_request(800,500);\n//\tthis.diff_view.el.grab_focus();\n\t\n    //this.el.show_all();\n}\n",
13    "xtype" : "Popover",
14    "Gtk.PositionType position" : "Gtk.PositionType.RIGHT",
15    "$ xns" : "Gtk",
16    "bool modal" : true,
17    "uint border_width" : 0,
18    "items" : [
19     {
20      "xtype" : "Box",
21      "* pack" : "add",
22      "$ xns" : "Gtk",
23      "Gtk.Orientation orientation" : "Gtk.Orientation.VERTICAL",
24      "border_width" : 5,
25      "$ homogeneous" : false,
26      "items" : [
27       {
28        "* pack" : "pack_start,false,false,0",
29        "xtype" : "Box",
30        "gboolean expand" : false,
31        "$ xns" : "Gtk",
32        "Gtk.Orientation orientation" : "Gtk.Orientation.HORIZONTAL",
33        "$ homogeneous" : true,
34        "gboolean vexpand" : false,
35        "items" : [
36         {
37          "Gtk.ToolbarStyle toolbar_style" : "Gtk.ToolbarStyle.BOTH_HORIZ",
38          "xtype" : "Toolbar",
39          "* pack" : "add",
40          "$ xns" : "Gtk",
41          "items" : [
42           {
43            "listeners" : {
44             "button_press_event" : "() => {\n  \n   \n   GitMonitor.gitmonitor.stop();\n   _this.repo.git({ \"stash\" , \"--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}"
45            },
46            "label" : "Stash Changes",
47            "* ctor" : "new Gtk.ToolButton(new Gtk.Image.from_icon_name (\"gtk-undo\", Gtk.IconSize.SMALL_TOOLBAR), null);",
48            "id" : "btn_stash",
49            "xtype" : "ToolButton",
50            "* pack" : "add",
51            "$ xns" : "Gtk",
52            "bool is_important" : true
53           },
54           {
55            "listeners" : {
56             "button_press_event" : "() => {\n   _this.repo.git({ \"commit\" , \"-a\" ,\"-m\", \"Uncommited changes synced\" });\n   _this.repo.push();\n   _this.repo.loadStatus();\n   \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    \n   _this.el.hide();\n   Clones.singleton().reposStore.load();\n   \n    return false;\n}"
57            },
58            "label" : "Commit Changes",
59            "* ctor" : "new Gtk.ToolButton(new Gtk.Image.from_icon_name (\"gtk-save\", Gtk.IconSize.SMALL_TOOLBAR), null);",
60            "id" : "btn_commit",
61            "* pack" : "add",
62            "xtype" : "ToolButton",
63            "$ xns" : "Gtk",
64            "bool is_important" : true
65           },
66           {
67            "listeners" : {
68             "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}"
69            },
70            "label" : "Reset / clear changes",
71            "* ctor" : "new Gtk.ToolButton(new Gtk.Image.from_icon_name (\"gtk-revert-to-saved\", Gtk.IconSize.SMALL_TOOLBAR), null);",
72            "* pack" : "add",
73            "xtype" : "ToolButton",
74            "$ xns" : "Gtk",
75            "bool is_important" : true
76           },
77           {
78            "listeners" : {
79             "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}"
80            },
81            "label" : "Pull updates",
82            "* ctor" : "new Gtk.ToolButton(new Gtk.Image.from_icon_name (\"gtk-goto-bottom\", Gtk.IconSize.SMALL_TOOLBAR), null);",
83            "xtype" : "ToolButton",
84            "* pack" : "add",
85            "$ xns" : "Gtk",
86            "bool is_important" : true
87           }
88          ]
89         }
90        ]
91       },
92       {
93        "* pack" : "add",
94        "xtype" : "Notebook",
95        "$ xns" : "Gtk",
96        "bool vexpand" : true,
97        "items" : [
98         {
99          "id" : "label_status",
100          "* pack" : false,
101          "xtype" : "Label",
102          "$ xns" : "Gtk",
103          "utf8 label" : "Status"
104         },
105         {
106          "id" : "label_diff",
107          "xtype" : "Label",
108          "* pack" : false,
109          "$ xns" : "Gtk",
110          "utf8 label" : "Diff"
111         },
112         {
113          "* pack" : "append_page,_this.label_status.el",
114          "xtype" : "Box",
115          "gboolean homogeneous" : false,
116          "$ xns" : "Gtk",
117          "Gtk.Orientation orientation" : "Gtk.Orientation.VERTICAL",
118          "items" : [
119           {
120            "* pack" : "pack_start,true,true,0",
121            "xtype" : "ScrolledWindow",
122            "$ xns" : "Gtk",
123            "items" : [
124             {
125              "id" : "status_view",
126              "* init" : " \n    var description =   Pango.FontDescription.from_string(\"monospace\");\n    description.set_size(9000);\n    this.el.override_font(description);",
127              "xtype" : "View",
128              "* pack" : "add",
129              "$ xns" : "GtkSource"
130             }
131            ]
132           }
133          ]
134         },
135         {
136          "* pack" : "append_page,_this.label_diff.el",
137          "xtype" : "Box",
138          "gboolean homogeneous" : false,
139          "$ xns" : "Gtk",
140          "Gtk.Orientation orientation" : "Gtk.Orientation.VERTICAL",
141          "items" : [
142           {
143            "int height_request" : 400,
144            "* pack" : "pack_start,true,true,0",
145            "xtype" : "ScrolledWindow",
146            "$ xns" : "Gtk",
147            "items" : [
148             {
149              "id" : "diff_view",
150              "* init" : " \n    var description =   Pango.FontDescription.from_string(\"monospace\");\n    description.set_size(9000);\n    this.el.override_font(description);",
151              "xtype" : "View",
152              "* pack" : "add",
153              "$ xns" : "GtkSource"
154             }
155            ]
156           }
157          ]
158         }
159        ]
160       },
161       {
162        "* pack" : "pack_end,false,false,0",
163        "xtype" : "Box",
164        "gboolean expand" : false,
165        "$ xns" : "Gtk",
166        "Gtk.Orientation orientation" : "Gtk.Orientation.HORIZONTAL",
167        "$ homogeneous" : true,
168        "gboolean vexpand" : false,
169        "items" : [
170         {
171          "Gtk.ToolbarStyle toolbar_style" : "Gtk.ToolbarStyle.BOTH_HORIZ",
172          "* pack" : "add",
173          "xtype" : "Toolbar",
174          "$ xns" : "Gtk",
175          "items" : [
176           {
177            "listeners" : {
178             "button_press_event" : "() => {\n   var oldq = new Gee.ArrayList<GitMonitorQueue>();  \n\n\tClones.singleton().el.response(-1);\n\tNewBranch.singleton().show(_this.repo, oldq);\n\n    return false;\n}"
179            },
180            "label" : "Create Branch / Start ticket",
181            "* ctor" : "new Gtk.ToolButton(new Gtk.Image.from_icon_name (\"gtk-add\", Gtk.IconSize.SMALL_TOOLBAR), null);",
182            "id" : "btn_create",
183            "xtype" : "ToolButton",
184            "* pack" : "add",
185            "$ xns" : "Gtk",
186            "bool is_important" : true
187           },
188           {
189            "listeners" : {
190             "clicked" : "() => {\n\n   _this.el.hide();\n   Clones.singleton().el.response(-1);\n   if (_this.repo.activeTicket != null) {\n\t   MergeBranch.singleton().show(_this.repo.activeTicket, null);   \n   }\n    return ;\n}"
191            },
192            "label" : "Merge branch /  Complete ticket",
193            "* ctor" : "new Gtk.ToolButton(new Gtk.Image.from_icon_name (\"gtk-goto-top\", Gtk.IconSize.SMALL_TOOLBAR), null);",
194            "id" : "btn_merge",
195            "xtype" : "ToolButton",
196            "* pack" : "add",
197            "$ xns" : "Gtk",
198            "bool is_important" : true
199           },
200           {
201            "listeners" : {
202             "button_press_event" : "() => {\n  \n\n\n      Clones.singleton().el.response(-1);\n  \n   _this.el.hide();\n   Ticket.singleton().show( _this.repo);\n   \n    return false;\n}"
203            },
204            "label" : "Create Ticket",
205            "* ctor" : "new Gtk.ToolButton(new Gtk.Image.from_icon_name (\"gtk-new\", Gtk.IconSize.SMALL_TOOLBAR), null);",
206            "* pack" : "add",
207            "xtype" : "ToolButton",
208            "$ xns" : "Gtk",
209            "bool is_important" : true
210           }
211          ]
212         }
213        ]
214       }
215      ]
216     }
217    ]
218   }
219  ]
220 }