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

[LiveComponent] Fix default option extraction ignores Translatable #2621 #2627

Open
wants to merge 2 commits into
base: 2.x
Choose a base branch
from

Conversation

stehled
Copy link

@stehled stehled commented Mar 6, 2025

Q A
Bug fix? yes
New feature? no
Issues Fix #2621
License MIT

Select placeholder in LiveForm will now accept string and TranslatableInterface from symfony/translation-contracts. Therefore mimicking of default browser behaviour will not happen for TranslatableInterface.

@carsonbot carsonbot added Bug Bug Fix Status: Needs Review Needs to be reviewed labels Mar 6, 2025
@stehled stehled changed the title Fix issue 2621 [LiveComponent] Fix issue 2621 Mar 6, 2025
@smnandre
Copy link
Member

smnandre commented Mar 6, 2025

Your composer.json change is not needed here, so let's avoid adding a new dependency for this single check :)

<?php

use Not\Installed\TranslatableInterface;

if ('aa' instanceof TranslatableInterface) {
    echo 'yep';
} else {
    echo 'nope';
}

--> "nope" and no error/warning (see https://3v4l.org/4nHHd )

(on contrary to something like this where an error would occur)

<?php

use Not\Installed\TranslatableInterface;

// This would trigger a Fatal Error Interface "Not\Installed\TranslatableInterface" not found
$foo = new class implements TranslatableInterface {};

@carsonbot carsonbot added Status: Needs Work Additional work is needed and removed Status: Needs Review Needs to be reviewed labels Mar 6, 2025
@carsonbot carsonbot added Status: Needs Review Needs to be reviewed and removed Status: Needs Work Additional work is needed labels Mar 7, 2025
@stehled
Copy link
Author

stehled commented Mar 7, 2025

I've committed the suggestion, thank you for this comment, I've learned something new :)

@smnandre smnandre changed the title [LiveComponent] Fix issue 2621 [LiveComponent] Fix default option extraction ignores Translatable #2621 Mar 8, 2025
@smnandre smnandre added LiveComponent Status: Reviewed Has been reviewed by a maintainer and removed Status: Needs Review Needs to be reviewed labels Mar 8, 2025
@smnandre
Copy link
Member

smnandre commented Mar 8, 2025

Thank you @stehled !

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug Bug Fix LiveComponent Status: Reviewed Has been reviewed by a maintainer
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[LiveForm] Required select with placeholder of TranslatableMessage has first value set upon rerender
3 participants