MVVC – or some kind of renderer layer?

Notice: This thread is very old.
mcmatak
Member | 490
+
0
-

more and more i need to use somethink like view controler,

sorting, preparing, finding the right data in dataset, manipulating data according to design

i have a model, presenter = controler and view, but the functions of presenter which i need to use for view, are sometimes a huge part of code, better for me to devide into another file, i call it renderer, it helps me with sorting data, finding the right data, comparing right data bcs of needs of view, what do you think about that?

this renderer is very similar to presenter with its needs, i need to touch user, translator mostly

how you solve this?

anybody else who have same needs?

Šaman
Member | 2634
+
+2
-

My presenters contains almost only action and render methods, so my presenters are your renderer :)
Most of other logic in presenters is delegated to components and services.