Open wbloszyk opened 1 year ago
Not sure if I understand your idea correctly, but what about making the admin bundle extendable?
For example the SonataAdminBundle
only provides a basic theme (e.g. latest bootstrap version). And if you want to use some other theme like AdminLTE2 you could use something like SonataAdminLTE2Theme
. The basic theme should also not contain any options.
I know this would mean an other more library to maintain but that might solve some issues and reduces the overall project artifact size.
I'm also not sure how to provide features that require code on the template side, like options you pass from the PHP component to the template to change some theme specific code like this:
Think about sonata.admin.global_template_registry
as a sonata.admin.adminlte2_template_registry
. From tamplate pool you can take any added template (adminLte2, adminLte3, bootstrap4, bootstrap5 ...) as sonata.admin.global_template_registry
alias. It means you can deprecate adminLTE2 in favor of other template in next major release.
Now template options (or templates config). We can check them by validating when adding template registry to pool. In this case we can force templates creator to add options like box_class
to them templates. Also they will be able to add extra config depends of them template.
Hi, any news on this?
Hi, any news on this?
Hi @matik955. For do it in the best way for all sonata bundles (and my own projects) i had to check all of them. SonataAdminBundle
have own template_registry
system, SonataPageBundle
haven't. Also using SonataAdminBundle
to generate template system for own project is bad idea. So the best option will be move it to twig-components
or create new bundle.
SonataAdminBundle
have also some bad solutions for that. like copy template_registry
which should be extended istead:
To sum up, I am starting work on a new, independent template system that will enable defining a list of templates, their options and allowing them to be extended. After that we can add it to SonatAdminBundle 4.x
as secondary template system. I should finish it this month, but I'm working after hours, so it's better to assume by the end of the year.
HI @wbloszyk Any news here? I am at a point where I'd like to write our own templates (if possible by using tailwind). Since these changes would affect these plans, I wanted to know if a financial incentive would help. We would be interested in paying you for your time on this feature. If you are interested, what is the ETA and the cost for this implementation?
Hi @toooni I suspended contributing some time ago, becouse I open my own company and now I focus on two big project. Back to this issue, I should have some PR and notes. I can check it. Of course a financial incentive will be greate reason to finnaly done this but mybe even better will be help with new frontend. Please send me email with contact (whatsapp will be greate). IMO better will be talk about it.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
please keep it open good bot.
Feature Request
Current system have one template (AdminLTE2) and it is depends of some bundle config. This solution is hard to keep BC becouse depends of so many third part packages.
Now all templates are taken from
sonata.admin.global_template_registry
. Somesonata_admin.options
should be move there. Also templateRegistry should be moved to pool. This solution will make templates replaceable without BC break.From this:
To this: