Custom tosca functions with valid_values and in_range operators not showing properly
[sdc.git] / catalog-ui / src / app / utils / filter-constraint-helper.ts
1 /*
2  * -
3  *  ============LICENSE_START=======================================================
4  *  Copyright (C) 2022 Nordix Foundation.
5  *  ================================================================================
6  *  Licensed under the Apache License, Version 2.0 (the "License");
7  *  you may not use this file except in compliance with the License.
8  *  You may obtain a copy of the License at
9  *
10  *       http://www.apache.org/licenses/LICENSE-2.0
11  *
12  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License.
17  *
18  *  SPDX-License-Identifier: Apache-2.0
19  *  ============LICENSE_END=========================================================
20  */
21
22 import {FilterConstraint} from "../models/filter-constraint";
23 import {ToscaFunctionHelper} from "./tosca-function-helper";
24
25 export class FilterConstraintHelper {
26
27     public static buildFilterConstraintLabel(constraint: FilterConstraint): string {
28         let value;
29         if (ToscaFunctionHelper.isValueToscaFunction(constraint.value)) {
30             const toscaFunction = ToscaFunctionHelper.convertObjectToToscaFunction(constraint.value);
31             if (toscaFunction) {
32                         value = toscaFunction.value === undefined || toscaFunction.value == null ? toscaFunction.buildValueString() : toscaFunction.value
33             } else {
34                 value = JSON.stringify(constraint.value, null, 4);
35             }
36         } else {
37             value = JSON.stringify(constraint.value, null, 4);
38         }
39         if (constraint.capabilityName) {
40             return `${constraint.capabilityName}: ${constraint.servicePropertyName} ${this.convertToSymbol(constraint.constraintOperator)} ${value}`;
41         }
42
43         return `${constraint.servicePropertyName} ${this.convertToSymbol(constraint.constraintOperator)} ${value}`;
44     }
45
46     public static convertToSymbol(constraintOperator: string) {
47         switch (constraintOperator) {
48             case ConstraintOperatorType.LESS_THAN: return '<';
49             case ConstraintOperatorType.EQUAL: return '=';
50             case ConstraintOperatorType.GREATER_THAN: return '>';
51             case ConstraintOperatorType.GREATER_OR_EQUAL: return '>=';
52             case ConstraintOperatorType.LESS_OR_EQUAL: return '<=';
53             case ConstraintOperatorType.IN_RANGE: return 'in range';
54             case ConstraintOperatorType.VALID_VALUES: return 'valid values';
55             case ConstraintOperatorType.LENGTH: return 'length';
56             case ConstraintOperatorType.MIN_LENGTH: return 'minimum length';
57             case ConstraintOperatorType.MAX_LENGTH: return 'maximum length';
58             case ConstraintOperatorType.PATTERN: return 'pattern';
59         }
60     }
61 }
62
63 export enum ConstraintOperatorType {
64     EQUAL = 'equal',
65     GREATER_THAN = 'greater_than',
66     LESS_THAN = 'less_than',
67     GREATER_OR_EQUAL = 'greater_or_equal',
68     LESS_OR_EQUAL = 'less_or_equal',
69     IN_RANGE = 'in_range',
70     VALID_VALUES = 'valid_values',
71     LENGTH = 'length',
72     MIN_LENGTH = 'min_length',
73     MAX_LENGTH = 'max_length',
74     PATTERN = 'pattern'
75 }
76