datastake-daf 0.6.254 → 0.6.255
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/index.css +1 -1
- package/dist/components/index.js +340 -29
- package/package.json +1 -1
- package/src/@daf/core/components/Dashboard/Steps/Steps.stories.js +5 -0
- package/src/@daf/core/components/Dashboard/Steps/index.jsx +29 -8
- package/src/@daf/core/components/EditForm/storyConfig.js +1 -1
- package/src/@daf/core/components/EditForm/storyConfig1.js +249 -244
- package/src/@daf/core/components/PdfForm/index.js +311 -21
- package/src/@daf/core/components/PdfForm/style.scss +50 -6
- package/.env +0 -8
- package/.vscode/settings.json +0 -13
|
@@ -1,251 +1,256 @@
|
|
|
1
1
|
export const getApiBaseUrl = () => "http://192.168.4.65:4020";
|
|
2
2
|
|
|
3
3
|
export const getAppHeader = () => ({
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
Application: "sbg",
|
|
5
|
+
Language: "en",
|
|
6
6
|
});
|
|
7
7
|
|
|
8
8
|
export const storyData = {
|
|
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
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
9
|
+
getApiBaseUrl,
|
|
10
|
+
getAppHeader,
|
|
11
|
+
form: {
|
|
12
|
+
id: "financialManagement",
|
|
13
|
+
description: "",
|
|
14
|
+
icon: "",
|
|
15
|
+
position: 0,
|
|
16
|
+
show: true,
|
|
17
|
+
options: {
|
|
18
|
+
"id": "identification",
|
|
19
|
+
"position": 1,
|
|
20
|
+
|
|
21
|
+
"sectoralScope": {
|
|
22
|
+
"_id": "68caccdb5a424c6d3b2492be",
|
|
23
|
+
"id": "675385c3-69ea-49ee-920e-b0de30af48ba",
|
|
24
|
+
"dataId": "sectoralScope",
|
|
25
|
+
"section": "identification",
|
|
26
|
+
"type": "select",
|
|
27
|
+
"meta": {
|
|
28
|
+
"comment": false,
|
|
29
|
+
"notApplicable": false,
|
|
30
|
+
"notAvailable": false,
|
|
31
|
+
"mandatory": true,
|
|
32
|
+
"store": {
|
|
33
|
+
"stakeholder": {
|
|
34
|
+
"global": true,
|
|
35
|
+
"path": "category"
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"position": 3,
|
|
40
|
+
"rules": [
|
|
41
|
+
{
|
|
42
|
+
"required": true,
|
|
43
|
+
"message": "errors::field is required"
|
|
44
|
+
}
|
|
45
|
+
],
|
|
46
|
+
"scope": [
|
|
47
|
+
"modalStraatos",
|
|
48
|
+
"straatosProject",
|
|
49
|
+
"projectDetails",
|
|
50
|
+
"project"
|
|
51
|
+
],
|
|
52
|
+
"label": "Sectoral Scope",
|
|
53
|
+
"options": [
|
|
54
|
+
{
|
|
55
|
+
"label": "Agriculture, Forestry and Other Land Use (AFOLU)",
|
|
56
|
+
"value": "agricultureForestryAndOtherLandUse"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"label": "Energy (renewable/non-renewable)",
|
|
60
|
+
"value": "energy",
|
|
61
|
+
"disabled": true
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"label": "Energy distribution",
|
|
65
|
+
"value": "energyDistribution",
|
|
66
|
+
"disabled": true
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"label": "Energy demand",
|
|
70
|
+
"value": "energyDemand",
|
|
71
|
+
"disabled": true
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"label": "Manufacturing industries",
|
|
75
|
+
"value": "manufacturingIndustries",
|
|
76
|
+
"disabled": true
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"label": "Chemical industry",
|
|
80
|
+
"value": "chemicalIndustry",
|
|
81
|
+
"disabled": true
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"label": "Construction",
|
|
85
|
+
"value": "construction",
|
|
86
|
+
"disabled": true
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"label": "Transport",
|
|
90
|
+
"value": "transport",
|
|
91
|
+
"disabled": true
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"label": "Mining/mineral production",
|
|
95
|
+
"value": "miningMineralProduction",
|
|
96
|
+
"disabled": true
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"label": "Metal production",
|
|
100
|
+
"value": "metalProduction",
|
|
101
|
+
"disabled": true
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"label": "Fugitive emissions from fuels (solid, oil, and gas)",
|
|
105
|
+
"value": "fugitiveEmissionsFromFuels",
|
|
106
|
+
"disabled": true
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"label": "Fugitive emissions from industrial gases (halocarbons and sulphur hexafluoride)",
|
|
110
|
+
"value": "fugitiveEmissionsFromIndustrialGases",
|
|
111
|
+
"disabled": true
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"label": "Solvent use",
|
|
115
|
+
"value": "solventUse",
|
|
116
|
+
"disabled": true
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"label": "Waste handling and disposal",
|
|
120
|
+
"value": "wasteHandlingAndDisposal",
|
|
121
|
+
"disabled": true
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"label": "Livestock and manure management",
|
|
125
|
+
"value": "livestockAndManureManagement",
|
|
126
|
+
"disabled": true
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"label": "Carbon capture and storage",
|
|
130
|
+
"value": "carbonCaptureAndStorage",
|
|
131
|
+
"disabled": true
|
|
132
|
+
}
|
|
133
|
+
],
|
|
134
|
+
"createdAt": "2025-09-17T14:59:42.118Z",
|
|
135
|
+
"updatedAt": "2025-09-17T14:59:42.118Z",
|
|
136
|
+
"__v": 0
|
|
137
|
+
},
|
|
138
|
+
|
|
139
|
+
"label": "Identification",
|
|
140
|
+
"subTitle": "Identification"
|
|
141
|
+
},
|
|
142
|
+
},
|
|
143
|
+
data: {
|
|
144
|
+
location: [
|
|
145
|
+
{
|
|
146
|
+
_id: "689f1086cd1642955475a45e",
|
|
147
|
+
form: "location",
|
|
148
|
+
id: "f276986a-5b41-45bf-b02b-61e79c42cf50",
|
|
149
|
+
parent: {
|
|
150
|
+
_id: "689f1086cd1642955475a462",
|
|
151
|
+
createdAt: "2025-08-15T10:48:38.719Z",
|
|
152
|
+
updatedAt: "2025-08-15T10:48:38.719Z",
|
|
153
|
+
id: "e006842b-b9bb-431f-b9b9-184e82e324b4",
|
|
154
|
+
name: "test 999444444",
|
|
155
|
+
authorId: "df5378ae-704a-4a46-93b2-336cc5341456",
|
|
156
|
+
collectId: "93ed3cfd5abf671367ca3116d8bdcb429ca55d16",
|
|
157
|
+
country: "AX",
|
|
158
|
+
category: "plot",
|
|
159
|
+
datastakeId: "LOC-00000000295",
|
|
160
|
+
__v: 0,
|
|
161
|
+
},
|
|
162
|
+
perimeter: [
|
|
163
|
+
[58.313817167753996, 18.413085937500004],
|
|
164
|
+
[59.2700913303328, 17.270507812500004],
|
|
165
|
+
[59.18015006492145, 16.479492187500004],
|
|
166
|
+
],
|
|
167
|
+
name: "test 999444444",
|
|
168
|
+
country: "AX",
|
|
169
|
+
category: "plot",
|
|
170
|
+
authorId: "df5378ae-704a-4a46-93b2-336cc5341456",
|
|
171
|
+
published: false,
|
|
172
|
+
version: 1,
|
|
173
|
+
datastakeId: "LOC-00000000295",
|
|
174
|
+
pictures: [],
|
|
175
|
+
documents: [],
|
|
176
|
+
associatedSubjects: [
|
|
177
|
+
{
|
|
178
|
+
entity: "PlantingCycle",
|
|
179
|
+
_id: {},
|
|
180
|
+
nature: "location",
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
entity: "PlantingCycle",
|
|
184
|
+
_id: {},
|
|
185
|
+
nature: "location",
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
entity: "PlantingCycle",
|
|
189
|
+
_id: {},
|
|
190
|
+
nature: "location",
|
|
191
|
+
},
|
|
192
|
+
],
|
|
193
|
+
createdAt: "2025-08-15",
|
|
194
|
+
updatedAt: "2025-08-15",
|
|
195
|
+
__v: 0,
|
|
196
|
+
label: "test 999444444",
|
|
197
|
+
value: "689f1086cd1642955475a45e",
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
_id: "689f1135cd1642955475a594",
|
|
201
|
+
form: "location",
|
|
202
|
+
id: "d60984d5-e79a-474f-8c6d-b9d4256f0357",
|
|
203
|
+
parent: {
|
|
204
|
+
_id: "689f1135cd1642955475a59b",
|
|
205
|
+
createdAt: "2025-08-15T10:51:33.758Z",
|
|
206
|
+
updatedAt: "2025-08-15T10:51:33.758Z",
|
|
207
|
+
id: "818f4b75-2212-47e4-b07e-52a7e6454568",
|
|
208
|
+
name: "edd",
|
|
209
|
+
authorId: "df5378ae-704a-4a46-93b2-336cc5341456",
|
|
210
|
+
collectId: "79af2232d97ef4ae6b435b1d22997a978b5e2f47",
|
|
211
|
+
country: "AX",
|
|
212
|
+
administrativeLevel1: null,
|
|
213
|
+
administrativeLevel2: null,
|
|
214
|
+
category: "plot",
|
|
215
|
+
datastakeId: "LOC-00000000296",
|
|
216
|
+
__v: 0,
|
|
217
|
+
},
|
|
218
|
+
perimeter: [
|
|
219
|
+
[59.98229931379975, 17.228966156671063],
|
|
220
|
+
[59.98229931379975, 17.565517949147456],
|
|
221
|
+
[59.77480258556264, 17.53667065264947],
|
|
222
|
+
],
|
|
223
|
+
administrativeLevel1: null,
|
|
224
|
+
administrativeLevel2: null,
|
|
225
|
+
name: "edd",
|
|
226
|
+
country: "AX",
|
|
227
|
+
category: "plot",
|
|
228
|
+
authorId: "df5378ae-704a-4a46-93b2-336cc5341456",
|
|
229
|
+
gps: null,
|
|
230
|
+
published: false,
|
|
231
|
+
version: 1,
|
|
232
|
+
datastakeId: "LOC-00000000296",
|
|
233
|
+
pictures: [],
|
|
234
|
+
documents: [],
|
|
235
|
+
associatedSubjects: [
|
|
236
|
+
{
|
|
237
|
+
entity: "Event",
|
|
238
|
+
_id: {},
|
|
239
|
+
nature: "location",
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
entity: "PlantingCycle",
|
|
243
|
+
_id: {},
|
|
244
|
+
nature: "location",
|
|
245
|
+
},
|
|
246
|
+
],
|
|
247
|
+
projectId: "PRJ-00000000107",
|
|
248
|
+
createdAt: "2025-08-15T10:51:33.758Z",
|
|
249
|
+
updatedAt: "2025-08-15T10:51:33.758Z",
|
|
250
|
+
__v: 0,
|
|
251
|
+
label: "edd",
|
|
252
|
+
value: "689f1135cd1642955475a594",
|
|
253
|
+
},
|
|
254
|
+
],
|
|
255
|
+
},
|
|
251
256
|
};
|