I have a controller that receives an event with some data. As a part of the processing this s new data it needs to modify a collection in another controller. Is it a bad idea to inject a controller into another controller to modify this collection?

link|improve this question

67% accept rate
I voted to close as "Bad ideas", "good ideas", and "Best practices" are often subjective topics. As such I don't believe this can be answered definitively. – www.Flextras.com Aug 23 '11 at 16:22
I completely disagree. Here is my reasoning. If something like this leads to a memory leak, performance issue, or could cause an issue in the future then by answering you will have prevented a non-subjective problem – asawilliams Aug 23 '11 at 16:37
There are plenty of "best practices" that can be fine in one situation and lead to memory leaks, performance issues, and maintenance nightmares in different contexts. There is no "black and white" answer. – www.Flextras.com Aug 23 '11 at 17:50
feedback

2 Answers

I don't really understand what you mean by "a collection in another controller", but IMHO your collection should be in the model. Your first controller modifies the collection in the model which dispatches an event caught by the second controller.

link|improve this answer
Sorry, I should have mentioned that I am using swiz. The collection that I am modifying is then injected into views. – asawilliams Aug 23 '11 at 16:31
Oh sorry, I don't know swiz. – Kodiak Aug 23 '11 at 16:33
@asawilliams Actually the model should notify the view, which then in turn can notify the controller('s). Have a look at this MVC diagram. – RIAstar Aug 23 '11 at 16:50
@RIAstar, that is not how this framework works. check out swiz for more information. – asawilliams Aug 23 '11 at 17:17
@Riastar where does that diagram come from? In my experience, a big purpose of using an MVC approach is to keep the model and view separate and reusable. Adding a model dependency into a view strikes me as off. – www.Flextras.com Aug 23 '11 at 17:49
show 4 more comments
feedback

I'm not too familiar with Swiz, however in other frameworks if you needed to have another 'controller' do something after a result, it would dispatch an event that the second controller is listening for giving it the data it needs.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.