Atlas is a lightweight, flexible set of user interface components designed to enable developers to quickly and easily integrate native communications experiences into their applications. It was designed and built from the ground up to integrate with LayerKit, the native iOS SDK for accessing the Layer communications platform. LayerKit provides developers with a simple, object oriented interface to the rich messaging capabilities provided by the Layer platform. Atlas, in turn, provides ready-made UI components that expose these capabilities directly to users.
Atlas provides several complete user interface experiences as well as a large library of individual views. It was designed to address three use cases simulatenously:
- Provide good looking, high quality implementations of familiar messaging experiences out of the box. By default Atlas is styled to look much like iMessage.
- Enable quick and easy branding of the user experience via integration with
UIAppearance
and Interface Builder. All fonts, colors, etc. can be customized via an extensive set ofUIAppearance
selectors. This enables developers to quickly add messaging to an existing application and match the components with the existing style. - Support full customization of the user interface by enabling developers to plug in their own views in any of the experiences. Developers should be able to implement any design while continuing to leverage the scaffolding that is driving the messaging UI's.
Atlas is deeply and directly integrated with LayerKit. This enables maximum integration with the communications API's and keeps the user interface components very clean, simple and lightweight. LayerKit provides three foundational models (Conversations, Messages, and Message Parts) and a querying system for accessing the messaging data. These models and the querying functionality are used to drive the Atlas UI components.
To make it easier to get started with Atlas, we've provided the Atlas Messenger example application. Build instructions accompany the source code on the repository. Alternately, you can check out Atlas within a Layer sandbox of your very own by visiting the Experience Atlas page.
The table below details the most important classes in Atlas and is hyperlinked directly to the current header file. All classes are fully documented.
Controllers | |
---|---|
ATLUIAddressBarController | A controller that provides a searchable address input experience for selecting users to message. |
ATLConversationListViewController | A controller that provides an editable list of all Conversations for the authenticated user. |
ATLConversationViewController | A controller that a scrollable, auto-paginating view of the Messages in a Conversation. |
ATLParticipantTableViewController | A controller that provides a sortable, searchable table view for selecting a set of participants to communicate with. |
ATLTypingIndicatorViewController | A controller that provides a typing indicator view that displays a list of participant names. |
Protocols | |
ATLAvatarItem | A protocol adopted by an object that wishes to represent a user avatar. |
ATLConversationPresenting | A protocol adopted by views that present a Layer Conversation object. |
ATLMessagePresenting | A protocol adopted by views that present a Layer Message object. |
ATLParticipant | A protocol adopted by objects that wish to represent participants in a Converation. |
ATLParticipantPresenting | A protocol adopted by objects that wish to represent participants in a Converation. |
Views | |
ATLMessageInputToolbar | A input toolbar that provides a dynamic sizing message input interface. |
ATLMessageComposeTextView | A flexible, expanding text view with support for text, images and location data. |
Atlas can be installed directly into your application via CocoaPods or by directly importing the source code files. Please note that Atlas has a direct dependency on LayerKit that must be satisfied in order to build the components.
The recommended path for installation is CocoaPods. CocoaPods provides a simple, versioned dependency management system that automates the tedious and error prone aspects of manually configuring libraries and frameworks. You can add Atlas to your project via CocoaPods by doing the following:
$ sudo gem install cocoapods
$ pod setup
Now create a Podfile
in the root of your project directory and add the following:
pod 'Atlas'
Complete the installation by executing:
$ pod install
These instructions will setup your local CocoaPods environment and import Atlas into your project.
If you wish to install Atlas directly into your application from source, then clone the repository and add code and resources to your application:
- Drag and drop the files from the
Code
andResources
directories onto your project, instructing Xcode to copy items into your destination group's folder. - Update your project settings to include the linker flags:
-ObjC -lz
- Add the following Cocoa SDK frameworks to your project:
'CFNetwork', 'Security', 'MobileCoreServices', 'SystemConfiguration', 'CoreLocation'
Build and run your project to verify installation was successful.
- Subclass - Subclass the
ATLConversationViewController
orATLConversationListViewController
- Implement - Both controllers declare delegate and data source protocols. Your subclasses must implement these protocols.
- Customize - The Atlas leverages the
UIAppearance
protocol to allow for effortless customization of components. - Communicate - Use the LayerKit SDK and the Atlas to build compelling messaging applications.
Layer Messages include an arbitrary number of message parts. Each message part is transported with a developer assigned MIME Type. Atlas utilizes MIME Type information to determine how to handle a particular message part. Developers must take care to assign an appropriate MIME Type for the content or else Atlas will be unable to handle it. For convenience, Atlas exports a number of constants for the MIME Types it supports:
NSString *ATLMIMETypeTextPlain; // text/plain
NSString *ATLMIMETypeImagePNG; // image/png
NSString *ATLMIMETypeImageJPEG; // image/jpeg
NSString *ATLMIMETypeLocation; // location
The ATLConversationListViewController
provides a customizable UITableViewController subclass for displaying a list of Layer conversations. Conversations are represented by a Conversation label, the latest message content, and the latest message date. The controller handles fetching and ordering conversation based on the latest message date.
The ATLConversationListViewController
is initialized with a LYRClient object.
ATLConversationListViewController *viewController = [ATLConversationListViewController conversationListViewControllerWithLayerClient:layerClient];
The ATLConverationListViewController
displays ATLConversationTableViewCells
. The cells themselves provide for customization via UIAppearance selectors.
[[ATLConversationTableViewCell appearance] setConversationLabelFont:[UIFont boldSystemFontOfSize:14]];
[[ATLConversationTableViewCell appearance] setConversationLabelColor:[UIColor blackColor]];
The ATLConversationViewController
provides a customizable UICollectionViewController
subclass for displaying individual Layer conversations. The controller is initialized with and LYRClient
object and an LYRConversation
object. It handles fetching, displaying and sending messages via LayerKit. The controller leverages the ATLMessageInputToolbar
object to allow for text and content input.
ATLConverationViewController *viewController = [ATLConversationViewController conversationViewControllerWithConversation:conversation layerClient:self.layerClient];
The ATLConverationViewController
displays both incoming and outgoing flavors of ATLMessageCollectionViewCell
. The cells themselves provide for customization via UIAppearance selectors.
[[ATLOutgoingMessageCollectionViewCell appearance] setMessageTextColor:[UIColor whiteColor]];
[[ATLOutgoingMessageCollectionViewCell appearance] setMessageTextFont:[UIFont systemFontOfSize:14]];
[[ATLOutgoingMessageCollectionViewCell appearance] setBubbleViewColor:[UIColor blueColor]];
The ATLParticipantPickerController
provides a UINavigationController
subclass that displays a list of users conforming to the ATLParticipant
protocol. The controller provides support for sorting and ordering participants based on either first or last name. The controller also provides multi-selection support and an optional selection indicator.
The ATLParticipantPickerController
is initialized with an object conforming to the ATLParticipantPickerDataSource
and a sortType.
ATLParticipantPickerSortType sortType = ATLParticipantPickerControllerSortTypeFirst;
ATLParticipantPickerController *controller = [ATLParticipantPickerController participantPickerWithDataSource:dataSource
sortType:sortType];
The ATLParticipantPickerController
displays ATLParticipantTableViewCells
. The cells themselves provide for customization via UIAppearance selectors.
[[ATLParticipantTableViewCell appearance] setTitleColor:[UIColor blackColor]];
[[ATLParticipantTableViewCell appearance] setTitleFont:[UIFont systemFontOfSize:14]];
The ATLMessageInputToolbar
provides a UIToolbar
subclass that supports text and image input. The toolbar handles auto-resizing itself relative to its content.
The ATLMessageInputToolbar
is initialized with a UIViewController
object and sets itself as the inputAccessoryView of the ViewController. In order to do this, the inputAcccessoryView
property of the view controller must first be re-declared in the implementation file of the view controller class.
self.inputAccessoryView = [ATLMessageInputToolbar inputToolBarWithViewController:self];
Once initialized, the controller manages resizing itself relative to its content, and animation so that it sticks to the top of the keyboard.
While the Atlas does provide highly customizable TableView and CollectionView cells, advanced customization of the UI components can be done by implementing custom cells and setting the component's cellClass
property. The Atlas component CollectionView and TableView Cells share a common Presenter pattern where each cell displayed in a Component conforms to a specific presenter protocol. If you would like to swap out the default cells for cells that you build, this can easily accomplished via implementing cells that conform to the presenter patterns and setting the cellClass
property of the controller.
The presenters are ATLParticipantPresenting
, ATLConversationPresenting
, and ATLMessagePresenting
.
Atlas is an Open Source project maintained by Layer. Feedback and contributions are always welcome and the maintainers try to process patches as quickly as possible. Feel free to open up a Pull Request or Issue on Github.
Atlas is licensed under the terms of the Apache License, version 2.0. Please see the LICENSE file for full details.
Atlas was developed in San Francisco by the Layer team. If you have any technical questions or concerns about this project feel free to reach out to Layer Support.