summaryrefslogtreecommitdiff
path: root/horizon/static/framework/widgets/metadata/tree/metadata-tree-item.controller.js
blob: c4f8fb5afb2be87cdf60a14411a5dc835fc06498 (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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/*
 * Copyright 2015, Intel Corp.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
(function () {
  'use strict';

  var READONLY_PROPERTIES = ['os_hash_algo', 'os_hash_value'];

  angular
    .module('horizon.framework.widgets.metadata.tree')
    .controller('MetadataTreeItemController', MetadataTreeItemController);

  /**
   * @ngdoc controller
   * @name MetadataTreeItemController
   * @description
   * Controller used by `metadataTreeItem`
   */
  function MetadataTreeItemController() {
    var ctrl = this;

    ctrl.formatErrorMessage = formatErrorMessage;
    ctrl.opened = false;

    this.$onInit = function init() {
      if ('item' in ctrl && 'leaf' in ctrl.item &&
        READONLY_PROPERTIES.includes(ctrl.item.leaf.name)) {
        ctrl.item.leaf.readonly = true;
        ctrl.item.leaf.required = false;
      }

      if ('item' in ctrl && 'leaf' in ctrl.item && ctrl.item.leaf.type === 'array') {
        ctrl.values = ctrl.item.leaf.items.enum.filter(filter).sort();

        if (!ctrl.item.leaf.readonly) {
          ctrl.addValue = addValue;
          ctrl.removeValue = removeValue;
          ctrl.switchOpened = switchOpened;
          ctrl.opened = ctrl.item.leaf.value.length === 0;
        }
      }
    };

    function formatErrorMessage(item, error) {
      if (error.min) {
        return ctrl.text.min + ' ' + item.leaf.minimum;
      }

      if (error.max) {
        return ctrl.text.max + ' ' + item.leaf.maximum;
      }

      if (error.minlength) {
        return ctrl.text.minLength + ' ' + item.leaf.minLength;
      }

      if (error.maxlength) {
        return ctrl.text.maxLength + ' ' + item.leaf.maxLength;
      }

      if (error.pattern) {
        if (item.leaf.type === 'integer') {
          return ctrl.text.integerRequired;
        } else {
          return ctrl.text.patternMismatch;
        }
      }

      if (error.number) {
        if (item.leaf.type === 'integer') {
          return ctrl.text.integerRequired;
        } else {
          return ctrl.text.decimalRequired;
        }
      }

      if (error.required) {
        return ctrl.text.required;
      }
    }

    function filter (i) {
      return ctrl.item.leaf.value.indexOf(i) < 0;
    }

    function remove(array, value) {
      var index = array.indexOf(value);
      if (index > -1) {
        array.splice(index, 1);
      }
      return array;
    }

    function addValue(val) {
      ctrl.item.leaf.value.push(val);
      ctrl.item.leaf.value.sort();
      remove(ctrl.values, val);
    }

    function removeValue(val) {
      remove(ctrl.item.leaf.value, val);
      ctrl.values.push(val);
      ctrl.values.sort();
      if (ctrl.item.leaf.value.length === 0) {
        ctrl.opened = true;
      }
    }

    function switchOpened() {
      ctrl.opened = !ctrl.opened;
    }
  }

})();