mirror of
https://git.yoctoproject.org/poky
synced 2026-02-10 10:43:02 +01:00
We have multiple pages which have buttons to add and remove layers this patch adds functionality to libtoaster to abstract this and implements it in the pages affected. We handle loading and showing the dependencies dialog here too and generating the notification messages. Also implemented is using the selectmachine api from the projectapp to avoid having to handle this in each page that allows selecting machines. A small number of jshint issues, help text and the machine page name have also been fixed. (Bitbake rev: ae7a656ba7fc6f4356b57aa309a9b6d035e51d2e) Signed-off-by: Michael Wood <michael.g.wood@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
91 lines
2.8 KiB
JavaScript
91 lines
2.8 KiB
JavaScript
/*
|
|
* layer: Object representing the parent layer { id: .. name: ... url }
|
|
* dependencies: array of dependency layer objects { id: .. name: ..}
|
|
* title: optional override for title
|
|
* body: optional override for body
|
|
* addToProject: Whether to add layers to project on accept
|
|
* successAdd: function to run on success
|
|
*/
|
|
function showLayerDepsModal(layer, dependencies, title, body, addToProject, successAdd) {
|
|
|
|
if ($("#dependencies-modal").length === 0) {
|
|
$.get(libtoaster.ctx.htmlUrl + "/layer_deps_modal.html", function(html){
|
|
$("body").append(html);
|
|
setupModal();
|
|
});
|
|
} else {
|
|
setupModal();
|
|
}
|
|
|
|
function setupModal(){
|
|
|
|
if (title) {
|
|
$('#dependencies-modal #title').text(title);
|
|
} else {
|
|
$('#dependencies-modal #title').text(layer.name);
|
|
}
|
|
|
|
if (body) {
|
|
$("#dependencies-modal #body-text").html(body);
|
|
} else {
|
|
$("#dependencies-modal #layer-name").text(layer.name);
|
|
}
|
|
|
|
var deplistHtml = "";
|
|
for (var i = 0; i < dependencies.length; i++) {
|
|
deplistHtml += "<li><label class=\"checkbox\"><input name=\"dependencies\" value=\"";
|
|
deplistHtml += dependencies[i].id;
|
|
deplistHtml +="\" type=\"checkbox\" checked=\"checked\"/>";
|
|
deplistHtml += dependencies[i].name;
|
|
deplistHtml += "</label></li>";
|
|
}
|
|
$('#dependencies-list').html(deplistHtml);
|
|
|
|
$("#dependencies-modal").data("deps", dependencies);
|
|
|
|
$('#dependencies-modal').modal('show');
|
|
|
|
/* Discard the old submission function */
|
|
$("#dependencies-modal-form").unbind('submit');
|
|
|
|
$("#dependencies-modal-form").submit(function (e) {
|
|
e.preventDefault();
|
|
var selectedLayerIds = [];
|
|
var selectedLayers = [];
|
|
|
|
$("input[name='dependencies']:checked").each(function () {
|
|
selectedLayerIds.push(parseInt($(this).val()));
|
|
});
|
|
|
|
/* -1 is a special dummy Id which we use when the layer isn't yet in the
|
|
* system, normally we would add the current layer to the selection.
|
|
*/
|
|
if (layer.id != -1)
|
|
selectedLayerIds.push(layer.id);
|
|
|
|
/* Find the selected layer objects from our original list */
|
|
for (var i = 0; i < selectedLayerIds.length; i++) {
|
|
for (var j = 0; j < dependencies.length; j++) {
|
|
if (dependencies[j].id == selectedLayerIds[i]) {
|
|
selectedLayers.push(dependencies[j]);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (addToProject) {
|
|
libtoaster.editCurrentProject({ 'layerAdd': selectedLayerIds.join(",") }, function () {
|
|
if (successAdd) {
|
|
successAdd(selectedLayers);
|
|
}
|
|
}, function () {
|
|
console.warn("Adding layers to project failed");
|
|
});
|
|
} else {
|
|
successAdd(selectedLayers);
|
|
}
|
|
|
|
$('#dependencies-modal').modal('hide');
|
|
});
|
|
}
|
|
}
|