Partial Fix #5560 - Gitlive - branching wip
[gitlive] / NewBranch.vala
1 static NewBranch  _NewBranch;
2
3 public class NewBranch : Object
4 {
5     public Gtk.Dialog el;
6     private NewBranch  _this;
7
8     public static NewBranch singleton()
9     {
10         if (_NewBranch == null) {
11             _NewBranch= new NewBranch();
12         }
13         return _NewBranch;
14     }
15     public Xcls_ticketsel ticketsel;
16     public Xcls_dbcellrenderer dbcellrenderer;
17     public Xcls_dbmodel dbmodel;
18     public Xcls_name name;
19
20         // my vars (def)
21     public GitRepo? repo;
22     public bool running;
23     public Gee.ArrayList<GitMonitorQueue> queue;
24
25     // ctor
26     public NewBranch()
27     {
28         _this = this;
29         this.el = new Gtk.Dialog();
30
31         // my vars (dec)
32         this.repo = null;
33         this.running = false;
34         this.queue = null;
35
36         // set gobject values
37         this.el.title = "Create a working branch ";
38         this.el.default_height = 200;
39         this.el.default_width = 500;
40         this.el.deletable = true;
41         this.el.modal = true;
42         var child_0 = new Xcls_VBox2( _this );
43         child_0.ref();
44         this.el.get_content_area().add (  child_0.el  );
45         var child_1 = new Xcls_Button10( _this );
46         child_1.ref();
47         this.el.add_action_widget (  child_1.el , 0 );
48         var child_2 = new Xcls_Button11( _this );
49         child_2.ref();
50         this.el.add_action_widget (  child_2.el , 1 );
51
52         //listeners
53         this.el.delete_event.connect( (self, event) => {
54             this.el.hide();
55             return true; 
56             //test  
57         });
58         this.el.response.connect( (self, response_id) =>  { 
59           
60                 GLib.debug("got %d", (int) response_id);
61                 if (response_id == 0) {
62                     _this.el.hide();    
63                     this.running = false; 
64                         return;
65                 }
66                  
67                 // have they selected a ticket..
68                 // make that the current active ticket?
69                 // we really need to store locally what ticket is being worked on..
70                 // in theory we could be working on multiple project and not merging..
71                 // -- each repo would have their active ticket (only one per repo)
72                 // -- so we could just store that in there
73                 // -- initial load can check the contents of the ticket files on first scan.
74                 var ticket_id = _this.ticketsel.selectedTicketId();
75                 
76             if (this.repo != null) {
77                 var bn = _this.name.el.get_text();
78         
79                         var res = this.repo.setActiveTicket(                    
80                                  RooTicket.singleton().getById(ticket_id != "" ? ticket_id : "-1"), bn
81                          );
82                          if (res) {
83                                 // start the monitoring..
84                                  GitMonitor.gitmonitor.start();
85                                  
86                          }
87             }
88             
89         
90             this.running = false; 
91         
92                 this.el.hide();
93                  
94                  
95         
96                  
97         });
98         this.el.show.connect( (self)  => {
99          
100         
101           //test
102         });
103     }
104
105     // user defined functions
106     public   void show ( GitRepo repo, Gee.ArrayList<GitMonitorQueue> queue ) 
107     {
108          // this.el.set_gravity(Gdk.Gravity.NORTH);
109         if (this.running) { // should not happen!!
110                 GLib.error("new branch show called, when already being displayed?");
111         }
112         this.queue = queue;
113         
114         this.running  = true;
115         GitMonitor.gitmonitor.stop();
116         
117         this.repo = repo;
118         
119         this.el.move((Gdk.Screen.width() / 2)- 250 ,0);
120                 GLib.debug("Loading tickets"); 
121     
122     
123         this.el.show_all();
124             this.el.set_keep_above(true);
125         _this.dbmodel.loadTickets();
126         this.el.run();
127     
128     }
129     public class Xcls_VBox2 : Object
130     {
131         public Gtk.VBox el;
132         private NewBranch  _this;
133
134
135             // my vars (def)
136
137         // ctor
138         public Xcls_VBox2(NewBranch _owner )
139         {
140             _this = _owner;
141             this.el = new Gtk.VBox( true, 0 );
142
143             // my vars (dec)
144
145             // set gobject values
146             var child_0 = new Xcls_Table3( _this );
147             child_0.ref();
148             this.el.pack_start (  child_0.el , false,false,0 );
149         }
150
151         // user defined functions
152     }
153     public class Xcls_Table3 : Object
154     {
155         public Gtk.Table el;
156         private NewBranch  _this;
157
158
159             // my vars (def)
160
161         // ctor
162         public Xcls_Table3(NewBranch _owner )
163         {
164             _this = _owner;
165             this.el = new Gtk.Table( 2, 2, false );
166
167             // my vars (dec)
168
169             // set gobject values
170             this.el.margin = 2;
171             this.el.column_spacing = 2;
172             var child_0 = new Xcls_Label4( _this );
173             child_0.ref();
174             this.el.attach_defaults (  child_0.el , 0,1,0,1 );
175             var child_1 = new Xcls_ticketsel( _this );
176             child_1.ref();
177             this.el.attach_defaults (  child_1.el , 1,2,0,1 );
178             var child_2 = new Xcls_Label8( _this );
179             child_2.ref();
180             this.el.attach_defaults (  child_2.el , 0,1,1,2 );
181             var child_3 = new Xcls_name( _this );
182             child_3.ref();
183             this.el.attach_defaults (  child_3.el , 1,2,1,2 );
184         }
185
186         // user defined functions
187     }
188     public class Xcls_Label4 : Object
189     {
190         public Gtk.Label el;
191         private NewBranch  _this;
192
193
194             // my vars (def)
195
196         // ctor
197         public Xcls_Label4(NewBranch _owner )
198         {
199             _this = _owner;
200             this.el = new Gtk.Label( "Select Ticket" );
201
202             // my vars (dec)
203
204             // set gobject values
205             this.el.justify = Gtk.Justification.RIGHT;
206             this.el.xalign = 0.900000f;
207             this.el.visible = true;
208         }
209
210         // user defined functions
211     }
212
213     public class Xcls_ticketsel : Object
214     {
215         public Gtk.ComboBox el;
216         private NewBranch  _this;
217
218
219             // my vars (def)
220         public bool loading;
221
222         // ctor
223         public Xcls_ticketsel(NewBranch _owner )
224         {
225             _this = _owner;
226             _this.ticketsel = this;
227             this.el = new Gtk.ComboBox();
228
229             // my vars (dec)
230             this.loading = false;
231
232             // set gobject values
233             var child_0 = new Xcls_dbcellrenderer( _this );
234             child_0.ref();
235             this.el.pack_start (  child_0.el , true );
236             var child_1 = new Xcls_dbmodel( _this );
237             child_1.ref();
238             this.el.set_model (  child_1.el  );
239
240             // init method
241
242             this.el.add_attribute(_this.dbcellrenderer.el , "markup", 1 );
243
244             //listeners
245             this.el.changed.connect( () => {
246                 if (this.loading) {
247                         return;
248                 }
249                 var ticket_id = this.selectedTicketId();
250                 
251                 var name = RooTicket.singleton().usernameLocal();
252                 
253                 if (ticket_id == "" || ticket_id == null) {
254                 
255                         var dt = new  DateTime.now_local();
256                         _this.name.el.set_text("wip_%s_%s".printf(name,dt.format("%Y_%b_%d")));
257                         return;
258                 }
259                 
260                 
261                 var ticket = RooTicket.singleton().getById(ticket_id);
262                
263                 _this.name.el.set_text("wip_%s_T%s_%s".printf(name,ticket.id, ticket.summaryToBranchName()));
264                 
265                 //GLib.debug (//"Selection: %s, %s\n", (string) val1, (string) val2);
266             });
267         }
268
269         // user defined functions
270         public string selectedTicketId () {
271         Gtk.TreeIter iter;
272                 Value val1;
273          
274          
275                 this.el.get_active_iter (out iter);
276                 _this.dbmodel.el.get_value (iter, 0, out val1);
277          
278         
279                 return  (string) val1;
280                 
281                 
282                 
283                 
284         }
285     }
286     public class Xcls_dbcellrenderer : Object
287     {
288         public Gtk.CellRendererText el;
289         private NewBranch  _this;
290
291
292             // my vars (def)
293
294         // ctor
295         public Xcls_dbcellrenderer(NewBranch _owner )
296         {
297             _this = _owner;
298             _this.dbcellrenderer = this;
299             this.el = new Gtk.CellRendererText();
300
301             // my vars (dec)
302
303             // set gobject values
304         }
305
306         // user defined functions
307     }
308
309     public class Xcls_dbmodel : Object
310     {
311         public Gtk.ListStore el;
312         private NewBranch  _this;
313
314
315             // my vars (def)
316
317         // ctor
318         public Xcls_dbmodel(NewBranch _owner )
319         {
320             _this = _owner;
321             _this.dbmodel = this;
322             this.el = new Gtk.ListStore( 2, typeof(string),typeof(string) );
323
324             // my vars (dec)
325
326             // set gobject values
327         }
328
329         // user defined functions
330         public void loadTickets () {
331         
332             RooTicket.singleton().loadTickets();
333             
334             _this.ticketsel.loading = true;
335         
336             this.el.clear();                                    
337             Gtk.TreeIter iter;
338             var el = this.el;
339             
340             el.append(out iter);
341         
342             
343             el.set_value(iter, 0, "");
344             el.set_value(iter, 1, "-- select a ticket --");
345             
346             _this.ticketsel.el.set_active_iter(iter);
347             var tickets = RooTicket.singleton().tickets;
348             foreach(var ticket in tickets) {
349             
350                 el.append(out iter);
351                 
352                 el.set_value(iter, 0, ticket.id);
353                 el.set_value(iter, 1, "#%s [%s] %s".printf( ticket.id, ticket.project_id_name , ticket.summary));
354                 
355                 //if (data.get(i) == cur) {
356                  //   _this.build_module.el.set_active_iter(iter);
357                // }
358                 
359             }
360             
361             _this.ticketsel.loading = false;
362              //this.el.set_sort_column_id(0, Gtk.SortType.ASCENDING);          
363                                              
364         }
365     }
366
367
368     public class Xcls_Label8 : Object
369     {
370         public Gtk.Label el;
371         private NewBranch  _this;
372
373
374             // my vars (def)
375
376         // ctor
377         public Xcls_Label8(NewBranch _owner )
378         {
379             _this = _owner;
380             this.el = new Gtk.Label( "or use this as branch name" );
381
382             // my vars (dec)
383
384             // set gobject values
385             this.el.justify = Gtk.Justification.RIGHT;
386             this.el.xalign = 0.900000f;
387         }
388
389         // user defined functions
390     }
391
392     public class Xcls_name : Object
393     {
394         public Gtk.Entry el;
395         private NewBranch  _this;
396
397
398             // my vars (def)
399
400         // ctor
401         public Xcls_name(NewBranch _owner )
402         {
403             _this = _owner;
404             _this.name = this;
405             this.el = new Gtk.Entry();
406
407             // my vars (dec)
408
409             // set gobject values
410             this.el.visible = true;
411         }
412
413         // user defined functions
414     }
415
416
417
418     public class Xcls_Button10 : Object
419     {
420         public Gtk.Button el;
421         private NewBranch  _this;
422
423
424             // my vars (def)
425
426         // ctor
427         public Xcls_Button10(NewBranch _owner )
428         {
429             _this = _owner;
430             this.el = new Gtk.Button();
431
432             // my vars (dec)
433
434             // set gobject values
435             this.el.relief = Gtk.ReliefStyle.NONE;
436             this.el.label = "Do not create Branch";
437         }
438
439         // user defined functions
440     }
441
442     public class Xcls_Button11 : Object
443     {
444         public Gtk.Button el;
445         private NewBranch  _this;
446
447
448             // my vars (def)
449
450         // ctor
451         public Xcls_Button11(NewBranch _owner )
452         {
453             _this = _owner;
454             this.el = new Gtk.Button();
455
456             // my vars (dec)
457
458             // set gobject values
459             this.el.label = "Create Branch";
460         }
461
462         // user defined functions
463     }
464
465 }