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

Partial Reloads no longer work as documented in Inertia 2.0 - Unlisted breaking change #701

Open
ncphillips opened this issue Jan 2, 2025 · 2 comments

Comments

@ncphillips
Copy link

ncphillips commented Jan 2, 2025

We have some pages that do partial reloads so we don't unmount certain parts of our UI.

For example, courses have many assignments. If we're switching from assignment to assignment we want to avoid reloading the course data.

function show($courseId, $assignmentId)
{
    return inertia('Assignment/Show', [
        'course' => fn() => Course::find($courseId),
        'assignment' => Assignment::find($assignmentId),
    ]);
}

In the Assignment/Show template we have a link using Ziggy:

<Link :href="route('courses.assignments.edit', { course: course.id, assignment: assignment.id })>Edit</Edit>

According to the docs course will always be sent on first request, but if the only prop is sent than it would be left out.

This works in Inertia 1.0

With the upgrade to 2.0 this stops working. Ziggy explodes telling me that course is undefined.

When I log out props.course then I see that the course is an empty proxy:
image

It seems to me like Inertia is now treating:

'course' => fn() => Course::find($courseId)

like this

'course' => Inertia::lazy(fn () => Course::find($courseId))

It's not the end of the world, but is a bit annoying.

@ncphillips ncphillips changed the title Inertia 2.0 unlisted breaking change Partial Reloads no longer work as documented in Inertia 2.0 - Unlisted breaking change Jan 2, 2025
@michaelklopf
Copy link

I have discovered the same behaviour, that fn() behaves like lazy. Is this a bug or the docs wrong?

@ncphillips
Copy link
Author

I have no idea. Would love to hear from @joetannenbaum. We're super excited for Inertia 2.0 and we could get a ton of benefit, but with this still being an issue we're not quite willing to take the chance.

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants