update from RIFT as of 696b75d2fe9fb046261b08c616f1bcf6c0b54a9b third try
[osm/UI.git] / skyquake / plugins / admin / src / yang / property-utils.js
1 /*
2 *
3 * Copyright 2016 RIFT.IO Inc
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 */
18 /**
19 * Created by onvelocity on 1/27/16.
20 *
21 * This class provides utility methods for interrogating an instance of model uiState object.
22 */
23
24 import _includes from 'lodash/includes'
25 import _isArray from 'lodash/isArray'
26 import changeCase from 'change-case'
27 import utils from '../utils'
28
29 export default {
30 isLeaf(property = {}) {
31 return /leaf|leaf_list/.test(property.type);
32 },
33 isList(property = {}) {
34 return property.type === 'list';
35 },
36 isContainer(property = {}) {
37 return property.type === 'container';
38 },
39 isChoice(property = {}) {
40 return property.type === 'choice';
41 },
42 isLeafList(property = {}) {
43 return property.type === 'leaf_list';
44 },
45 }