inertia
inertia copied to clipboard
Inertia.js lets you quickly build modern single-page React, Vue and Svelte apps using classic server-side routing and controllers.
_This is a draft PR and currently only targets the main Inertia package for the sake of discussion. I'll update the other build configurations after we've drawn our conclusions._ Triggered...
Safari has this bonkers limitation of limiting `pushState` and `replaceState` calls to 100 times per 30 seconds. That's 3 calls per second. Clicking around an app won't cause this, but...
In our inertia-react application, we're using Axios to fetch new data when a filter in an index page changes. We also then update the querystring, so the URL to the...
I was able to replicate #235 on the `use:inertia` directive like so: ```svelte console.log('click')} on:cancelToken={event => console.log('cancelToken', event.detail.cancelToken)} on:start={event => console.log('start', event.detail.visit)} on:progress={event => console.log('progress', event.detail.progress)} on:finish={() => console.log('finish')} on:cancel={()...
This functionality adds a 'request manager' of sorts, which has the following behavior: 1) If there is no request, it starts the request and returns a promise that will eventually...
This PR serves as a basis / starting point for eventually migrating away from Axios. The basic functionality presented works, but file uploads have not been tested. This PR will...
 Usage: - `Click me!` - `Save Changes` - `Visit with request options` Under the hood, this feature uses the existing [request methods](https://inertiajs.com/requests), and acts...
(Resubmitted from https://github.com/inertiajs/inertia-vue/pull/135) The current implementation of nested layouts requires using the render function. This is a) more complex than the the nice layout shorthand and b) requires importing both...
### Discussed in https://github.com/inertiajs/inertia/discussions/1081 Originally posted by **ZeoKnight** February 4, 2022 Having read @aarondfrancis comments here https://github.com/tighten/ziggy/issues/431 and useful blog post https://aaronfrancis.com/2022/using-ziggy-with-inertia-server-side-rendering for dealing with global scope window issues. How...
### Versions: Laravel 9 "@inertiajs/inertia": "^0.11.0", "@inertiajs/inertia-vue3": "^0.6.0" ### Describe the problem: - the Vue component makes a post request to the Laravel backend. - the Laravel router calls the...