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

Give render function support for BackedEnum component names #715

Open
wants to merge 1 commit into
base: 2.x
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions src/ResponseFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

namespace Inertia;

use BackedEnum;
use Closure;
use Illuminate\Contracts\Support\Arrayable;
use Illuminate\Support\Arr;
Expand All @@ -13,6 +14,7 @@
use Inertia\Support\Header;
use Symfony\Component\HttpFoundation\RedirectResponse as SymfonyRedirect;
use Symfony\Component\HttpFoundation\Response as SymfonyResponse;
use InvalidArgumentException;

class ResponseFactory
{
Expand Down Expand Up @@ -130,11 +132,12 @@ public function always($value): AlwaysProp
return new AlwaysProp($value);
}

/**
* @param array|Arrayable $props
*/
public function render(string $component, $props = []): Response
public function render(BackedEnum|string $component, array|Arrayable $props = []): Response
{
if ($component instanceof BackedEnum && ! is_string($component = $component->value)) {
throw new InvalidArgumentException('Enum must be string backed.');
}

if ($props instanceof Arrayable) {
$props = $props->toArray();
}
Expand Down
Loading