Movement Engineering at Scale. How Airbnb is making use of declarative… | by Cal Stephens | The Airbnb Tech Weblog | Dec, 2022

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 simple and pleasant to make use of. Fluid transitions between states and screens are key for serving to the consumer protect context as they navigate all through a function. Fast prospers of animation make an app come alive, and assist give it a definite character.
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 important to contemplate effectivity and maintainability all through our tech stack–and movement is not any exception. Including animations to a function must be quick and straightforward. The tooling should praise and match naturally with different elements of our function structure. If an animation takes too lengthy to construct or is simply too tough to combine with the general function 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 put up, 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 think about this transition on the Airbnb app’s homepage, which takes customers from search outcomes to an expanded search enter display:
The transition is a key a part of the design, making the whole 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, huge 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 strategy is simple to construct, it has the draw back of tightly coupling these two screens, making them far much less maintainable and moveable.
The opposite strategy is to implement every display 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 advantage of letting every particular person display be constructed as a separate UIViewController such as you would for every other function.
Up to now, we’ve constructed transitions with each of those approaches, and located that they each sometimes require lots of of strains of fragile, crucial code. This meant customized transitions had been time consuming to construct and tough to keep up, in order that they had been sometimes not included as a part of a crew’s fundamental function growth movement.
A typical development has been to maneuver away from this kind 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 structure of every display. Screens are mixed into options and flows utilizing declarative navigation APIs. We’ve discovered these declarative programs unlock substantial productiveness features, by letting engineers give attention to 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, quite than imperatively as we did earlier than. We’ve discovered that this new strategy has made it a lot less complicated to construct customized transitions, and consequently much more engineers have been capable of 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 remaining state (or within the case of a display transition, the supply and vacation spot view controllers) together with a declarative transition definition of how every particular person factor on the display must be animated. The framework’s generic UIViewControllerAnimatedTransitioning implementation handles every little thing else routinely.
This new framework has change 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 simple 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 and the date picker display. Every of the elements we wish to animate are tagged with an identifier to ascertain their identification.
These identifiers allow us to refer to every element semantically by identify, quite than by straight referencing the UIView occasion. For instance, the Discover.searchNavigationBarPill element on every display is a separate UIView occasion, however since they’re tagged with the identical identifier the 2 view cases are thought-about separate “states” of the identical element.
Now that we’ve recognized the elements that we wish 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
- The navigation bar to animate between the primary state and second state (a “shared factor” animation).
We will categorical 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, we wish:
- The background to blur
- The highest bar and backside bars to slip in
- The house display 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, but it surely solely tells half the story. To truly carry out the animation, our framework offers 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, and types an identifier hierarchy (very similar to the view hierarchy of a display).
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 an alternative performs a “shared factor animation” the place the element animates from its preliminary place to its remaining 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 nicely.
To truly carry out these animations, we’d like a single view hierarchy that matches the construction of our identifier hierarchy. We will’t simply mix the supply and vacation spot screens right into a single view hierarchy by layering them on prime of one another, as a result of the ordering can be improper. On this case, if we simply positioned the vacation spot display over the supply display then the supply Discover.searchNavigationBarPill view can be under the vacation spot BottomSheet.backgroundView factor, which doesn’t match the identifier hierarchy.
As a substitute, we’ve to create a separate view hierarchy that matches the construction of the identifier hierarchy. This requires making copies of the elements 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 quickly conceal the “unique view” whereas the animation is taking part in, so solely the snapshot is seen.
As soon as the framework has arrange the transition container’s view hierarchy and decided the precise animation to make use of for every element, the animations simply should 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 give attention to the what quite than the how. The declarative transition definition for these animations are just a few strains 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 current options with out making any structure modifications. This considerably accelerates function growth, 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 lively work is enhancing 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 comparable frameworks obtainable on internet and Android. Our long-term purpose right here is to make it as simple as attainable to translate our designer’s nice concepts into precise transport merchandise, on all platforms.
Taken with working at Airbnb? Take a look at 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.