Skip to content
This repository has been archived by the owner on Feb 4, 2023. It is now read-only.

Column as a service? #902

Open
stephanvierkant opened this issue Jul 3, 2019 · 2 comments
Open

Column as a service? #902

stephanvierkant opened this issue Jul 3, 2019 · 2 comments

Comments

@stephanvierkant
Copy link
Collaborator

I'd like to inject services (Symfony Routing Component for example) in a Column using Dependency Injection, like you can do with a FormType in Symfony.

I've no idea how to implement this in this library. Any ideas?

@Seb33300
Copy link
Collaborator

Seb33300 commented Jul 3, 2019

I am thinking about it since a long time and this should be very useful indeed.

To implement this, I think the first step will be to add a custom tag associated to the ColumnInterface.
So we will be able to easily identify all Column classes and then load them as services.
This can be done using with tag auto configuration:
https://symfony.com/doc/current/service_container/tags.html#autoconfiguring-tags

Then, we will be able to pass all ColumnInterface services as an argument to the ColumnBuilder, for example using the !tagged keyword:
https://symfony.com/doc/3.4/service_container/tags.html#reference-tagged-services
This means all Column classes will be passed to the ColumnBuilder as services (with automatic dependency injection) and we should be able to use them as normal service class.

@stephanvierkant
Copy link
Collaborator Author

I'm working on a Proof of Concept!

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

3 participants