Building a Mobile Chat App Using Realm – The New and Easier Way
Andrew Morgan22 min read • Published Feb 17, 2022 • Updated Jul 18, 2023
FULL APPLICATION
In my last post, I walked through how to integrate Realm into a mobile chat app in Building a Mobile Chat App Using Realm – Integrating Realm into Your App. Since then, the Realm engineering team has been busy, and Realm-Swift 10.6 introduced new features that make the SDK way more "SwiftUI-native." For developers, that makes integrating Realm into SwiftUI views much simpler and more robust. This article steps through building the same chat app using these new features. Everything in Building a Mobile Chat App Using Realm – Integrating Realm into Your App still works, and it's the best starting point if you're building an app with UIKit rather than SwiftUI.
Both of these articles follow-up on Building a Mobile Chat App Using Realm – Data Architecture. Read that post first if you want to understand the Realm data/partitioning architecture and the decisions behind it.
This article targets developers looking to build the Realm mobile database into their SwiftUI mobile apps and use MongoDB Atlas Device Sync.
If you've already read Building a Mobile Chat App Using Realm – Integrating Realm into Your App, then you'll find some parts unchanged here. As an example, there are no changes to the backend Realm application. I'll label those sections with "Unchanged" so that you know it's safe to skip over them.
RChat is a chat application. Members of a chat room share messages, photos, location, and presence information with each other. This version is an iOS (Swift and SwiftUI) app, but we will use the same data model and backend Realm application to build an Android version in the future.
If you're looking to add a chat feature to your mobile app, you can repurpose the article's code and the associated repo. If not, treat it as a case study that explains the reasoning behind the data model and partitioning/syncing decisions taken. You'll likely need to make similar design choices in your apps.
Watch this demo of the app in action.
This article was updated in July 2021 to replace
objc
and dynamic
with the @Persisted
annotation that was introduced in Realm-Cocoa 10.10.0.If you want to build and run the app for yourself, this is what you'll need:
- iOS14.2+
- XCode 12.3+
- Realm-Swift 10.6+ (recommended to use the Swift Package Manager (SPM) rather than Cocoa Pods)
- MongoDB Atlas account and a (free) Atlas cluster
The iOS app uses MongoDB Atlas Device Sync to share data between instances of the app (e.g., the messages sent between users). This walkthrough covers both the iOS code and the backend Realm app needed to make it work. Remember that all of the code for the final app is available in the GitHub repo.
From the Atlas UI, select the "App Services" tab (formerly "Realm"). Select the options to indicate that you're creating a new iOS mobile app and then click "Start a New App".
Name the app "RChat" and click "Create Application".
Copy the "App ID." You'll need to use this in your iOS app code:
The SwiftUI entry point for the app is RChatApp.swift. This is where you define your link to your Realm application (named
app
) using the App ID from your new backend Atlas App Services app:Note that we created an instance of AppState and pass it into our top-level view (ContentView) as an
environmentObject
. This is a common SwiftUI pattern for making state information available to every view without the need to explicitly pass it down every level of the view hierarchy:These are largely as described in Building a Mobile Chat App Using Realm – Data Architecture. I'll highlight some of the key changes using the User Object class as an example:
User
now conforms to Realm-Cocoa's ObjectKeyIdentifiable
protocol, automatically adding identifiers to each instance that are used by SwiftUI (e.g., when iterating over results in a ForEach
loop). It's like Identifiable
but integrated into Realm to handle events such as Atlas Device Sync adding a new object to a result set or list.conversations
is now a var
rather than a let
, allowing us to append new items to the list.The
AppState
class is so much simpler now. Wherever possible, the opening of a Realm is now handled when opening the view that needs it.Views can pass state up and down the hierarchy. However, it can simplify state management by making some state available application-wide. In this app, we centralize this app-wide state data storage and control in an instance of the AppState class.
As part of adopting the latest Realm-Cocoa SDK feature, I no longer need to store open Realms in
AppState
(as Realms are now opened as part of loading the view that needs them). AppState
contains the user
attribute to represent the user currently logged into the app (and Realm). If user
is set to nil
, then no user is logged in:The app uses the Realm SDK to interact with the back end Atlas App Services application to perform actions such as logging into Realm. Those operations can take some time as they involve accessing resources over the internet, and so we don't want the app to sit busy-waiting for a response. Instead, we use Combine publishers and subscribers to handle these events.
loginPublisher
, logoutPublisher
, and userRealmPublisher
are publishers to handle logging in, logging out, and opening Realms for a user:When an
AppState
class is instantiated, the actions are assigned to each of the Combine publishers:We'll later see that an event is sent to
loginPublisher
when a user has successfully logged in. In AppState
, we define what should be done when those events are received. Events received on loginPublisher
trigger the opening of a realm with the partition set to user=<id of the user>
, which in turn sends an event to userRealmPublisher
:When the Realm has been opened and the Realm sent to
userRealmPublisher
, user
is initialized with the User
object retrieved from the Realm. The user's presence is set to onLine
:After logging out of Realm, we simply set
user
to nil:After seeing what happens after a user has logged into Realm, we need to circle back and enable email/password authentication in the backend Atlas App Services app. Fortunately, it's straightforward to do.
From the Atlas UI, select "Authentication" from the lefthand menu, followed by "Authentication Providers." Click the "Edit" button for "Email/Password":
Enable the provider and select "Automatically confirm users" and "Run a password reset function." Select "New function" and save without making any edits:
Don't forget to click on "REVIEW & DEPLOY" whenever you've made a change to the backend Realm app.
When a new user registers, we need to create a
User
document in Atlas that will eventually synchronize with a User
object in the iOS app. Atlas provides authentication triggers that can automate this.Select "Triggers" and then click on "Add a Trigger":
Set the "Trigger Type" to "Authentication," provide a name, set the "Action Type" to "Create" (user registration), set the "Event Type" to "Function," and then select "New Function":
Name the function
createNewUserDocument
and add the code for the function:Note that we set the
partition
to user=<id of the user>
, which matches the partition used when the iOS app opens the User Realm."Save" then "REVIEW & DEPLOY."
Refer to Building a Mobile Chat App Using Realm – Data Architecture to better understand the app's schema and partitioning rules. This article skips the analysis phase and just configures the schema.
Browse to the "Rules" section in the App Services UI and click on "Add Collection." Set "Database Name" to
RChat
and "Collection Name" to User
. We won't be accessing the User
collection directly through App Services, so don't select a "Permissions Template." Click "Add Collection":At this point, I'll stop reminding you to click "REVIEW & DEPLOY!"
Select "Schema," paste in this schema, and then click "SAVE":
Repeat for the
Chatster
schema:And for the
ChatMessage
collection:We use Atlas Device Sync to synchronize objects between instances of the iOS app (and we'll extend this app also to include Android). It also syncs those objects with Atlas collections. Note that there are three options to create a schema:
- Manually code the schema as a JSON schema document.
- Derive the schema from existing data stored in Atlas. (We don't yet have any data and so this isn't an option here.)
- Derive the schema from the Realm objects used in the mobile app.
We've already specified the schema and so will stick to the first option.
Select "Sync" and then select your Atlas cluster. Set the "Partition Key" to the
partition
attribute (it appears in the list as it's already in the schema for all three collections), and the rules for whether a user can sync with a given partition:The "Read" rule controls whether a user can establish a one-way read-only sync relationship to the mobile app for a given user and partition. In this case, the rule delegates this to an Atlas Function named
canReadPartition
:The "Write" rule delegates to the
canWritePartition
:Once more, we've already seen those functions in Building a Mobile Chat App Using Realm – Data Architecture but I'll include the code here for completeness.
To create these functions, select "Functions" and click "Create New Function." Make sure you type the function name precisely, set "Authentication" to "System," and turn on the "Private" switch (which means it can't be called directly from external services such as our mobile app):
As described in Building a Mobile Chat App Using Realm – Data Architecture, there are relationships between different
User
and Chatster
documents. Now that we've defined the schemas and enabled Device Sync, it's convenient to add the Atlas Function and Trigger to maintain those relationships.Create a Function named
userDocWrittenTo
, set "Authentication" to "System," and make it private. This article is aiming to focus on the iOS app more than the backend app, and so we won't delve into this code:Set up a database trigger to execute the new function whenever anything in the
User
collection changes:This section is virtually unchanged. As part of using the new Realm SDK features, there is now less in
AppState
(including fewer publishers), and so less attributes need to be set up as part of the login process.We've now created enough of the backend app that mobile apps can now register new Realm users and use them to log into the app.
The app's top-level SwiftUI view is ContentView, which decides which sub-view to show based on whether our
AppState
environment object indicates that a user is logged in or not:When first run, no user is logged in, and so
LoginView
is displayed.Note that
AppState.loggedIn
checks whether a user is currently logged into the Realm app
:The UI for LoginView contains cells to provide the user's email address and password, a radio button to indicate whether this is a new user, and a button to register or log in a user:
Clicking the button executes one of two functions:
signup
makes an asynchronous call to the Realm SDK to register the new user. Through a Combine pipeline, signup
receives an event when the registration completes, which triggers it to invoke the login
function:The
login
function uses the Realm SDK to log in the user asynchronously. If/when the Realm login succeeds, the Combine pipeline sends the Realm user to the chatsterLoginPublisher
and loginPublisher
publishers (recall that we've seen how those are handled within the AppState
class):On being logged in for the first time, the user is presented with SetProfileView. (They can also return here later by clicking on their avatar.) This is a SwiftUI sheet where the user can set their profile and preferences by interacting with the UI and then clicking "Save User Profile":
When the view loads, the UI is populated with any existing profile information found in the
User
object in the AppState
environment object:As the user updates the UI elements, the Realm
User
object isn't changed. It's not until they click "Save User Profile" that we update the User
object. state.user
is an object that's being managed by Realm, and so it must be updated within a Realm transaction. Using one of the new Realm SDK features, the Realm for this user's partition is made available in SetProfileView
by injecting it into the environment from ContentView
:SetProfileView
receives userRealm
through the environment and uses it to create a transaction (line 10):Once saved to the local Realm, Device Sync copies changes made to the
User
object to the associated User
document in Atlas.Once the user has logged in and set up their profile information, they're presented with the
ConversationListView
. Again, we use the new SDK feature to implicitly open the Realm for this user partition and pass it through the environment from ContentView
:ConversationListView receives the Realm through the environment and then uses another new Realm SDK feature (
@ObservedResults
) to set users
to be a live result set of all User
objects in the partition (as each user has their own partition, there will be exactly one User
document in users
):ConversationListView displays a list of all the conversations that the user is currently a member of (initially none) by looping over
conversations
within their User
Realm object:At any time, another user can include you in a new group conversation. This view needs to reflect those changes as they happen:
When the other user adds us to a conversation, our
User
document is updated automatically through the magic of Atlas Device Sync and our Atlas Trigger. Prior to Realm-Cocoa 10.6, we needed to observe the Realm and trick SwiftUI into refreshing the view when changes were received. The Realm/SwiftUI integration now refreshes the view automatically.When you click in the new conversation button in
ConversationListView
, a SwiftUI sheet is activated to host NewConversationView
. This time, we implicitly open and pass in the Chatster
Realm (for the universal partition all-users=all-the-users
:NewConversationView creates a live Realm result set (
chatsters
) from the Realm passed through the environment:NewConversationView
is similar to SetProfileView.
in that it lets the user provide a number of details which are then saved to Realm when the "Save" button is tapped.In order to use the "Realm injection" approach, we now need to delegate the saving of the
User
object to another view (NewConversationView
received the Chatster
Realm but the updated User
object needs be saved in a transaction for the User
Realm):Something that we haven't covered yet is applying a filter to the live Realm search results. Here we filter on the
userName
within the Chatster objects:When the status of a conversation changes (users go online/offline or new messages are received), the card displaying the conversation details should update.
We already have a Function to set the
presence
status in Chatster
documents/objects when users log on or off. All Chatster
objects are readable by all users, and so ConversationCardContentsView can already take advantage of that information.The
conversation.unreadCount
is part of the User
object, and so we need another Atlas Trigger to update that whenever a new chat message is posted to a conversation.We add a new Atlas Function
chatMessageChange
that's configured as private and with "System" authentication (just like our other functions). This is the function code that will increment the unreadCount
for all User
documents for members of the conversation:That function should be invoked by a new database trigger (
ChatMessageChange
) to fire whenever a document is inserted into the RChat.ChatMessage
collection.ChatRoomView has a lot of similarities with
ConversationListView
, but with one fundamental difference. Each conversation/chat room has its own partition, and so when opening a conversation, you need to open a new Realm. Again, we use the new SDK feature to open and pass in the Realm for the appropriate conversation partition:If you worked through Building a Mobile Chat App Using Realm – Integrating Realm into Your App, then you may have noticed that I had to introduce an extra view layer—
ChatRoomBubblesView
—in order to open the Conversation Realm. This is because you can only pass in a single Realm through the environment, and ChatRoomView
needed the User Realm. On the plus side, we no longer need all of the boilerplate code to open the Realm from the view's onApppear
method explicitly.ChatRoomBubblesView sorts the Realm result set by timestamp (we want the most recent chat message to appear at the bottom of the List):
The Realm/SwiftUI integration means that the UI will automatically refresh whenever a new chat message is added to the Realm, but I also want to scroll to the bottom of the list so that the latest message is visible. We can achieve this by monitoring the Realm. Note that we only open a
Conversation
Realm when the user opens the associated view because having too many realms open concurrently can exhaust resources. It's also important that we stop observing the Realm by setting it to nil
when leaving the view:Note that we clear the notification token when leaving the view, ensuring that resources aren't wasted.
To send a message, all the app needs to do is to add the new chat message to Realm. Atlas Device Sync will then copy it to Atlas, where it is then synced to the other users. Note that we no longer need to explicitly open a Realm transaction to append the new chat message to the Realm that was received through the environment:
Since the release of Building a Mobile Chat App Using Realm – Integrating Realm into Your App, Realm-Swift 10.6 added new features that make working with Realm and SwiftUI simpler. Simply by passing the Realm configuration through the environment, the Realm is opened and made available to the view, and that view can go on to make updates without explicitly starting a transaction. This article has shown how those new features can be used to simplify your code. It has gone through the key steps you need to take when building a mobile app using Realm, including:
- Managing the user lifecycle: registering, authenticating, logging in, and logging out.
- Managing and storing user profile information.
- Adding objects to Realm.
- Performing searches on Realm data.
- Syncing data between your mobile apps and with MongoDB Atlas.
- Reacting to data changes synced from other devices.
- Adding some backend magic using Atlas Triggers and Functions.
We've skipped a lot of code and functionality in this article, and it's worth looking through the rest of the app to see how to use features such as these from a SwiftUI iOS app:
- Location data
- Maps
- Camera and photo library
- Actions when minimizing your app
- Notifications
We wrote the iOS version of the app first, but we plan on adding an Android (Kotlin) version soon—keep checking the developer hub and the repo for updates.
- Read Building a Mobile Chat App Using Realm – Data Architecture to understand the data model and partitioning strategy behind the RChat app
- Read Building a Mobile Chat App Using Realm – Integrating Realm into Your App if you want to know how to build Realm into your app without using the new SwiftUI featured in Realm-Cocoa 10.6 (for example, if you need to use UIKit)
- If you're building your first SwiftUI/Realm app, then check out Build Your First iOS Mobile App Using Realm, SwiftUI, & Combine
If you have questions, please head to our developer community website where the MongoDB engineers and the MongoDB community will help you build your next big idea with MongoDB.