summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/static/js/layerBtn.js
blob: 4243c2bf01c4cd3653024bdb0a877c113bc281fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
"use strict";

function layerBtnsInit(ctx) {

  /* Remove any current bindings to avoid duplicated binds */
  $(".layerbtn").unbind('click');

  $(".layerbtn").click(function (){
    var layerObj = $(this).data("layer");
    var add = ($(this).data('directive') === "add");
    var thisBtn = $(this);

    libtoaster.addRmLayer(layerObj, add, function (layerDepsList){
      libtoaster.showChangeNotification(libtoaster.makeLayerAddRmAlertMsg(layerObj, layerDepsList, add));

      /* In-cell notification */
      var notification = $('<div id="temp-inline-notify" style="display: none; font-size: 11px; line-height: 1.3;" class="tooltip-inner"></div>');
      thisBtn.parent().append(notification);

      if (add){
        if (layerDepsList.length > 0)
          notification.text(String(layerDepsList.length + 1) + " layers added");
        else
          notification.text("1 layer added");

        var layerBtnsFadeOut = $();
        var layerExistsBtnFadeIn = $();

        layerBtnsFadeOut = layerBtnsFadeOut.add(".layer-add-" + layerObj.id);
        layerExistsBtnFadeIn = layerExistsBtnFadeIn.add(".layer-exists-" + layerObj.id);

        for (var i in layerDepsList){
          layerBtnsFadeOut = layerBtnsFadeOut.add(".layer-add-" + layerDepsList[i].id);
          layerExistsBtnFadeIn = layerExistsBtnFadeIn.add(".layer-exists-" + layerDepsList[i].id);
        }

        layerBtnsFadeOut.fadeOut().promise().done(function(){
          notification.fadeIn().delay(500).fadeOut(function(){
            /* Fade in the buttons */
            layerExistsBtnFadeIn.fadeIn();
            notification.remove();
          });
        });
      } else {
        notification.text("1 layer deleted");
        /* Deleting a layer we only hanlde the one button */
        thisBtn.fadeOut(function(){
          notification.fadeIn().delay(500).fadeOut(function(){
            $(".layer-add-" + layerObj.id).fadeIn();
            notification.remove();
          });
        });
      }

    });
  });

  /* Setup the initial state of the buttons */

  for (var i in ctx.projectLayers){
      $(".layer-exists-" + ctx.projectLayers[i]).show();
      $(".layer-add-" + ctx.projectLayers[i]).hide();
  }
}