-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
42 simple api injection proposal for custom user componentisation #43
42 simple api injection proposal for custom user componentisation #43
Conversation
+ Vuetify update was needed to render some new components + Vue was updated since Vuetify needed it's latest version
…e view should show
…om prop + A testing route that simulates the Create View has been added to Resource
+ Resource will inject props to the CustomCreate component that a user passes + CustomCreate should use those functions to update and submit a custom form
+ Updated and documented CustomCreate component + Updates Resource to use the new binding function for the CreateTest view + Entities store: refactors the key name + Documented and refactored the store utils
+ This is specially used when you have to redirect to a show view and you don't know where the id is in the response after a create Action
…om-user-componentisation
SummaryPull Request Deliverables:
|
// list is a user's custom component | ||
const utils = listUtils({ | ||
resourceName, | ||
router, |
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.
The listUtils function doesn't use the router parameter. We need to remove it.
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, fixed in 46afb88
|
||
let timesNavigatedToNextPage = 0 | ||
|
||
before('Creates a new magazine', () => { |
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.
The description doesn't match the setup content
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.
Fixed in 85ab70a
+ Articles tests have been restructured
This PR provides:
Closes #42