5bc0316a2ea5d133bcad9723115857428cd12ffb
[gitlive] / NewBranch.bjs
1 {
2  "name" : "NewBranch",
3  "parent" : "",
4  "title" : "",
5  "path" : "/home/alan/gitlive/gitlive/NewBranch.bjs",
6  "permname" : "",
7  "modOrder" : "",
8  "build_module" : "gitlive",
9  "items" : [
10   {
11    "listeners" : {
12     "delete_event" : "(self, event) => {\n    this.el.hide();\n    return true; \n    //test  \n}\n ",
13     "response" : " (self, response_id) =>  { \n  \n\tGLib.debug(\"got %d\", (int) response_id);\n\tif (response_id < 1) {\n\t    _this.el.hide();\t\n\t    this.running = false; \n\t \treturn;\n\t}\n\t \n\t// have they selected a ticket..\n\t// make that the current active ticket?\n\t// we really need to store locally what ticket is being worked on..\n\t// in theory we could be working on multiple project and not merging..\n\t// -- each repo would have their active ticket (only one per repo)\n\t// -- so we could just store that in there\n\t// -- initial load can check the contents of the ticket files on first scan.\n\tvar ticket_id = _this.ticketsel.selectedTicketId();\n\t\n    if (this.repo != null) {\n    \tvar bn = _this.name.el.get_text();\n\n\t\tvar res = this.repo.setActiveTicket(\t\t\t\n\t\t\t RooTicket.singleton().getById(ticket_id != \"\" ? ticket_id : \"-1\"), bn\n\t\t );\n\t\t if (res) {\n\t\t \t// start the monitoring..\n\t\t \t GitMonitor.gitmonitor.start();\n\t\t \t \n\t\t }\n    }\n    \n\n    this.running = false; \n\n\tthis.el.hide();\n\t \n\t \n\n\t \n}"
14    },
15    "default_width" : 500,
16    "$ deletable" : true,
17    "title" : "Create a working branch ",
18    "xtype" : "Dialog",
19    "# GitRepo? repo" : "null",
20    "|   void show" : "( GitRepo repo, Gee.ArrayList<GitMonitorQueue> queue, string tid = \"\" ) \n{\n     // this.el.set_gravity(Gdk.Gravity.NORTH);\n    if (this.running) { // should not happen!!\n    \tGLib.error(\"new branch show called, when already being displayed?\");\n\t}\n\tthis.queue = queue;\n\t\n\tthis.running  = true;\n\tGitMonitor.gitmonitor.stop();\n\t\n    this.repo = repo;\n    \n    \n    \n    \n\tthis.el.move((Gdk.Screen.width() / 2)- 250 ,0);\n\tthis.el.set_default_size( 500,200); // not sure why it grows..\n    GLib.debug(\"Loading tickets\"); \n     \n\n    this.el.show_all();\n    this.el.set_keep_above(true);\n   \n    \n    var curproj = RooTicket.singleton().getProjectByRepo(this.repo);\n     _this.prmodel.loadProjects(curproj == null ? \"\" : curproj.id);\n    \n \t_this.dbmodel.loadTickets(curproj == null ? \"\": curproj.id, tid);\n \tthis.el.run();\n\n}",
21    "default_height" : 200,
22    "$ xns" : "Gtk",
23    "# bool running" : false,
24    "# Gee.ArrayList<GitMonitorQueue> queue" : "null",
25    "bool modal" : true,
26    "items" : [
27     {
28      "xtype" : "VBox",
29      "$ pack" : "get_content_area().add",
30      "$ xns" : "Gtk",
31      "items" : [
32       {
33        "bool homogeneous" : true,
34        "bool expand" : false,
35        "xtype" : "Table",
36        "* pack" : "pack_start,false,false,0",
37        "uint column_spacing" : 4,
38        "n_columns" : 5,
39        "$ xns" : "Gtk",
40        "n_rows" : 5,
41        "bool vexpand" : false,
42        "int margin" : 2,
43        "items" : [
44         {
45          "label" : "Project",
46          "$ visible" : true,
47          "Gtk.Align halign" : "Gtk.Align.START",
48          "* pack" : "attach_defaults,0,1,0,1",
49          "xtype" : "Label",
50          "$ justify" : "Gtk.Justification.RIGHT",
51          "x_options" : 4,
52          "$ xns" : "Gtk"
53         },
54         {
55          "label" : "Ticket",
56          "$ visible" : true,
57          "Gtk.Align halign" : "Gtk.Align.START",
58          "* pack" : "attach_defaults,1,2,0,1",
59          "xtype" : "Label",
60          "x_options" : 4,
61          "$ xns" : "Gtk"
62         },
63         {
64          "listeners" : {
65           "changed" : "() => {\n\tif (this.loading) {\n\t\treturn;\n\t}\n\tvar project_id = this.selectedProjectId();\n\t_this.dbmodel.loadTickets(project_id);\n\t\n\t\n\t/*if (this.loading) {\n\t\treturn;\n\t}\n\tvar ticket_id = this.selectedTicketId();\n\t\n\tvar name = RooTicket.singleton().usernameLocal();\n\t\n\tif (ticket_id == \"\" || ticket_id == null) {\n\t\n\t\tvar dt = new  DateTime.now_local();\n\t\t_this.name.el.set_text(\"wip_%s_%s\".printf(name,dt.format(\"%Y_%b_%d\")));\n\t\treturn;\n\t}\n\t\n\t\n\tvar ticket = RooTicket.singleton().getById(ticket_id);\n   \n\t_this.name.el.set_text(\"wip_%s_T%s_%s\".printf(name,ticket.id, ticket.summaryToBranchName()));\n\t\n\t//GLib.debug (//\"Selection: %s, %s\\n\", (string) val1, (string) val2);\n\t*/\n}"
66          },
67          "* ctor" : "new Gtk.ComboBox.with_entry()",
68          "| string selectedProjectId" : "() {\n\tGtk.TreeIter iter;\n\tValue val1;\n \n \n\tthis.el.get_active_iter (out iter);\n\t_this.prmodel.el.get_value (iter, 0, out val1);\n \n\n\treturn  (string) val1;\n\t\n\t\n\t\n\t\n}\n",
69          "id" : "projectsel",
70          "* init" : "this.el.set_entry_text_column(1);",
71          "* pack" : "attach_defaults,0,1,1,2",
72          "xtype" : "ComboBox",
73          "# bool loading" : false,
74          "$ xns" : "Gtk",
75          "items" : [
76           {
77            "id" : "prcellrenderer",
78            "* pack" : "pack_start,true",
79            "xtype" : "CellRendererText",
80            "$ xns" : "Gtk"
81           },
82           {
83            "| void loadProjects" : "  (string id) {\n\n    var rt = RooTicket.singleton();\n    rt.loadProjects();\n    \n    _this.projectsel.loading = true;\n\n    this.el.clear();                                    \n    Gtk.TreeIter iter;\n    var el = this.el;\n    \n    el.append(out iter);\n\n    \n    el.set_value(iter, 0, \"\");\n    el.set_value(iter, 1, \"-- select a project --\");\n    if (id == \"\") {\n\t    _this.projectsel.el.set_active_iter(iter);\n    }\n    var projects = rt.projects;\n    foreach(var project in projects) {\n    \n        el.append(out iter);\n        \n        el.set_value(iter, 0, project.id);\n        el.set_value(iter, 1,  project.name );\n        if (id == project.id) {\n\t \t   _this.projectsel.el.set_active_iter(iter);\n\t    }   \n        \n    }\n    \n    _this.projectsel.loading = false;\n     //this.el.set_sort_column_id(0, Gtk.SortType.ASCENDING);          \n                                     \n}\n",
84            "id" : "prmodel",
85            "* pack" : "set_model",
86            "xtype" : "ListStore",
87            "$ columns" : "typeof(string),typeof(string)",
88            "n_columns" : 2,
89            "$ xns" : "Gtk"
90           }
91          ]
92         },
93         {
94          "listeners" : {
95           "changed" : "() => {\n\tif (this.loading) {\n\t\treturn;\n\t}\n\tvar ticket_id = this.selectedTicketId();\n\t\n\tvar name = RooTicket.singleton().usernameLocal();\n\t\n\tif (ticket_id == \"\" || ticket_id == null) {\n\t\n\t\tvar dt = new  DateTime.now_local();\n\t\t_this.name.el.set_text(\"wip_%s_%s\".printf(name,dt.format(\"%Y_%b_%d\")));\n\t\treturn;\n\t}\n\t\n\t\n\tvar ticket = RooTicket.singleton().getById(ticket_id);\n   \n\t_this.name.el.set_text(\"wip_%s_T%s_%s\".printf(name,ticket.id, ticket.summaryToBranchName()));\n\t\n\t//GLib.debug (//\"Selection: %s, %s\\n\", (string) val1, (string) val2);\n}"
96          },
97          "* ctor" : "new Gtk.ComboBox.with_entry()",
98          "id" : "ticketsel",
99          "* init" : "//this.el.add_attribute(_this.dbcellrenderer.el , \"markup\", 1 );\nthis.el.set_entry_text_column(1);",
100          "* pack" : "attach_defaults,1,4,1,2",
101          "xtype" : "ComboBox",
102          "# bool loading" : false,
103          "$ xns" : "Gtk",
104          "| string selectedTicketId" : "() {\nGtk.TreeIter iter;\n\tValue val1;\n \n \n\tthis.el.get_active_iter (out iter);\n\t_this.dbmodel.el.get_value (iter, 0, out val1);\n \n\n\treturn  (string) val1;\n\t\n\t\n\t\n\t\n}\n",
105          "items" : [
106           {
107            "id" : "dbcellrenderer",
108            "xtype" : "CellRendererText",
109            "* pack" : "pack_start,true",
110            "$ xns" : "Gtk"
111           },
112           {
113            "id" : "dbmodel",
114            "xtype" : "ListStore",
115            "* pack" : "set_model",
116            "| void loadTickets" : "(string project_id , string tid = \"\") {\n\n\n    \n    // fixme .. get project id from selection..\n    \n     RooTicket.singleton().loadTickets(\n \t\t\tproject_id,\n \t\t\t_this.btn_not_me.el.active ? RooTicket.NotMe.TRUE :  RooTicket.NotMe.FALSE,\n \t\t\t _this.btn_closed.el.active ? RooTicket.Closed.TRUE :  RooTicket.Closed.FALSE\n\t\t );\n        \n    _this.ticketsel.loading = true;\n\n    this.el.clear();                                    \n    Gtk.TreeIter iter;\n    var el = this.el;\n    \n    el.append(out iter);\n\n    \n    el.set_value(iter, 0, \"\");\n    el.set_value(iter, 1, \"-- select a ticket --\");\n    \n    _this.ticketsel.el.set_active_iter(iter);\n    var tickets = RooTicket.singleton().tickets;\n    foreach(var ticket in tickets) {\n    \n        el.append(out iter);\n        \n        el.set_value(iter, 0, ticket.id);\n        el.set_value(iter, 1, \"#%s [%s] %s\".printf( ticket.id, ticket.project_id_name , ticket.summary));\n        \n        if (ticket.id == tid) {\n\t\t    _this.ticketsel.el.set_active_iter(iter);\n        }\n        \n    }\n    \n    _this.ticketsel.loading = false;\n     //this.el.set_sort_column_id(0, Gtk.SortType.ASCENDING);          \n                                     \n}\n",
117            "$ columns" : "typeof(string),typeof(string)",
118            "n_columns" : 2,
119            "$ xns" : "Gtk"
120           }
121          ]
122         },
123         {
124          "listeners" : {
125           "clicked" : "() => {\n\tTicket.singleton().show(_this.repo);\n\n}"
126          },
127          "bool expand" : false,
128          "* pack" : "attach_defaults,4,5,1,2",
129          "xtype" : "Button",
130          "string label" : "New Ticket",
131          "$ xns" : "Gtk"
132         },
133         {
134          "label" : "Use this as branch name",
135          "Gtk.Align halign" : "Gtk.Align.START",
136          "xalign" : 0.90000000000000002,
137          "* pack" : "attach_defaults,0,1,3,4",
138          "xtype" : "Label",
139          "$ justify" : "Gtk.Justification.RIGHT",
140          "x_options" : 4,
141          "$ xns" : "Gtk"
142         },
143         {
144          "id" : "name",
145          "$ visible" : true,
146          "xtype" : "Entry",
147          "* pack" : "attach_defaults,0,4,4,5",
148          "$ xns" : "Gtk"
149         },
150         {
151          "listeners" : {
152           "clicked" : "() => {\n\tGLib.debug(\"fire response = 1\");\n\t_this.el.response(1);\n}"
153          },
154          "label" : "Create Branch",
155          "* init" : "{\n   this.el.get_style_context().add_class(\"suggested-action\");\n}\n",
156          "xtype" : "Button",
157          "* pack" : "attach_defaults,4,5,4,5",
158          "$ xns" : "Gtk"
159         },
160         {
161          "* pack" : "attach_defaults,0,5,2,3",
162          "xtype" : "Box",
163          "$ xns" : "Gtk",
164          "Gtk.Orientation orientation" : "Gtk.Orientation.HORIZONTAL",
165          "items" : [
166           {
167            "listeners" : {
168             "toggled" : "() => {\n\tvar project_id = _this.projectsel.selectedProjectId();\n\t_this.dbmodel.loadTickets(project_id);\t\n}"
169            },
170            "id" : "btn_not_me",
171            "* pack" : "add",
172            "string label" : "Show tickets not assigned to me",
173            "xtype" : "CheckButton",
174            "$ xns" : "Gtk"
175           },
176           {
177            "listeners" : {
178             "toggled" : "() => {\n \tvar project_id = _this.projectsel.selectedProjectId();\n\t_this.dbmodel.loadTickets(project_id);\t\n\t \n}"
179            },
180            "id" : "btn_closed",
181            "string label" : "Show closed Tickets",
182            "xtype" : "CheckButton",
183            "* pack" : "add",
184            "$ xns" : "Gtk"
185           },
186           {
187            "listeners" : {
188             "activate_link" : "(uri) => {\n\tif (uri == \"refresh\") {\n\t\tvar curproj = RooTicket.singleton().getProjectByRepo(_this.repo);\n\t\t _this.prmodel.loadProjects(curproj == null ? \"\": curproj.id);\n\n\t\t_this.dbmodel.loadTickets(curproj == null ? \"\": curproj.id);\t\t\n\t}\n\treturn true;\n}"
189            },
190            "bool use_markup" : true,
191            "Gtk.Align halign" : "Gtk.Align.END",
192            "bool hexpand" : true,
193            "* pack" : "add",
194            "xtype" : "Label",
195            "string label" : "<a href=\"refresh\">Refresh Ticket list</a>",
196            "$ xns" : "Gtk"
197           }
198          ]
199         }
200        ]
201       }
202      ]
203     }
204    ]
205   }
206  ]
207 }