Press n or j to go to the next uncovered block, b, p or k for the previous block.
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 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 | 99x 99x 99x 99x 99x 99x 215x 1024x 215x 214x 1x 99x 124x 124x 22x 102x 102x 78x 13x 13x 78x 13x 13x 65x 45x 45x 78x 18x 60x 24x 12x 12x 12x 102x 99x 11x 11x 5x 6x 5x 4x 4x 3x 3x 2x 1x 99x | import { Validators } from '@angular/forms';
import * as _ from 'lodash';
import { CdValidators } from '../../forms/cd-validators';
import { ConfigFormModel } from './config-option.model';
export class ConfigOptionTypes {
// TODO: I18N
private static knownTypes: Array<any> = [
{
name: 'uint',
inputType: 'number',
humanReadable: 'Unsigned integer value',
defaultMin: 0,
patternHelpText: 'The entered value needs to be an unsigned number.',
isNumberType: true,
allowsNegative: false
},
{
name: 'int',
inputType: 'number',
humanReadable: 'Integer value',
patternHelpText: 'The entered value needs to be a number.',
isNumberType: true,
allowsNegative: true
},
{
name: 'size',
inputType: 'number',
humanReadable: 'Unsigned integer value (>=16bit)',
defaultMin: 0,
patternHelpText: 'The entered value needs to be a unsigned number.',
isNumberType: true,
allowsNegative: false
},
{
name: 'secs',
inputType: 'number',
humanReadable: 'Number of seconds',
defaultMin: 1,
patternHelpText: 'The entered value needs to be a number >= 1.',
isNumberType: true,
allowsNegative: false
},
{
name: 'float',
inputType: 'number',
humanReadable: 'Double value',
patternHelpText: 'The entered value needs to be a number or decimal.',
isNumberType: true,
allowsNegative: true
},
{ name: 'str', inputType: 'text', humanReadable: 'Text', isNumberType: false },
{
name: 'addr',
inputType: 'text',
humanReadable: 'IPv4 or IPv6 address',
patternHelpText: 'The entered value needs to be a valid IP address.',
isNumberType: false
},
{
name: 'uuid',
inputType: 'text',
humanReadable: 'UUID',
patternHelpText:
'The entered value is not a valid UUID, e.g.: 67dcac9f-2c03-4d6c-b7bd-1210b3a259a8',
isNumberType: false
},
{ name: 'bool', inputType: 'checkbox', humanReadable: 'Boolean value', isNumberType: false }
];
public static getType(type: string): any {
const currentType = _.find(this.knownTypes, (t) => {
return t.name === type;
});
if (currentType !== undefined) {
return currentType;
}
throw new Error('Found unknown type "' + type + '" for config option.');
}
public static getTypeValidators(configOption: ConfigFormModel): any {
const typeParams = ConfigOptionTypes.getType(configOption.type);
if (typeParams.name === 'bool' || typeParams.name === 'str') {
return;
}
const typeValidators = { validators: [], patternHelpText: typeParams.patternHelpText };
if (typeParams.isNumberType) {
if (configOption.max && configOption.max !== '') {
typeValidators['max'] = configOption.max;
typeValidators.validators.push(Validators.max(configOption.max));
}
if (configOption.min && configOption.min !== '') {
typeValidators['min'] = configOption.min;
typeValidators.validators.push(Validators.min(configOption.min));
} else if ('defaultMin' in typeParams) {
typeValidators['min'] = typeParams.defaultMin;
typeValidators.validators.push(Validators.min(typeParams.defaultMin));
}
if (configOption.type === 'float') {
typeValidators.validators.push(CdValidators.decimalNumber());
} else {
typeValidators.validators.push(CdValidators.number(typeParams.allowsNegative));
}
} else if (configOption.type === 'addr') {
typeValidators.validators = [CdValidators.ip()];
} else Eif (configOption.type === 'uuid') {
typeValidators.validators = [CdValidators.uuid()];
}
return typeValidators;
}
public static getTypeStep(type: string, value: number): number | undefined {
const numberTypes = ['uint', 'int', 'size', 'secs'];
if (numberTypes.includes(type)) {
return 1;
}
if (type === 'float') {
if (value !== null) {
const stringVal = value.toString();
if (stringVal.indexOf('.') !== -1) {
// Value type float and contains decimal characters
const decimal = value.toString().split('.');
return Math.pow(10, -decimal[1].length);
}
}
return 0.1;
}
return undefined;
}
}
|