/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This Source Code Form is "Incompatible With Secondary Licenses", as
* defined by the Mozilla Public License, v. 2.0.
*/
// Flag tables
YUI({
base: 'js/yui3/',
combine: false
}).use("node", "datatable", "datatable-sort", "json-stringify", "escape",
"datatable-datasource", "datasource-io", "datasource-jsonschema", function(Y) {
// Common
var counter = 0;
var dataSource = {
requestee: null,
requester: null
};
var dataTable = {
requestee: null,
requester: null
};
var updateFlagTable = function(type) {
if (!type) return;
counter = counter + 1;
var callback = {
success: function(e) {
if (e.response) {
Y.one('#' + type + '_count_refresh').removeClass('bz_default_hidden');
Y.one("#" + type + "_flags_found").setHTML(
e.response.results.length + ' flags found');
dataTable[type].set('data', e.response.results);
}
},
failure: function(o) {
if (o.error) {
alert("Failed to load flag list from Bugzilla:\n\n" + o.error.message);
} else {
alert("Failed to load flag list from Bugzilla.");
}
}
};
var json_object = {
version: "1.1",
method: "MyDashboard.run_flag_query",
id: counter,
params: { type : type,
Bugzilla_api_token : (BUGZILLA.api_token ? BUGZILLA.api_token : '')
}
};
var stringified = Y.JSON.stringify(json_object);
Y.one('#' + type + '_count_refresh').addClass('bz_default_hidden');
dataTable[type].set('data', []);
dataTable[type].render("#" + type + "_table");
dataTable[type].showMessage('loadingMessage');
dataSource[type].sendRequest({
request: stringified,
cfg: {
method: "POST",
headers: { 'Content-Type': 'application/json' }
},
callback: callback
});
};
var loadBugList = function(type) {
if (!type) return;
var data = dataTable[type].data;
var ids = [];
for (var i = 0, l = data.size(); i < l; i++) {
ids.push(data.item(i).get('bug_id'));
}
var url = 'buglist.cgi?bug_id=' + ids.join('%2C');
window.open(url, '_blank');
};
var bugLinkFormatter = function(o) {
var bug_closed = "";
if (o.data.bug_status == 'RESOLVED' || o.data.bug_status == 'VERIFIED') {
bug_closed = "bz_closed";
}
return '' + o.value + '';
};
var updatedFormatter = function(o) {
return '' +
Y.Escape.html(o.data.updated_fancy) + '';
};
var requesteeFormatter = function(o) {
return o.value
? Y.Escape.html(o.value)
: 'anyone';
};
var flagNameFormatter = function(o) {
if (parseInt(o.data.attach_id)
&& parseInt(o.data.is_patch)
&& MyDashboard.splinter_base)
{
return '' +
Y.Escape.html(o.value) + '';
}
else {
return Y.Escape.html(o.value);
}
};
// Requestee
dataSource.requestee = new Y.DataSource.IO({ source: 'jsonrpc.cgi' });
dataSource.requestee.on('error', function(e) {
try {
var response = Y.JSON.parse(e.data.responseText);
if (response.error)
e.error.message = response.error.message;
} catch(ex) {
// ignore
}
});
dataTable.requestee = new Y.DataTable({
columns: [
{ key: "requester", label: "Requester", sortable: true },
{ key: "type", label: "Flag", sortable: true,
formatter: flagNameFormatter, allowHTML: true },
{ key: "bug_id", label: "Bug", sortable: true,
formatter: bugLinkFormatter, allowHTML: true },
{ key: "updated", label: "Updated", sortable: true,
formatter: updatedFormatter, allowHTML: true }
],
strings: {
emptyMessage: 'No flag data found.',
}
});
dataTable.requestee.plug(Y.Plugin.DataTableSort);
dataTable.requestee.plug(Y.Plugin.DataTableDataSource, {
datasource: dataSource.requestee
});
dataSource.requestee.plug(Y.Plugin.DataSourceJSONSchema, {
schema: {
resultListLocator: "result.result.requestee",
resultFields: ["requester", "type", "attach_id", "is_patch", "bug_id",
"bug_status", "bug_summary", "updated", "updated_fancy"]
}
});
dataTable.requestee.render("#requestee_table");
Y.one('#requestee_refresh').on('click', function(e) {
updateFlagTable('requestee');
});
Y.one('#requestee_buglist').on('click', function(e) {
loadBugList('requestee');
});
// Requester
dataSource.requester = new Y.DataSource.IO({ source: 'jsonrpc.cgi' });
dataSource.requester.on('error', function(e) {
try {
var response = Y.JSON.parse(e.data.responseText);
if (response.error)
e.error.message = response.error.message;
} catch(ex) {
// ignore
}
});
dataTable.requester = new Y.DataTable({
columns: [
{ key:"requestee", label:"Requestee", sortable:true,
formatter: requesteeFormatter, allowHTML: true },
{ key:"type", label:"Flag", sortable:true,
formatter: flagNameFormatter, allowHTML: true },
{ key:"bug_id", label:"Bug", sortable:true,
formatter: bugLinkFormatter, allowHTML: true },
{ key: "updated", label: "Updated", sortable: true,
formatter: updatedFormatter, allowHTML: true }
],
strings: {
emptyMessage: 'No flag data found.',
}
});
dataTable.requester.plug(Y.Plugin.DataTableSort);
dataTable.requester.plug(Y.Plugin.DataTableDataSource, {
datasource: dataSource.requester
});
dataSource.requester.plug(Y.Plugin.DataSourceJSONSchema, {
schema: {
resultListLocator: "result.result.requester",
resultFields: ["requestee", "type", "attach_id", "is_patch", "bug_id",
"bug_status", "bug_summary", "updated", "updated_fancy"]
}
});
// Initial load
Y.on("contentready", function (e) {
updateFlagTable("requestee");
}, "#requestee_table");
Y.on("contentready", function (e) {
updateFlagTable("requester");
}, "#requester_table");
Y.one('#requester_refresh').on('click', function(e) {
updateFlagTable('requester');
});
Y.one('#requester_buglist').on('click', function(e) {
loadBugList('requester');
});
});