@dhis2/analytics 26.1.5 → 26.1.7
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/build/cjs/api/expression.js +14 -7
- package/build/cjs/components/FileMenu/RenameDialog.js +27 -11
- package/build/cjs/locales/uz_UZ_Cyrl/translations.json +5 -4
- package/build/es/api/expression.js +14 -7
- package/build/es/components/FileMenu/RenameDialog.js +27 -11
- package/build/es/locales/uz_UZ_Cyrl/translations.json +5 -4
- package/package.json +1 -1
|
@@ -32,9 +32,8 @@ const createCalculationMutation = {
|
|
|
32
32
|
};
|
|
33
33
|
exports.createCalculationMutation = createCalculationMutation;
|
|
34
34
|
const updateCalculationMutation = {
|
|
35
|
-
type: '
|
|
35
|
+
type: 'json-patch',
|
|
36
36
|
resource: 'expressionDimensionItems',
|
|
37
|
-
partial: true,
|
|
38
37
|
id: _ref3 => {
|
|
39
38
|
let {
|
|
40
39
|
id
|
|
@@ -46,11 +45,19 @@ const updateCalculationMutation = {
|
|
|
46
45
|
name,
|
|
47
46
|
expression
|
|
48
47
|
} = _ref4;
|
|
49
|
-
return {
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
}
|
|
48
|
+
return [{
|
|
49
|
+
op: 'add',
|
|
50
|
+
path: '/name',
|
|
51
|
+
value: name
|
|
52
|
+
}, {
|
|
53
|
+
op: 'add',
|
|
54
|
+
path: '/shortName',
|
|
55
|
+
value: name
|
|
56
|
+
}, {
|
|
57
|
+
op: 'add',
|
|
58
|
+
path: '/expression',
|
|
59
|
+
value: expression
|
|
60
|
+
}];
|
|
54
61
|
}
|
|
55
62
|
};
|
|
56
63
|
exports.updateCalculationMutation = updateCalculationMutation;
|
|
@@ -15,6 +15,21 @@ var _utils = require("./utils.js");
|
|
|
15
15
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
16
16
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
17
17
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
18
|
+
const formatPayload = (name, description) => {
|
|
19
|
+
const payload = [{
|
|
20
|
+
op: 'add',
|
|
21
|
+
path: '/name',
|
|
22
|
+
value: name
|
|
23
|
+
}];
|
|
24
|
+
if (description) {
|
|
25
|
+
payload.push({
|
|
26
|
+
op: 'add',
|
|
27
|
+
path: '/description',
|
|
28
|
+
value: description
|
|
29
|
+
});
|
|
30
|
+
}
|
|
31
|
+
return payload;
|
|
32
|
+
};
|
|
18
33
|
const getMutation = type => ({
|
|
19
34
|
resource: (0, _utils.endpointFromFileType)(type),
|
|
20
35
|
id: _ref => {
|
|
@@ -23,17 +38,13 @@ const getMutation = type => ({
|
|
|
23
38
|
} = _ref;
|
|
24
39
|
return id;
|
|
25
40
|
},
|
|
26
|
-
type: '
|
|
27
|
-
partial: true,
|
|
41
|
+
type: 'json-patch',
|
|
28
42
|
data: _ref2 => {
|
|
29
43
|
let {
|
|
30
44
|
name,
|
|
31
45
|
description
|
|
32
46
|
} = _ref2;
|
|
33
|
-
return
|
|
34
|
-
name,
|
|
35
|
-
description
|
|
36
|
-
};
|
|
47
|
+
return formatPayload(name, description);
|
|
37
48
|
}
|
|
38
49
|
});
|
|
39
50
|
const RenameDialog = _ref3 => {
|
|
@@ -70,7 +81,8 @@ const RenameDialog = _ref3 => {
|
|
|
70
81
|
});
|
|
71
82
|
};
|
|
72
83
|
return /*#__PURE__*/_react.default.createElement(_ui.Modal, {
|
|
73
|
-
onClose: onClose
|
|
84
|
+
onClose: onClose,
|
|
85
|
+
dataTest: "file-menu-rename-modal"
|
|
74
86
|
}, /*#__PURE__*/_react.default.createElement(_style.default, {
|
|
75
87
|
id: _FileMenuStyles.modalStyles.__hash
|
|
76
88
|
}, _FileMenuStyles.modalStyles), /*#__PURE__*/_react.default.createElement(_ui.ModalTitle, null, _index.default.t('Rename {{fileType}}', {
|
|
@@ -87,7 +99,8 @@ const RenameDialog = _ref3 => {
|
|
|
87
99
|
value
|
|
88
100
|
} = _ref4;
|
|
89
101
|
return setName(value);
|
|
90
|
-
}
|
|
102
|
+
},
|
|
103
|
+
dataTest: "file-menu-rename-modal-name"
|
|
91
104
|
}), /*#__PURE__*/_react.default.createElement(_ui.TextAreaField, {
|
|
92
105
|
label: _index.default.t('Description'),
|
|
93
106
|
disabled: loading,
|
|
@@ -98,15 +111,18 @@ const RenameDialog = _ref3 => {
|
|
|
98
111
|
value
|
|
99
112
|
} = _ref5;
|
|
100
113
|
return setDescription(value);
|
|
101
|
-
}
|
|
114
|
+
},
|
|
115
|
+
dataTest: "file-menu-rename-modal-description"
|
|
102
116
|
}))), /*#__PURE__*/_react.default.createElement(_ui.ModalActions, null, /*#__PURE__*/_react.default.createElement(_ui.ButtonStrip, null, /*#__PURE__*/_react.default.createElement(_ui.Button, {
|
|
103
117
|
onClick: onClose,
|
|
104
118
|
disabled: loading,
|
|
105
|
-
secondary: true
|
|
119
|
+
secondary: true,
|
|
120
|
+
dataTest: "file-menu-rename-modal-cancel"
|
|
106
121
|
}, _index.default.t('Cancel')), /*#__PURE__*/_react.default.createElement(_ui.Button, {
|
|
107
122
|
onClick: renameObject,
|
|
108
123
|
disabled: loading,
|
|
109
|
-
primary: true
|
|
124
|
+
primary: true,
|
|
125
|
+
dataTest: "file-menu-rename-modal-rename"
|
|
110
126
|
}, _index.default.t('Rename')))));
|
|
111
127
|
};
|
|
112
128
|
exports.RenameDialog = RenameDialog;
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"Main dimensions": "Умумий ўлчамлар",
|
|
72
72
|
"Your dimensions": "Сизнинг созламаларингиз",
|
|
73
73
|
"Dimension recommended with selected data": "Танланган маълумотлар учун созламалар тавсия этилади",
|
|
74
|
-
"All items": "",
|
|
74
|
+
"All items": "Барча элементлар",
|
|
75
75
|
"Automatically include all items": "",
|
|
76
76
|
"Select all {{- dimensionTitle}} items. With this option, new items added in the future will be automatically included.": "",
|
|
77
77
|
"Manually select items...": "",
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
"event report": "ҳодиса/тадбир ҳисоботи",
|
|
103
103
|
"line list": "",
|
|
104
104
|
"map": "харита",
|
|
105
|
-
"visualization": "",
|
|
105
|
+
"visualization": "Визуализация",
|
|
106
106
|
"Edit": "Таҳрирлаш",
|
|
107
107
|
"Write a reply": "Изоҳ ёзинг",
|
|
108
108
|
"Post reply": "",
|
|
@@ -115,6 +115,7 @@
|
|
|
115
115
|
"The interpretation couldn’t be displayed. Try again or contact your system administrator.": "",
|
|
116
116
|
"Hide interpretation": "",
|
|
117
117
|
"Write an interpretation": "Талқин ёзиш",
|
|
118
|
+
"Other people viewing this interpretation in the future may see more data.": "",
|
|
118
119
|
"Post interpretation": "",
|
|
119
120
|
"Interpretations": "Талқинлар",
|
|
120
121
|
"Reply": "Изоҳ",
|
|
@@ -182,8 +183,8 @@
|
|
|
182
183
|
"{{count}} org units": "",
|
|
183
184
|
"{{count}} levels": "",
|
|
184
185
|
"{{count}} groups": "",
|
|
185
|
-
"Selected: {{commaSeparatedListOfOrganisationUnits}}": "",
|
|
186
|
-
"Nothing selected": "",
|
|
186
|
+
"Selected: {{commaSeparatedListOfOrganisationUnits}}": "Танланган: {{commaSeparatedListOfOrganisationUnits}}",
|
|
187
|
+
"Nothing selected": "Ҳеч нима танланмаган",
|
|
187
188
|
"User organisation unit": "Ташкилий бўлим фойдаланувчиси",
|
|
188
189
|
"User sub-units": "Фойдаланувчига бўйсунувчи бирликлар",
|
|
189
190
|
"User sub-x2-units": "Фойдаланувчига бўйсунувчи 2 поғонадаги бўлимлар",
|
|
@@ -24,9 +24,8 @@ export const createCalculationMutation = {
|
|
|
24
24
|
}
|
|
25
25
|
};
|
|
26
26
|
export const updateCalculationMutation = {
|
|
27
|
-
type: '
|
|
27
|
+
type: 'json-patch',
|
|
28
28
|
resource: 'expressionDimensionItems',
|
|
29
|
-
partial: true,
|
|
30
29
|
id: _ref3 => {
|
|
31
30
|
let {
|
|
32
31
|
id
|
|
@@ -38,11 +37,19 @@ export const updateCalculationMutation = {
|
|
|
38
37
|
name,
|
|
39
38
|
expression
|
|
40
39
|
} = _ref4;
|
|
41
|
-
return {
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
}
|
|
40
|
+
return [{
|
|
41
|
+
op: 'add',
|
|
42
|
+
path: '/name',
|
|
43
|
+
value: name
|
|
44
|
+
}, {
|
|
45
|
+
op: 'add',
|
|
46
|
+
path: '/shortName',
|
|
47
|
+
value: name
|
|
48
|
+
}, {
|
|
49
|
+
op: 'add',
|
|
50
|
+
path: '/expression',
|
|
51
|
+
value: expression
|
|
52
|
+
}];
|
|
46
53
|
}
|
|
47
54
|
};
|
|
48
55
|
export const deleteCalculationMutation = {
|
|
@@ -6,6 +6,21 @@ import React, { useMemo, useState } from 'react';
|
|
|
6
6
|
import i18n from '../../locales/index.js';
|
|
7
7
|
import { modalStyles } from './FileMenu.styles.js';
|
|
8
8
|
import { supportedFileTypes, endpointFromFileType, labelForFileType } from './utils.js';
|
|
9
|
+
const formatPayload = (name, description) => {
|
|
10
|
+
const payload = [{
|
|
11
|
+
op: 'add',
|
|
12
|
+
path: '/name',
|
|
13
|
+
value: name
|
|
14
|
+
}];
|
|
15
|
+
if (description) {
|
|
16
|
+
payload.push({
|
|
17
|
+
op: 'add',
|
|
18
|
+
path: '/description',
|
|
19
|
+
value: description
|
|
20
|
+
});
|
|
21
|
+
}
|
|
22
|
+
return payload;
|
|
23
|
+
};
|
|
9
24
|
const getMutation = type => ({
|
|
10
25
|
resource: endpointFromFileType(type),
|
|
11
26
|
id: _ref => {
|
|
@@ -14,17 +29,13 @@ const getMutation = type => ({
|
|
|
14
29
|
} = _ref;
|
|
15
30
|
return id;
|
|
16
31
|
},
|
|
17
|
-
type: '
|
|
18
|
-
partial: true,
|
|
32
|
+
type: 'json-patch',
|
|
19
33
|
data: _ref2 => {
|
|
20
34
|
let {
|
|
21
35
|
name,
|
|
22
36
|
description
|
|
23
37
|
} = _ref2;
|
|
24
|
-
return
|
|
25
|
-
name,
|
|
26
|
-
description
|
|
27
|
-
};
|
|
38
|
+
return formatPayload(name, description);
|
|
28
39
|
}
|
|
29
40
|
});
|
|
30
41
|
export const RenameDialog = _ref3 => {
|
|
@@ -61,7 +72,8 @@ export const RenameDialog = _ref3 => {
|
|
|
61
72
|
});
|
|
62
73
|
};
|
|
63
74
|
return /*#__PURE__*/React.createElement(Modal, {
|
|
64
|
-
onClose: onClose
|
|
75
|
+
onClose: onClose,
|
|
76
|
+
dataTest: "file-menu-rename-modal"
|
|
65
77
|
}, /*#__PURE__*/React.createElement(_JSXStyle, {
|
|
66
78
|
id: modalStyles.__hash
|
|
67
79
|
}, modalStyles), /*#__PURE__*/React.createElement(ModalTitle, null, i18n.t('Rename {{fileType}}', {
|
|
@@ -78,7 +90,8 @@ export const RenameDialog = _ref3 => {
|
|
|
78
90
|
value
|
|
79
91
|
} = _ref4;
|
|
80
92
|
return setName(value);
|
|
81
|
-
}
|
|
93
|
+
},
|
|
94
|
+
dataTest: "file-menu-rename-modal-name"
|
|
82
95
|
}), /*#__PURE__*/React.createElement(TextAreaField, {
|
|
83
96
|
label: i18n.t('Description'),
|
|
84
97
|
disabled: loading,
|
|
@@ -89,15 +102,18 @@ export const RenameDialog = _ref3 => {
|
|
|
89
102
|
value
|
|
90
103
|
} = _ref5;
|
|
91
104
|
return setDescription(value);
|
|
92
|
-
}
|
|
105
|
+
},
|
|
106
|
+
dataTest: "file-menu-rename-modal-description"
|
|
93
107
|
}))), /*#__PURE__*/React.createElement(ModalActions, null, /*#__PURE__*/React.createElement(ButtonStrip, null, /*#__PURE__*/React.createElement(Button, {
|
|
94
108
|
onClick: onClose,
|
|
95
109
|
disabled: loading,
|
|
96
|
-
secondary: true
|
|
110
|
+
secondary: true,
|
|
111
|
+
dataTest: "file-menu-rename-modal-cancel"
|
|
97
112
|
}, i18n.t('Cancel')), /*#__PURE__*/React.createElement(Button, {
|
|
98
113
|
onClick: renameObject,
|
|
99
114
|
disabled: loading,
|
|
100
|
-
primary: true
|
|
115
|
+
primary: true,
|
|
116
|
+
dataTest: "file-menu-rename-modal-rename"
|
|
101
117
|
}, i18n.t('Rename')))));
|
|
102
118
|
};
|
|
103
119
|
RenameDialog.propTypes = {
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"Main dimensions": "Умумий ўлчамлар",
|
|
72
72
|
"Your dimensions": "Сизнинг созламаларингиз",
|
|
73
73
|
"Dimension recommended with selected data": "Танланган маълумотлар учун созламалар тавсия этилади",
|
|
74
|
-
"All items": "",
|
|
74
|
+
"All items": "Барча элементлар",
|
|
75
75
|
"Automatically include all items": "",
|
|
76
76
|
"Select all {{- dimensionTitle}} items. With this option, new items added in the future will be automatically included.": "",
|
|
77
77
|
"Manually select items...": "",
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
"event report": "ҳодиса/тадбир ҳисоботи",
|
|
103
103
|
"line list": "",
|
|
104
104
|
"map": "харита",
|
|
105
|
-
"visualization": "",
|
|
105
|
+
"visualization": "Визуализация",
|
|
106
106
|
"Edit": "Таҳрирлаш",
|
|
107
107
|
"Write a reply": "Изоҳ ёзинг",
|
|
108
108
|
"Post reply": "",
|
|
@@ -115,6 +115,7 @@
|
|
|
115
115
|
"The interpretation couldn’t be displayed. Try again or contact your system administrator.": "",
|
|
116
116
|
"Hide interpretation": "",
|
|
117
117
|
"Write an interpretation": "Талқин ёзиш",
|
|
118
|
+
"Other people viewing this interpretation in the future may see more data.": "",
|
|
118
119
|
"Post interpretation": "",
|
|
119
120
|
"Interpretations": "Талқинлар",
|
|
120
121
|
"Reply": "Изоҳ",
|
|
@@ -182,8 +183,8 @@
|
|
|
182
183
|
"{{count}} org units": "",
|
|
183
184
|
"{{count}} levels": "",
|
|
184
185
|
"{{count}} groups": "",
|
|
185
|
-
"Selected: {{commaSeparatedListOfOrganisationUnits}}": "",
|
|
186
|
-
"Nothing selected": "",
|
|
186
|
+
"Selected: {{commaSeparatedListOfOrganisationUnits}}": "Танланган: {{commaSeparatedListOfOrganisationUnits}}",
|
|
187
|
+
"Nothing selected": "Ҳеч нима танланмаган",
|
|
187
188
|
"User organisation unit": "Ташкилий бўлим фойдаланувчиси",
|
|
188
189
|
"User sub-units": "Фойдаланувчига бўйсунувчи бирликлар",
|
|
189
190
|
"User sub-x2-units": "Фойдаланувчига бўйсунувчи 2 поғонадаги бўлимлар",
|