-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update filter atts #105
Update filter atts #105
Conversation
…into update-filterAtts
apps/admin/src/app/dataProvider.ts
Outdated
export const dataProvider: DataProvider = { | ||
...baseDataProvider, | ||
update: (resource, params) => { | ||
// 'form' updates use PUT requests, all other updates use PATCH requests | ||
if (resource === 'form') { | ||
return fetchJson(`http://localhost:8000/${resource}/${params.id}`, { | ||
method: 'PUT', | ||
body: JSON.stringify(params.data), | ||
}).then(({ json }) => ({ data: json })) | ||
} | ||
return fetchJson(`http://localhost:8000/${resource}/${params.id}`, { | ||
method: 'PATCH', | ||
body: JSON.stringify(params.data), | ||
}).then(({ json }) => ({ data: json })) | ||
}, | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this can use a test.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good point. And maybe /app
is not the right location for the data provider? Shall I move it to /admin/Admin
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wouldn't put it in a component. Maybe a /service folder with these kind of functions for now?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It will only ever be used in the Admin component though. Having it in /service
makes it harder to find imo.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Alright, let's do that for now. We can always rearrange.
Meldingen
This PR sets up our use of panel components. Forms are now automatically built as wizards, and the
panel
component attrs are added tofilterAttributes
.This also changes the update requests to PATCH, except for update requests to the 'form' endpoint. That still uses PUT.