Skip to content
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

Merged
merged 11 commits into from
May 6, 2024
Merged

Update filter atts #105

merged 11 commits into from
May 6, 2024

Conversation

alimpens
Copy link
Contributor

@alimpens alimpens commented May 2, 2024

Meldingen

This PR sets up our use of panel components. Forms are now automatically built as wizards, and the panel component attrs are added to filterAttributes.

This also changes the update requests to PATCH, except for update requests to the 'form' endpoint. That still uses PUT.

@alimpens alimpens requested a review from vdegraaf May 2, 2024 14:13
Comment on lines 25 to 40
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 }))
},
}
Copy link
Contributor

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.

Copy link
Contributor Author

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?

Copy link
Contributor

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?

Copy link
Contributor Author

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.

Copy link
Contributor

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.

@alimpens alimpens merged commit 430480a into main May 6, 2024
2 checks passed
@alimpens alimpens deleted the update-filterAtts branch May 6, 2024 14:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

2 participants