Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Given the introduction of the
inertia
statement to indicate that the controller should returnInertia::render
, it would be great if Blueprint could generate Inertia page components for the appropriate adapter (Vue, React, Svelte), similar to how therender
statement triggers the generation of Blade templates.Changes
This PR implements that feature by introducing an
InertiaPageGenerator
.package.json
.The stubs are fairly minimal and are based on the examples provided in the Inertia documentation.
Example
Given the following draft:
And having this dependency in
package.json
:Blueprint will generate these page components:
resources/js/Pages/Customer/Index.vue
resources/js/Pages/Customer/Show.vue
Testing
This PR adds tests to check the output for the three adapters (Vue, React, Svelte).
If this doesn’t align with the goals of Blueprint, I can convert it into a plugin. Thank you for taking the time to review it!