d2c8a6991a721914a03e16ebcdd4f3a04245abb5
[gitlive] / Ticket.bjs
1 {
2  "name" : "Ticket",
3  "parent" : "",
4  "title" : "",
5  "path" : "/home/alan/gitlive/gitlive/Ticket.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 \n\tvar tid = RooTicket.singleton().createTicket(\n\t\n\t\t_this.project_id.selectedProjectId(),\n\t\n\t\t_this.milestone_id.selectedMilestoneId(),\n\t\t_this.priority_id.selectedPriorityId() ,\n\t\t_this.classification_id.selectedClassificationId() ,\n\t\t_this.developer_id.selectedDeveloperId(),\n\t\t_this.summary.el.get_text() ,\n\t\t_this.description.el.buffer.text \n\t);\n\t\n\tif (this.repo != null) {\n\t \tNewBranch.singleton().show(this.repo, new Gee.ArrayList<GitMonitorQueue>(), tid);\n \t}\n\t \n\n\t \n}"
14    },
15    "default_width" : 500,
16    "$ deletable" : true,
17    "title" : "Create a Ticket",
18    "xtype" : "Dialog",
19    "# GitRepo? repo" : "null",
20    "|   void show" : "( GitRepo? repo   ) \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 \n\t\n\tthis.running  = true;\n\t//GitMonitor.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\tRooProject? curproj = null;\n    if (this.repo != null) {\n\t    curproj = RooTicket.singleton().getProjectByRepo(this.repo);\n    }\n\t_this.prmodel.loadProjects(curproj == null ? \"\" : curproj.id);\n    \n \n \tthis.el.run();\n\n}",
21    "default_height" : 200,
22    "$ xns" : "Gtk",
23    "# bool running" : false,
24    "bool modal" : true,
25    "items" : [
26     {
27      "xtype" : "VBox",
28      "$ pack" : "get_content_area().add",
29      "$ xns" : "Gtk",
30      "items" : [
31       {
32        "bool homogeneous" : true,
33        "bool expand" : false,
34        "xtype" : "Table",
35        "* pack" : "pack_start,false,false,0",
36        "uint column_spacing" : 4,
37        "n_columns" : 4,
38        "$ xns" : "Gtk",
39        "n_rows" : 14,
40        "bool vexpand" : false,
41        "int margin" : 2,
42        "items" : [
43         {
44          "label" : "Project",
45          "$ visible" : true,
46          "Gtk.Align halign" : "Gtk.Align.START",
47          "* pack" : "attach_defaults,0,1,0,1",
48          "xtype" : "Label",
49          "$ xns" : "Gtk"
50         },
51         {
52          "label" : "Summary",
53          "$ visible" : true,
54          "Gtk.Align halign" : "Gtk.Align.START",
55          "* pack" : "attach_defaults,1,2,0,1",
56          "xtype" : "Label",
57          "x_options" : 4,
58          "$ xns" : "Gtk"
59         },
60         {
61          "listeners" : {
62           "changed" : "() => {\n\tif (this.loading) {\n\t\treturn;\n\t}\n\tvar project_id = this.selectedProjectId();\n\t\n\tvar rt = RooTicket.singleton();\n\trt.loadProjectOptions(project_id);\n\t\n\t_this.msmodel.loadMilestones();\n\t_this.primodel.loadPriorities();\n\t_this.sevmodel.loadSeverities();\n\t_this.clmodel.loadClassifications();\t\n\t_this.devmodel.loadDevelopers();\t\n\t\n\t// affects projects and milestones..\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}"
63          },
64          "* ctor" : "new Gtk.ComboBox.with_entry()",
65          "id" : "project_id",
66          "| 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",
67          "* init" : "this.el.set_entry_text_column(1);",
68          "* pack" : "attach_defaults,0,1,1,2",
69          "xtype" : "ComboBox",
70          "# bool loading" : false,
71          "$ xns" : "Gtk",
72          "items" : [
73           {
74            "id" : "prcellrenderer",
75            "xtype" : "CellRendererText",
76            "* pack" : "pack_start,true",
77            "$ xns" : "Gtk"
78           },
79           {
80            "| void loadProjects" : "  (string id) {\n\n    var rt = RooTicket.singleton();\n    rt.loadProjects();\n    \n    _this.project_id.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.project_id.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.project_id.el.set_active_iter(iter);\n\t    }   \n        \n    }\n    \n    _this.project_id.loading = false;\n     //this.el.set_sort_column_id(0, Gtk.SortType.ASCENDING);          \n                                     \n}\n",
81            "id" : "prmodel",
82            "* pack" : "set_model",
83            "xtype" : "ListStore",
84            "$ columns" : "typeof(string),typeof(string)",
85            "n_columns" : 2,
86            "$ xns" : "Gtk"
87           }
88          ]
89         },
90         {
91          "id" : "summary",
92          "$ visible" : true,
93          "xtype" : "Entry",
94          "* pack" : "attach_defaults,1,4,1,2",
95          "$ xns" : "Gtk"
96         },
97         {
98          "label" : "Milestone",
99          "Gtk.Align halign" : "Gtk.Align.START",
100          "xalign" : 0.90000000000000002,
101          "* pack" : "attach_defaults,0,1,2,3",
102          "xtype" : "Label",
103          "$ justify" : "Gtk.Justification.RIGHT",
104          "x_options" : 4,
105          "$ xns" : "Gtk"
106         },
107         {
108          "* ctor" : "new Gtk.ComboBox.with_entry()",
109          "id" : "milestone_id",
110          "* init" : "this.el.set_entry_text_column(1);",
111          "* pack" : "attach_defaults,0,1,3,4",
112          "xtype" : "ComboBox",
113          "# bool loading" : false,
114          "$ xns" : "Gtk",
115          "| string selectedMilestoneId" : "() {\n\tGtk.TreeIter iter;\n\tValue val1;\n \n \n\tthis.el.get_active_iter (out iter);\n\t_this.msmodel.el.get_value (iter, 0, out val1);\n \n\n\treturn  (string) val1;\n\t\n\t\n\t\n\t\n}\n",
116          "items" : [
117           {
118            "id" : "msmodel",
119            "* pack" : "set_model",
120            "xtype" : "ListStore",
121            "| void loadMilestones" : "  ( ) {\n\n    var rt = RooTicket.singleton();\n   // rt.loadProjects();\n    \n    _this.milestone_id.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 milestone --\");\n    _this.milestone_id.el.set_active_iter(iter);    \n     \n    var projects = rt.milestones;\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.display_name );\n      //  if (id == project.id) {\n\t //\t   _this.milestone.el.set_active_iter(iter);\n\t //   }   \n        \n    }\n    \n    \n    _this.milestone_id.loading = false;\n     //this.el.set_sort_column_id(0, Gtk.SortType.ASCENDING);          \n                                     \n}\n",
122            "$ columns" : "typeof(string),typeof(string)",
123            "n_columns" : 2,
124            "$ xns" : "Gtk"
125           }
126          ]
127         },
128         {
129          "label" : "Description",
130          "Gtk.Align halign" : "Gtk.Align.START",
131          "* pack" : "attach_defaults,1,4,2,3",
132          "xtype" : "Label",
133          "x_options" : 4,
134          "$ xns" : "Gtk"
135         },
136         {
137          "id" : "description",
138          "* pack" : "attach_defaults,1,4,3,12",
139          "xtype" : "TextView",
140          "$ xns" : "Gtk",
141          "uint border_width" : 1
142         },
143         {
144          "label" : "Priority",
145          "Gtk.Align halign" : "Gtk.Align.START",
146          "xalign" : 0.90000000000000002,
147          "* pack" : "attach_defaults,0,1,4,5",
148          "xtype" : "Label",
149          "x_options" : 4,
150          "$ xns" : "Gtk"
151         },
152         {
153          "* ctor" : "new Gtk.ComboBox.with_entry()",
154          "id" : "priority_id",
155          "* init" : "this.el.set_entry_text_column(1);",
156          "* pack" : "attach_defaults,0,1,5,6",
157          "xtype" : "ComboBox",
158          "# bool loading" : false,
159          "$ xns" : "Gtk",
160          "| string selectedPriorityId" : "() {\n\tGtk.TreeIter iter;\n\tValue val1;\n \n \n\tthis.el.get_active_iter (out iter);\n\t_this.primodel.el.get_value (iter, 0, out val1);\n \n\n\treturn  (string) val1;\n\t\n\t\n\t\n\t\n}\n",
161          "items" : [
162           {
163            "id" : "primodel",
164            "| void loadPriorities" : "  ( ) {\n\n    var rt = RooTicket.singleton();\n   // rt.loadProjects();\n    \n    _this.priority_id.loading = true;\n\n    this.el.clear();                                    \n    Gtk.TreeIter iter;\n    var el = this.el;\n    \n    \n   var projects = rt.priorities;\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.display_name );\n        if (\"normal\" == project.name) {\n\t \t   _this.priority_id.el.set_active_iter(iter);\n\t    }   \n        \n    }\n    \n    _this.priority_id.loading = false;\n           \n                                     \n}\n",
165            "* pack" : "set_model",
166            "xtype" : "ListStore",
167            "$ columns" : "typeof(string),typeof(string)",
168            "n_columns" : 2,
169            "$ xns" : "Gtk"
170           }
171          ]
172         },
173         {
174          "label" : "Severity",
175          "Gtk.Align halign" : "Gtk.Align.START",
176          "* pack" : "attach_defaults,0,1,6,7",
177          "xtype" : "Label",
178          "x_options" : 4,
179          "$ xns" : "Gtk"
180         },
181         {
182          "* ctor" : "new Gtk.ComboBox.with_entry()",
183          "id" : "severity_id",
184          "* init" : "this.el.set_entry_text_column(1);",
185          "* pack" : "attach_defaults,0,1,7,8",
186          "xtype" : "ComboBox",
187          "# bool loading" : false,
188          "$ xns" : "Gtk",
189          "| string selectedSeverityId" : "() {\n\tGtk.TreeIter iter;\n\tValue val1;\n \n \n\tthis.el.get_active_iter (out iter);\n\t_this.sevmodel.el.get_value (iter, 0, out val1);\n \n\n\treturn  (string) val1;\n\t\n\t\n\t\n\t\n}\n",
190          "items" : [
191           {
192            "| void loadSeverities" : "  () {\n\n    var rt = RooTicket.singleton();\n    //rt.loadProjects();\n    \n    _this.severity_id.loading = true;\n\n    this.el.clear();                                    \n    Gtk.TreeIter iter;\n    var el = this.el;\n     \n    var projects = rt.serverities;\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.display_name );\n        if (\"normal\" == project.name) {\n\t \t   _this.severity_id.el.set_active_iter(iter);\n\t    }   \n        \n    }\n   \n    _this.severity_id.loading = false;\n     //this.el.set_sort_column_id(0, Gtk.SortType.ASCENDING);          \n                                     \n}\n",
193            "id" : "sevmodel",
194            "* pack" : "set_model",
195            "xtype" : "ListStore",
196            "$ columns" : "typeof(string),typeof(string)",
197            "n_columns" : 2,
198            "$ xns" : "Gtk"
199           }
200          ]
201         },
202         {
203          "label" : "Classification",
204          "Gtk.Align halign" : "Gtk.Align.START",
205          "* pack" : "attach_defaults,0,1,8,9",
206          "xtype" : "Label",
207          "x_options" : 4,
208          "$ xns" : "Gtk"
209         },
210         {
211          "* ctor" : "new Gtk.ComboBox.with_entry()",
212          "id" : "classification_id",
213          "* init" : "this.el.set_entry_text_column(1);",
214          "* pack" : "attach_defaults,0,1,9,10",
215          "xtype" : "ComboBox",
216          "# bool loading" : false,
217          "$ xns" : "Gtk",
218          "| string selectedClassificationId" : "() {\n\tGtk.TreeIter iter;\n\tValue val1;\n \n \n\tthis.el.get_active_iter (out iter);\n\t_this.clmodel.el.get_value (iter, 0, out val1);\n \n\n\treturn  (string) val1;\n\t\n\t\n\t\n\t\n}\n",
219          "items" : [
220           {
221            "id" : "clmodel",
222            "| void loadClassifications" : "  ( ) {\n\n    var rt = RooTicket.singleton();\n    // rt.loadProjects();\n    \n    _this.classification_id.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    var projects = rt.classifications;\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.display_name );\n        if (\"bug\" == project.name) {\n\t \t   _this.classification_id.el.set_active_iter(iter);\n\t    }   \n        \n    }\n    \n    _this.classification_id.loading = false;\n     //this.el.set_sort_column_id(0, Gtk.SortType.ASCENDING);          \n                                     \n}\n",
223            "* pack" : "set_model",
224            "xtype" : "ListStore",
225            "$ columns" : "typeof(string),typeof(string)",
226            "n_columns" : 2,
227            "$ xns" : "Gtk"
228           }
229          ]
230         },
231         {
232          "label" : "Assign to",
233          "Gtk.Align halign" : "Gtk.Align.START",
234          "* pack" : "attach_defaults,0,1,10,11",
235          "xtype" : "Label",
236          "x_options" : 4,
237          "$ xns" : "Gtk"
238         },
239         {
240          "* ctor" : "new Gtk.ComboBox.with_entry()",
241          "id" : "developer_id",
242          "* init" : "this.el.set_entry_text_column(1);",
243          "* pack" : "attach_defaults,0,1,11,12",
244          "xtype" : "ComboBox",
245          "# bool loading" : false,
246          "| string selectedDeveloperId" : "() {\n\tGtk.TreeIter iter;\n\tValue val1;\n \n \n\tthis.el.get_active_iter (out iter);\n\t_this.devmodel.el.get_value (iter, 0, out val1);\n \n\n\treturn  (string) val1;\n\t\n\t\n\t\n\t\n}\n",
247          "$ xns" : "Gtk",
248          "items" : [
249           {
250            "id" : "devmodel",
251            "* pack" : "set_model",
252            "xtype" : "ListStore",
253            "$ columns" : "typeof(string),typeof(string)",
254            "n_columns" : 2,
255            "$ xns" : "Gtk",
256            "| void loadDevelopers" : "  ( ) {\n\n    var rt = RooTicket.singleton();\n    //rt.loadProjects();\n    \n    _this.developer_id.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 developer --\");\n  //  if (id == \"\") {\n\t    _this.developer_id.el.set_active_iter(iter);\n   // }\n    \n    var projects = rt.developers;\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.display_name );\n//        if (id == project.id) {\n\t// \t   _this.projectsel.el.set_active_iter(iter);\n//\t    }   \n        \n    }\n \n    _this.developer_id.loading = false;\n     //this.el.set_sort_column_id(0, Gtk.SortType.ASCENDING);          \n                                     \n}\n"
257           }
258          ]
259         },
260         {
261          "listeners" : {
262           "clicked" : "() => {\n\tGLib.debug(\"fire response = 1\");\n\t\n\t\n\tvar invalid = false;\n\t\n\t// validate first...\n\t_this.project_id.el.get_child().get_style_context().remove_class(\"warning\");\t\n\tif (_this.project_id.selectedProjectId() == \"\") {\n\t\t_this.project_id.el.get_child().get_style_context().add_class(\"warning\");\n\t\tinvalid = true;\n\t}\n\t\n\t_this.milestone_id.el.get_child().get_style_context().remove_class(\"warning\");\t\n\tif (_this.milestone_id.selectedMilestoneId() == \"\") {\n\t\t_this.milestone_id.el.get_child().get_style_context().add_class(\"warning\");\n\t\tinvalid = true;\n\t}\n\n\t_this.priority_id.el.get_child().get_style_context().remove_class(\"warning\");\t\n\tif (_this.priority_id.selectedPriorityId() == \"\") {\n\t\t_this.priority_id.el.get_child().get_style_context().add_class(\"warning\");\n\t\tinvalid = true;\n\t}\n\t\n\t_this.classification_id.el.get_child().get_style_context().remove_class(\"warning\");\t\n\tif (_this.classification_id.selectedClassificationId() == \"\") {\n\t\t_this.classification_id.el.get_child().get_style_context().add_class(\"warning\");\n\t\tinvalid = true;\n\t}\n\t\n\t_this.developer_id.el.get_child().get_style_context().remove_class(\"warning\");\t\n\tif (_this.developer_id.selectedDeveloperId() == \"\") {\n\t\t_this.developer_id.el.get_child().get_style_context().add_class(\"warning\");\n\t\tinvalid = true;\n\t}\n\t\n\t_this.summary.el.get_style_context().remove_class(\"warning\");\t\n\tif (_this.summary.el.get_text() == \"\") {\n\t\t_this.summary.el.get_style_context().add_class(\"warning\");\n\t\tinvalid = true;\n\t}\n\t\n\t_this.description.el.get_style_context().remove_class(\"warning\");\t\n\tif (_this.description.el.buffer.text == \"\") {\n\t\t_this.description.el.get_style_context().add_class(\"warning\");\n\t\tinvalid = true;\n\t}\n\t\n\t\n\tif (invalid) {\n\t\treturn;\n\t}\n\tGLib.debug(\"for is valid\");\n\t\n\t_this.el.response(1);\n}"
263          },
264          "label" : "Create Ticket",
265          "* init" : "{\n   this.el.get_style_context().add_class(\"suggested-action\");\n}\n",
266          "xtype" : "Button",
267          "* pack" : "attach_defaults,0,4,13,14",
268          "$ xns" : "Gtk"
269         }
270        ]
271       }
272      ]
273     }
274    ]
275   }
276  ]
277 }