Giter Club home page Giter Club logo

transitions-objc's People

Contributors

jverkoey avatar willlarche avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

Forkers

carabina

transitions-objc's Issues

Implement a ViewReplicator API

  • Add a settable replicaControllerDelegate API. Setting this property should assign the delegate to the director's private replicaController instance.

Create the MDMViewControllerTransition type

This is a private API and does not have a spec in the starmap because it is UIKit-specific.

  • Created when a transition begins.
  • Must conform to both UIViewControllerAnimatedTransitioning and UIViewControllerInteractiveTransitioning
  • Must be initialized with an instance of a MDMTransitionDirector, the initial transition direction (to the left/to the right).

Transition object needs to clear its state in the controller

The controller holds onto a reference of the transition but never releases it. It should release the transition instance when the transition completes.

The transition should provide a delegate that the controller can assign itself to in order to receive a "didFinish" event. The controller should nil out the transition instance when this event is received.

Implement UIViewControllerTransitioningDelegate methods in MDMTransitionController

- (id<UIViewControllerAnimatedTransitioning>)animationControllerForPresentedController:(UIViewController *)presented
                                                                  presentingController:(UIViewController *)presenting
                                                                      sourceController:(UIViewController *)source;

Must return an instance that conforms to UIViewControllerAnimatedTransitioning. This instance should be a separate bridging object that creates the scheduler and director instances and coordinates their overall execution.

- (id<UIViewControllerAnimatedTransitioning>)animationControllerForDismissedController:(UIViewController *)dismissed;

Similar to the above, but requires a bit of shenanigans to infer the sourceViewController.

- (id<UIViewControllerInteractiveTransitioning>)interactionControllerForPresentation:(id<UIViewControllerAnimatedTransitioning>)animator;

If we're driving this transition, the interaction controller is always the animator instance we returned in the first method.

- (id<UIViewControllerInteractiveTransitioning>)interactionControllerForDismissal:(id<UIViewControllerAnimatedTransitioning>)animator;

If we're driving this transition, the interaction controller is always the animator instance we returned in the first method.

Should only be returning an interaction controller if we intend to be interactive

We currently always treat every transition as an interactive transition. This is somewhat against the intended use of UIKit's transitioning APIs.

What we should be doing is acting as an interactive transition if there is some indication that the transition is, in fact, interactive. One signal we can use to start is whether any gesture recognizers associated with the transition are active.

Until we start working on interactive transitions support (Milestone 2) we may want to consider simplifying the transition controller logic to only implement the animated API variants.

Provide a simple "slide in" transition example

Blocked by #2, #3.

This transition should be a simple TransitionDirector instance.

Only one plan should be registered: the right view controller "shifting up" during presentation.

  • Create an MDMSlideTransitionDirector class.
  • Implement the slide transition using the CoreAnimation motion family.

This transition should support any direction of sliding when being presented.

Transitions must set their internal delegate

They are not, currently. This means the transition controller has no way of knowing when the transition has completed. As a result, the activeTransition object is held for much longer than it needs to be.

Create a TransitionController type

Spec: https://material-motion.gitbooks.io/material-motion-starmap/content/specifications/transition_controller.html

This controller publicly conforms to UIViewControllerTransitioningDelegate.

Example use:

viewController.mdm_transitionController.directorClass = [PhotoDirector class];

Class prototype:

MDMTransitionController : NSObject <UIViewControllerTransitioningDelegate>

When mdm_transitionController is accessed, an instance of MDMTransitionController should lazily be created and then assigned to the view controller's transitioningDelegate (if one is not already set). This will allow us to hook in to the iOS view controller transitioning APIs.

Add transition controller API for registering gesture recognizer actions

Should be capable of registering gesture recognizers that initiate an action when the gesture recognizer starts.

Example API signature:

typedef NS_ENUM(NSUInteger, MDMTransitionAction) {
  MDMTransitionActionPush,
  MDMTransitionActionPop,
  MDMTransitionActionPresent,
  MDMTransitionActionDismiss
};

- (void)whenGestureRecognizerBegins:(nonnull UIGestureRecognizer *)gestureRecognizer
                      performAction:(MDMTransitionAction)action;

When the gesture recognizer begins the action should be taken, initiating the creation of the relevant Director.

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.