Remix.run Logo
pixelworm 4 days ago

I think nearly every definition of MVC I've read has been different. At this point it just means you split something into three classes as far as I can tell.

cypherpunk666 4 days ago | parent [-]

https://en.m.wikipedia.org/wiki/Trygve_Reenskaug

THE OG

mpweiher 4 days ago | parent [-]

And here is the original paper:

https://web.archive.org/web/20090424042645/http://heim.ifi.u...

Enjoy!

andrewflnr 3 days ago | parent [-]

Oh, I think I see the problem now. He doesn't want views to know anything about concrete inputs, but our modern GUIs are so closely connected to input that that's pretty much impossible. And really if you want to click on a sub element of a view, that's hardly avoidable.

So modern Controllers can only do their most basic job with these Editor objects that are tightly bound to views, were supposed to be ephemeral, and that LITERALLY NO ONE TALKS ABOUT.