-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
[POC] Replace x-editor #8221
base: 5.x
Are you sure you want to change the base?
[POC] Replace x-editor #8221
Conversation
Can u add screenshot before/after ? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I like the idea, this would help to bump to boostrap 4 (or 5) #7156
- @sonata-project/contributors WDYT ?
- We need to decide if it requires to be releases as 5.0 or if it can be considered as BC.
- CI need to be fixed
@@ -213,6 +213,7 @@ const Admin = { | |||
|
|||
setup_xeditable(subject) { | |||
Admin.log('[core|setup_xeditable] configure xeditable on', subject); | |||
return; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is intended? Either leave a comment with a TODO or remove the code below
We could do it in the 5.0, but this will take months or even years to be released... Looking at EasyAdmin, they allow minor breaking changes on stable branches, with all the downsides. |
Hi @onEXHovia , thanks for the work! This is indeed an important step to get the Admin LTE update working (one of many 😄 ). Regarding BC: I just looked at our more heavily modified sonata admin projects and I would prefer to have a feature flag in the Deprecation example: https://github.com/api-platform/core/blob/3.4/src/Symfony/Bundle/DependencyInjection/ApiPlatformExtension.php#L1032-L1034 ->booleanNode('keep_legacy_inflector')->defaultTrue()->info('Keep doctrine/inflector instead of symfony/string to generate plurals for routes.')->end()
// ...
if ($config['keep_legacy_inflector']) {
trigger_deprecation('api-platform/core', '3.2', 'Using doctrine/inflector is deprecated since API Platform 3.2 and will be removed in API Platform 4. Use symfony/string instead. Run "composer require symfony/string" and set "keep_legacy_inflector" to false in config.');
} Regarding the PR itself: Would it be possible to add a few events to the stimulus controller to be able to modify the request options and maybe even the response? At least the options i could do via twig with the Thanks! |
I think such PR can be done in 4.x
I'm not sure we need to provide a |
Subject
Example of possible implementation for replacement xeditor to classic way. On the first request we create a form with an editable field and display in popover, after successfully submit form, we update the field in the list.
This is a very quick implementation to discuss, I am open to ideas and suggestions. This approach gives more flexibility than xeditable because everything is built around symfony forms.
Changelog