@asteby/metacore-runtime-react 7.1.0 → 7.1.1
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @asteby/metacore-runtime-react
|
|
2
2
|
|
|
3
|
+
## 7.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 76d4b58: Align SDK dialogs to the kernel's `/dynamic/:model` path namespace.
|
|
8
|
+
|
|
9
|
+
`<DynamicRecordDialog>`, `<ExportDialog>` and `<ImportDialog>` were posting to `/data/:model[/...]`, which had no kernel handler — apps that didn't ship their own `handlers/export.go` got 404s the moment a user clicked Export, Import or "Descargar plantilla".
|
|
10
|
+
|
|
11
|
+
Switches every hardcoded path from `/data/${model}` to `/dynamic/${model}`. Pairs with `metacore-kernel v0.5.0`, which exposes the canonical `/dynamic/:model/export`, `/dynamic/:model/export/template`, `/dynamic/:model/import`, `/dynamic/:model/import/validate` endpoints — so the SDK toolbar now wires straight to the kernel out of the box, no app glue.
|
|
12
|
+
|
|
3
13
|
## 7.1.0
|
|
4
14
|
|
|
5
15
|
### Minor Changes
|
|
@@ -94,7 +94,7 @@ export function DynamicRecordDialog({ open, onOpenChange, mode, model, recordId,
|
|
|
94
94
|
else {
|
|
95
95
|
const recordEndpoint = endpoint
|
|
96
96
|
? `${endpoint}/${recordId}`
|
|
97
|
-
: `/
|
|
97
|
+
: `/dynamic/${model}/${recordId}`;
|
|
98
98
|
const recRes = await api.get(recordEndpoint);
|
|
99
99
|
if (cancelled)
|
|
100
100
|
return;
|
|
@@ -142,13 +142,13 @@ export function DynamicRecordDialog({ open, onOpenChange, mode, model, recordId,
|
|
|
142
142
|
try {
|
|
143
143
|
let res;
|
|
144
144
|
if (isCreate) {
|
|
145
|
-
const createEndpoint = endpoint || `/
|
|
145
|
+
const createEndpoint = endpoint || `/dynamic/${model}`;
|
|
146
146
|
res = await api.post(createEndpoint, formValues);
|
|
147
147
|
}
|
|
148
148
|
else {
|
|
149
149
|
const updateEndpoint = endpoint
|
|
150
150
|
? `${endpoint}/${recordId}`
|
|
151
|
-
: `/
|
|
151
|
+
: `/dynamic/${model}/${recordId}`;
|
|
152
152
|
res = await api.put(updateEndpoint, formValues);
|
|
153
153
|
}
|
|
154
154
|
if (res.data?.success !== false) {
|
package/dist/dialogs/export.js
CHANGED
|
@@ -110,7 +110,7 @@ export function ExportDialog({ open, onOpenChange, model, metadata, currentFilte
|
|
|
110
110
|
}
|
|
111
111
|
});
|
|
112
112
|
}
|
|
113
|
-
const response = await api.get(`/
|
|
113
|
+
const response = await api.get(`/dynamic/${model}/export`, {
|
|
114
114
|
params,
|
|
115
115
|
responseType: 'blob',
|
|
116
116
|
validateStatus: () => true,
|
package/dist/dialogs/import.js
CHANGED
|
@@ -36,7 +36,7 @@ export function ImportDialog({ open, onOpenChange, model, metadata, onImported,
|
|
|
36
36
|
};
|
|
37
37
|
const handleDownloadTemplate = async () => {
|
|
38
38
|
try {
|
|
39
|
-
const response = await api.get(`/
|
|
39
|
+
const response = await api.get(`/dynamic/${model}/export/template`, {
|
|
40
40
|
responseType: 'blob',
|
|
41
41
|
});
|
|
42
42
|
const url = window.URL.createObjectURL(response.data);
|
|
@@ -61,7 +61,7 @@ export function ImportDialog({ open, onOpenChange, model, metadata, onImported,
|
|
|
61
61
|
try {
|
|
62
62
|
const formData = new FormData();
|
|
63
63
|
formData.append('file', file);
|
|
64
|
-
const res = await api.post(`/
|
|
64
|
+
const res = await api.post(`/dynamic/${model}/import/validate`, formData, {
|
|
65
65
|
headers: { 'Content-Type': 'multipart/form-data' },
|
|
66
66
|
});
|
|
67
67
|
const data = res.data?.data ?? res.data;
|
|
@@ -87,7 +87,7 @@ export function ImportDialog({ open, onOpenChange, model, metadata, onImported,
|
|
|
87
87
|
try {
|
|
88
88
|
const formData = new FormData();
|
|
89
89
|
formData.append('file', file);
|
|
90
|
-
const res = await api.post(`/
|
|
90
|
+
const res = await api.post(`/dynamic/${model}/import`, formData, {
|
|
91
91
|
headers: { 'Content-Type': 'multipart/form-data' },
|
|
92
92
|
onUploadProgress: (progressEvent) => {
|
|
93
93
|
if (progressEvent.total) {
|
package/package.json
CHANGED
|
@@ -172,7 +172,7 @@ export function DynamicRecordDialog({
|
|
|
172
172
|
} else {
|
|
173
173
|
const recordEndpoint = endpoint
|
|
174
174
|
? `${endpoint}/${recordId}`
|
|
175
|
-
: `/
|
|
175
|
+
: `/dynamic/${model}/${recordId}`
|
|
176
176
|
|
|
177
177
|
const recRes = await api.get(recordEndpoint)
|
|
178
178
|
if (cancelled) return
|
|
@@ -223,12 +223,12 @@ export function DynamicRecordDialog({
|
|
|
223
223
|
try {
|
|
224
224
|
let res
|
|
225
225
|
if (isCreate) {
|
|
226
|
-
const createEndpoint = endpoint || `/
|
|
226
|
+
const createEndpoint = endpoint || `/dynamic/${model}`
|
|
227
227
|
res = await api.post(createEndpoint, formValues)
|
|
228
228
|
} else {
|
|
229
229
|
const updateEndpoint = endpoint
|
|
230
230
|
? `${endpoint}/${recordId}`
|
|
231
|
-
: `/
|
|
231
|
+
: `/dynamic/${model}/${recordId}`
|
|
232
232
|
res = await api.put(updateEndpoint, formValues)
|
|
233
233
|
}
|
|
234
234
|
|
package/src/dialogs/export.tsx
CHANGED
package/src/dialogs/import.tsx
CHANGED
|
@@ -87,7 +87,7 @@ export function ImportDialog({
|
|
|
87
87
|
|
|
88
88
|
const handleDownloadTemplate = async () => {
|
|
89
89
|
try {
|
|
90
|
-
const response = await api.get(`/
|
|
90
|
+
const response = await api.get(`/dynamic/${model}/export/template`, {
|
|
91
91
|
responseType: 'blob',
|
|
92
92
|
})
|
|
93
93
|
const url = window.URL.createObjectURL(response.data)
|
|
@@ -114,7 +114,7 @@ export function ImportDialog({
|
|
|
114
114
|
const formData = new FormData()
|
|
115
115
|
formData.append('file', file)
|
|
116
116
|
|
|
117
|
-
const res = await api.post(`/
|
|
117
|
+
const res = await api.post(`/dynamic/${model}/import/validate`, formData, {
|
|
118
118
|
headers: { 'Content-Type': 'multipart/form-data' },
|
|
119
119
|
})
|
|
120
120
|
|
|
@@ -143,7 +143,7 @@ export function ImportDialog({
|
|
|
143
143
|
const formData = new FormData()
|
|
144
144
|
formData.append('file', file)
|
|
145
145
|
|
|
146
|
-
const res = await api.post(`/
|
|
146
|
+
const res = await api.post(`/dynamic/${model}/import`, formData, {
|
|
147
147
|
headers: { 'Content-Type': 'multipart/form-data' },
|
|
148
148
|
onUploadProgress: (progressEvent: { loaded: number; total?: number }) => {
|
|
149
149
|
if (progressEvent.total) {
|