Giter Site home page Giter Site logo

Comments (2)

adamjernst avatar adamjernst commented on April 19, 2024

Would it be kosher to include a weak reference to a delegate (i.e. a ViewController) in the context so that the component can set its controller's delegate?

Yes (although I'd prefer having the controller read the component's weak reference and set it on itself, rather than having the component do it).

Are there better ways to route events?

The way we do it at Facebook: we pass down a "navigator" object as part of the context. A simplified version:

@protocol Navigator
- (void)pushViewController:(UIViewController *)vc animated:(BOOL)animated;
@end

Behind the scenes, the actual implementation holds a weak reference to the parent view controller. On demand it looks up the view controller's navigation controller and pushes a view controller, etc.

We find this hides the actual view controller away from the components, making them more reusable.

from componentkit.

cfcommando avatar cfcommando commented on April 19, 2024

Very enlightening. I had assumed until now that the context was intended mainly as a conduit for data rather than connecting events.

Thanks for the clarity!

from componentkit.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.