
How Airbnb is making use of declarative design patterns to quickly construct fluid transition animations
By: Cal Stephens
Movement is a key a part of what makes a digital expertise each straightforward and pleasant to make use of. Fluid transitions between states and screens are key for serving to the person protect context as they navigate all through a characteristic. Fast prospers of animation make an app come alive, and assist give it a definite persona.
At Airbnb we launch lots of of options and experiments which were developed by engineers throughout many groups. When constructing at this scale, it’s vital to think about effectivity and maintainability all through our tech stack–and movement isn’t any exception. Including animations to a characteristic must be quick and simple. The tooling should praise and match naturally with different parts of our characteristic structure. If an animation takes too lengthy to construct or is simply too tough to combine with the general characteristic structure, then it’s usually the primary a part of a product expertise that will get dropped when translating from design to implementation.
On this publish, we’ll talk about a brand new framework for iOS that we’ve created to assist make this imaginative and prescient a actuality.
Let’s take into account this transition on the Airbnb app’s homepage, which takes customers from search outcomes to an expanded search enter display screen:
The transition is a key a part of the design, making your entire search expertise really feel cohesive and light-weight.
Inside conventional UIKit patterns, there are two methods to construct a transition like this. One is to create a single, large view controller that accommodates each the search outcomes and the search enter screens, and orchestrates a transition between the 2 states utilizing crucial UIView animation blocks. Whereas this method is simple to construct, it has the draw back of tightly coupling these two screens, making them far much less maintainable and transportable.
The opposite method is to implement every display screen as a separate view controller, and create a bespoke UIViewControllerAnimatedTransitioning implementation that extracts related views from every view hierarchy after which animates them. That is sometimes extra sophisticated to implement, however has the important thing good thing about letting every particular person display screen be constructed as a separate UIViewController such as you would for every other characteristic.
Prior to now, we’ve constructed transitions with each of those approaches, and located that they each sometimes require lots of of traces of fragile, crucial code. This meant customized transitions had been time consuming to construct and tough to take care of, in order that they had been sometimes not included as a part of a crew’s foremost characteristic improvement movement.
A standard pattern has been to maneuver away from this type of crucial system design and in direction of declarative patterns. We use declarative programs extensively at Airbnb–we leverage frameworks like Epoxy and SwiftUI to declaratively outline the format of every display screen. Screens are mixed into options and flows utilizing declarative navigation APIs. We’ve discovered these declarative programs unlock substantial productiveness good points, by letting engineers concentrate on defining how the app ought to behave and abstracting away the complicated underlying implementation particulars.
To simplify and speed-up the method of including transitions to our app, we’ve created a new framework for constructing transitions declaratively, reasonably than imperatively as we did earlier than. We’ve discovered that this new method has made it a lot less complicated to construct customized transitions, and in consequence much more engineers have been in a position to simply add wealthy and pleasant transitions to their screens even on tight timelines.
To carry out a transition with this framework, you merely present the preliminary state and last state (or within the case of a display screen transition, the supply and vacation spot view controllers) together with a declarative transition definition of how every particular person component on the display screen must be animated. The framework’s generic UIViewControllerAnimatedTransitioning implementation handles every thing else robotically.
This new framework has turn into instrumental to how we construct options. It powers lots of the new options included in Airbnb’s 2022 Summer Release and 2022 Winter Release, serving to make them straightforward and pleasant to make use of:
As an introduction, let’s begin with a instance. Right here’s a easy “search” interplay the place a date picker in a backside sheet slides up over a web page of content material:
On this instance, there are two separate view controllers: the search outcomes display screen and the date picker display screen. Every of the parts we need to animate are tagged with an identifier to ascertain their identification.
These identifiers allow us to refer to every element semantically by identify, reasonably than by straight referencing the UIView occasion. For instance, the Discover.searchNavigationBarPill element on every display screen is a separate UIView occasion, however since they’re tagged with the identical identifier the 2 view situations are thought of separate “states” of the identical element.
Now that we’ve recognized the parts that we need to animate, we will outline how they need to animate. For this transition we wish:
- The background to fade in
- The underside sheet to slip up from the underside of the display screen
- The navigation bar to animate between the primary state and second state (a “shared component” animation).
We are able to specific this as a easy transition definition:
let transitionDefinition: TransitionDefinition = [
BottomSheet.backgroundView: .crossfade,
BottomSheet.foregroundView: .edgeTranslation(.bottom),
Explore.searchNavigationBarPill: .sharedElement,
]
Revisiting the instance above for increasing and collapsing the search enter display screen, we wish:
- The background to blur
- The highest bar and backside bars to slip in
- The house display screen search bar to transition into the “the place are you going?” card
- The opposite two search playing cards to fade in whereas staying anchored relative to the “the place are you going? card
Right here’s how that animation is outlined utilizing the declarative transition definition syntax:
let transitionDefinition: TransitionDefinition = [
SearchInput.background: .blur,
SearchInput.topBar: .translateY(-40),
SearchInput.bottomBar: .edgeTranslation(.bottom),SearchInput.whereCard: .sharedElement,
SearchInput.whereCardContent: .crossfade,
SearchInput.searchInput: .crossfade,
SearchInput.whenCard: .anchorTranslation(relativeTo: SearchInput.whereCard),
SearchInput.whoCard: .anchorTranslation(relativeTo: SearchInput.whereCard),
]
This declarative transition definition API is highly effective and versatile, nevertheless it solely tells half the story. To truly carry out the animation, our framework gives a generic UIViewControllerAnimatedTransitioning implementation that takes the transition definition and orchestrates the transition animation. To discover how this implementation works, we’ll return to the easy “search” interplay.
First, the framework traverses the view hierarchy of each the supply and vacation spot screens to extract the UIView for every of the identifiers being animated. This determines whether or not or not a given identifier is current on every display screen, and kinds an identifier hierarchy (very like the view hierarchy of a display screen).
The identifier hierarchies of the supply and vacation spot are diffed to find out whether or not a person element was added, eliminated, or current in each. If the view was added or eliminated, the framework will use the animation specified within the transition definition. If the view was current in each states, the framework as a substitute performs a “shared component animation” the place the element animates from its preliminary place to its last place whereas its content material is up to date. These shared parts are animated recursively–every element can present its personal identifier hierarchy of kid parts, which is diffed and animated as effectively.
To truly carry out these animations, we’d like a single view hierarchy that matches the construction of our identifier hierarchy. We are able to’t simply mix the supply and vacation spot screens right into a single view hierarchy by layering them on high of one another, as a result of the ordering could be incorrect. On this case, if we simply positioned the vacation spot display screen over the supply display screen then the supply Discover.searchNavigationBarPill view could be under the vacation spot BottomSheet.backgroundView component, which doesn’t match the identifier hierarchy.
As an alternative, we now have to create a separate view hierarchy that matches the construction of the identifier hierarchy. This requires making copies of the parts being animated and including them to the UIKit transition container. Most UIViews aren’t trivially copyable, so copies are sometimes made by “snapshotting” the view (rendering it as a picture). We briefly cover the “authentic view” whereas the animation is enjoying, so solely the snapshot is seen.
As soon as the framework has arrange the transition container’s view hierarchy and decided the particular animation to make use of for every element, the animations simply need to be utilized and performed. That is the place the underlying crucial UIView animations are carried out.
Like with Epoxy and different declarative programs, abstracting away the underlying complexity and offering a easy declarative interface makes it attainable for engineers to concentrate on the what reasonably than the how. The declarative transition definition for these animations are just a few traces of code, which is by itself a big enchancment over any possible crucial implementation. And since our declarative feature-building APIs have first-class assist for UIKit UIViewControllerAnimatedTransitioning implementations, these declarative transitions might be built-in into present options with out making any structure modifications. This considerably accelerates characteristic improvement, making it simpler than ever to create extremely polished transitions, whereas additionally enabling long-term flexibility and maintainability.
We have now a packed roadmap forward. One space of energetic work is bettering interoperability with SwiftUI. This lets us seamlessly transition between UIKit and SwiftUI-based screens, which unlocks incremental adoption of SwiftUI in our app with out having to sacrifice movement. We’re additionally exploring making related frameworks obtainable on internet and Android. Our long-term objective right here is to make it as straightforward as attainable to translate our designer’s nice concepts into precise transport merchandise, on all platforms.
Occupied with working at Airbnb? Try these open roles:
Staff Software Engineer, Wishlists
Staff Software Engineer, Guests & Hosts
Staff Android Software Engineer, Guest
Many because of Eric Horacek and Matthew Cheok for his or her main contributions to Airbnb’s movement structure and our declarative transition framework.