@ukhomeoffice/cop-react-form-renderer 4.24.0 → 4.26.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/FormRenderer/FormRenderer.js +4 -0
- package/dist/utils/Validate/additional/conditionallyRequired.js +27 -0
- package/dist/utils/Validate/additional/conditionallyRequired.test.js +75 -0
- package/dist/utils/Validate/additional/index.js +7 -1
- package/dist/utils/Validate/additional/mustBeLessThan.js +1 -1
- package/dist/utils/Validate/additional/mustHaveLessThanDecimalPlaces.js +22 -0
- package/dist/utils/Validate/additional/mustHaveLessThanDecimalPlaces.test.js +38 -0
- package/package.json +1 -1
|
@@ -186,6 +186,10 @@ var InternalFormRenderer = function InternalFormRenderer(_ref2) {
|
|
|
186
186
|
window.onpopstate = function () {
|
|
187
187
|
var _formState$page;
|
|
188
188
|
|
|
189
|
+
if (document.location.hash) {
|
|
190
|
+
return;
|
|
191
|
+
}
|
|
192
|
+
|
|
189
193
|
setGoingBack(true);
|
|
190
194
|
hooks.onGoingBack();
|
|
191
195
|
clearErrors();
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Additional validator for the Container component type.
|
|
10
|
+
* @param {object} data the form data
|
|
11
|
+
* @param {object} config the config for the validation, must contain a property 'base' with the id of the conditionally required component and
|
|
12
|
+
* a property 'check' which if the corresponding component has a value will turn off the required check for 'base'
|
|
13
|
+
* @param {object} component the container component
|
|
14
|
+
* @returns true if the user has entered data into the 'base' field or entered a value into the 'check' field to turn off the validation
|
|
15
|
+
* otherwise returns false
|
|
16
|
+
*/
|
|
17
|
+
var conditionallyRequired = function conditionallyRequired(data, config, component) {
|
|
18
|
+
var _data$component$id, _data$component$id2;
|
|
19
|
+
|
|
20
|
+
var conditional = (_data$component$id = data[component.id]) === null || _data$component$id === void 0 ? void 0 : _data$component$id[config.base];
|
|
21
|
+
var checkFieldvalue = (_data$component$id2 = data[component.id]) === null || _data$component$id2 === void 0 ? void 0 : _data$component$id2[config.check];
|
|
22
|
+
var checkHasValue = checkFieldvalue && (checkFieldvalue === null || checkFieldvalue === void 0 ? void 0 : checkFieldvalue.length) > 0;
|
|
23
|
+
return !!(conditional || checkHasValue);
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
var _default = conditionallyRequired;
|
|
27
|
+
exports.default = _default;
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _conditionallyRequired = _interopRequireDefault(require("./conditionallyRequired"));
|
|
4
|
+
|
|
5
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
6
|
+
|
|
7
|
+
describe('utils', function () {
|
|
8
|
+
describe('Validate', function () {
|
|
9
|
+
describe('additional', function () {
|
|
10
|
+
describe('conditionallyRequired', function () {
|
|
11
|
+
var CONFIG = {
|
|
12
|
+
base: 'componentOne',
|
|
13
|
+
check: 'componentTwo'
|
|
14
|
+
};
|
|
15
|
+
var COMPONENT = {
|
|
16
|
+
id: 'containerComponent',
|
|
17
|
+
fieldId: 'containerComponent',
|
|
18
|
+
type: 'container',
|
|
19
|
+
components: [{
|
|
20
|
+
id: 'componentOne',
|
|
21
|
+
type: 'text',
|
|
22
|
+
fieldId: 'componentOne'
|
|
23
|
+
}, {
|
|
24
|
+
id: 'componentTwo',
|
|
25
|
+
fieldId: 'componentTwo',
|
|
26
|
+
type: 'checkboxes'
|
|
27
|
+
}]
|
|
28
|
+
};
|
|
29
|
+
test('should pass if only the base field has a value', function () {
|
|
30
|
+
var DATA = {
|
|
31
|
+
containerComponent: {
|
|
32
|
+
componentOne: 'value'
|
|
33
|
+
}
|
|
34
|
+
};
|
|
35
|
+
expect((0, _conditionallyRequired.default)(DATA, CONFIG, COMPONENT)).toEqual(true);
|
|
36
|
+
});
|
|
37
|
+
test('should pass if the base and check fields have values', function () {
|
|
38
|
+
var DATA = {
|
|
39
|
+
containerComponent: {
|
|
40
|
+
componentOne: 'value',
|
|
41
|
+
componentTwo: 'value'
|
|
42
|
+
}
|
|
43
|
+
};
|
|
44
|
+
expect((0, _conditionallyRequired.default)(DATA, CONFIG, COMPONENT)).toEqual(true);
|
|
45
|
+
});
|
|
46
|
+
test('should pass if only the check field has a value', function () {
|
|
47
|
+
var DATA = {
|
|
48
|
+
containerComponent: {
|
|
49
|
+
componentTwo: 'value'
|
|
50
|
+
}
|
|
51
|
+
};
|
|
52
|
+
expect((0, _conditionallyRequired.default)(DATA, CONFIG, COMPONENT)).toEqual(true);
|
|
53
|
+
});
|
|
54
|
+
test('should pass if only the check field has a value and that value is an array', function () {
|
|
55
|
+
var DATA = {
|
|
56
|
+
containerComponent: {
|
|
57
|
+
componentTwo: ['value']
|
|
58
|
+
}
|
|
59
|
+
};
|
|
60
|
+
expect((0, _conditionallyRequired.default)(DATA, CONFIG, COMPONENT)).toEqual(true);
|
|
61
|
+
});
|
|
62
|
+
test('should fail if neither field has a value', function () {
|
|
63
|
+
var DATA = {
|
|
64
|
+
containerComponent: {}
|
|
65
|
+
};
|
|
66
|
+
expect((0, _conditionallyRequired.default)(DATA, CONFIG, COMPONENT)).toEqual(false);
|
|
67
|
+
});
|
|
68
|
+
test('should fail if there is no data', function () {
|
|
69
|
+
var DATA = {};
|
|
70
|
+
expect((0, _conditionallyRequired.default)(DATA, CONFIG, COMPONENT)).toEqual(false);
|
|
71
|
+
});
|
|
72
|
+
});
|
|
73
|
+
});
|
|
74
|
+
});
|
|
75
|
+
});
|
|
@@ -5,6 +5,8 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports.default = void 0;
|
|
7
7
|
|
|
8
|
+
var _conditionallyRequired = _interopRequireDefault(require("./conditionallyRequired"));
|
|
9
|
+
|
|
8
10
|
var _mustBeAfter = _interopRequireDefault(require("./mustBeAfter"));
|
|
9
11
|
|
|
10
12
|
var _mustBeBefore = _interopRequireDefault(require("./mustBeBefore"));
|
|
@@ -25,10 +27,13 @@ var _mustBeNumbersOnly = _interopRequireDefault(require("./mustBeNumbersOnly"));
|
|
|
25
27
|
|
|
26
28
|
var _mustBeLessThan = _interopRequireDefault(require("./mustBeLessThan"));
|
|
27
29
|
|
|
30
|
+
var _mustHaveLessThanDecimalPlaces = _interopRequireDefault(require("./mustHaveLessThanDecimalPlaces"));
|
|
31
|
+
|
|
28
32
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
29
33
|
|
|
30
34
|
// Local imports
|
|
31
35
|
var functions = {
|
|
36
|
+
conditionallyRequired: _conditionallyRequired.default,
|
|
32
37
|
mustBeAfter: _mustBeAfter.default,
|
|
33
38
|
mustBeBefore: _mustBeBefore.default,
|
|
34
39
|
mustBeEarlierDateTime: _mustBeEarlierDateTime.default,
|
|
@@ -38,7 +43,8 @@ var functions = {
|
|
|
38
43
|
mustBeShorterThan: _mustBeShorterThan.default,
|
|
39
44
|
mustEnterAtLeastOne: _mustEnterAtLeastOne.default,
|
|
40
45
|
mustBeNumbersOnly: _mustBeNumbersOnly.default,
|
|
41
|
-
mustBeLessThan: _mustBeLessThan.default
|
|
46
|
+
mustBeLessThan: _mustBeLessThan.default,
|
|
47
|
+
mustHaveLessThanDecimalPlaces: _mustHaveLessThanDecimalPlaces.default
|
|
42
48
|
};
|
|
43
49
|
|
|
44
50
|
var additionalValidation = function additionalValidation(value, config, component) {
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* @param {string} string - the string to check
|
|
10
|
+
* @param {number} config.maxDecimals - the maximum amount of decimal places to allow
|
|
11
|
+
* @returns true if string has less than maxDecimals decimal places else returns false
|
|
12
|
+
*/
|
|
13
|
+
var mustHaveLessThanDecimalPlaces = function mustHaveLessThanDecimalPlaces(string, config) {
|
|
14
|
+
if (!string || !string.includes('.')) {
|
|
15
|
+
return true;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
return string.split('.')[1].length < config.maxDecimals;
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
var _default = mustHaveLessThanDecimalPlaces;
|
|
22
|
+
exports.default = _default;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _mustHaveLessThanDecimalPlaces = _interopRequireDefault(require("./mustHaveLessThanDecimalPlaces"));
|
|
4
|
+
|
|
5
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
6
|
+
|
|
7
|
+
describe('utils', function () {
|
|
8
|
+
describe('Validate', function () {
|
|
9
|
+
describe('additional', function () {
|
|
10
|
+
describe('mustHaveLessThanDecimalPlaces', function () {
|
|
11
|
+
test('should return false given a number with more than the allowed number of decimal places', function () {
|
|
12
|
+
var result = (0, _mustHaveLessThanDecimalPlaces.default)('999999999.9999', {
|
|
13
|
+
maxDecimals: 3
|
|
14
|
+
});
|
|
15
|
+
expect(result).toEqual(false);
|
|
16
|
+
});
|
|
17
|
+
test('should return true given a number with less than the allowed number of decimal places', function () {
|
|
18
|
+
var result = (0, _mustHaveLessThanDecimalPlaces.default)('999999999.99', {
|
|
19
|
+
maxDecimals: 3
|
|
20
|
+
});
|
|
21
|
+
expect(result).toEqual(true);
|
|
22
|
+
});
|
|
23
|
+
test('should return true given a number with no decimal places', function () {
|
|
24
|
+
var result = (0, _mustHaveLessThanDecimalPlaces.default)('999999999', {
|
|
25
|
+
maxDecimals: 3
|
|
26
|
+
});
|
|
27
|
+
expect(result).toEqual(true);
|
|
28
|
+
});
|
|
29
|
+
test('should return true given nothing', function () {
|
|
30
|
+
var result = (0, _mustHaveLessThanDecimalPlaces.default)(undefined, {
|
|
31
|
+
maxDecimals: 3
|
|
32
|
+
});
|
|
33
|
+
expect(result).toEqual(true);
|
|
34
|
+
});
|
|
35
|
+
});
|
|
36
|
+
});
|
|
37
|
+
});
|
|
38
|
+
});
|