How Do We Use React Native at Mattermost. Architecture and Design

This ad is not shown to multipass and full ticket holders
React Summit US
React Summit US 2026
November 17 - 20, 2026
New York, US & Online
Upcoming event
React Summit US 2026
React Summit US 2026
November 17 - 20, 2026. New York, US & Online
Bookmark
Slides
Rate this content
Sentry
Promoted
Code breaks, fix it faster

Crashes, slowdowns, regressions in prod. Seer by Sentry unifies traces, replays, errors, profiles to find root causes fast.

Get started

At Mattermost we use React Native for our app. It is a fairly complex project with more than 100.000 lines of code, with plenty of challenges, like performance, reliability or offline support.
This talk will cover some of those challenges and several design decisions we have made so far to address them, along some other decisions to keep the code base readable and navigable.

This talk has been presented at React Day Berlin 2023, check out the latest edition of this React Conference.

FAQ

Mattermost is an open-source alternative to Slack and Microsoft Teams. It is a chat application with a mobile app written in React Native.

Daniel Espino-Garcia is a software design engineer at Mattermost who gave a talk about using React Native at Mattermost.

You can contact Daniel Espino-Garcia by dropping by the office at the Mattermost community server.

Mattermost uses React Native for its mobile app because it allows for a single codebase that works on both iOS and Android, and it uses JavaScript, which is consistent with the rest of Mattermost's frontend stack.

Mattermost faced challenges such as support for multi-server, data isolation, and offline support. These challenges led to a complete overhaul of the app with a new architecture and interface.

Mattermost initially used Redux for state management but switched to WatermelonDB to handle large states, offline support, and multi-server scalability. WatermelonDB stores the state in a SQL-like database and uses RxJS for reactivity.

Mattermost uses TypeScript for type safety, organizes components functionally, follows specific coding rules and component order, and uses custom hooks to reduce boilerplate and complexity.

Yes, the Mattermost mobile app is open source, and its complete code is available on GitHub.

Mattermost has implemented custom native features such as EMM for session separation, improved text input handling, custom logging, and id-loaded notifications for push notifications to address data residency concerns.

WatermelonDB is a database solution that stores state in a SQL-like database, allowing for scalable state management without loading the entire state into memory. Mattermost chose it for its scalability, offline support, and multi-server capabilities.

Daniel Espino García
Daniel Espino García
18 min
12 Dec, 2023

Comments

Sign in or register to post your comment.
Video Summary and Transcription
The video explains the use of React Native at Mattermost, highlighting its advantage of enabling a single codebase for both iOS and Android, which is consistent with their JavaScript stack. TypeScript is used to enhance type safety and simplify large project management. The architecture involves folder organization and coding rules, with components following a specific order for props, styles, and hooks. State management initially relied on Redux but shifted to WatermelonDB, which provides scalability for multi-server support and offline capabilities. Custom hooks in React Native are utilized to reduce boilerplate, handle actions like the back button on Android, and manage context changes such as theme modifications. Native features have been developed for session management, text input improvements, and logging. Challenges faced included multi-server support and data isolation, leading to a code overhaul. The app is open source, inviting community contributions. WatermelonDB was chosen for its scalable state management, although it presents a learning curve due to RxJS.

1. Introduction to React Native at Mattermost

Short description:

Today's talk is about how we use React Native at Mattermost. I'll provide disclaimers and explain what Mattermost is. Our React Native app is a chat app with over 100,000 lines of code. We recently overhauled the app with a new architecture, interface, and revised code.

Welcome, everyone. Today I'm here to talk about how do we use React Native at Mattermost. My name is Daniel Espino-Garcia, and I am a software design engineer at Mattermost. If you want to contact me, feel free to drop by the office at Mattermost community server.

First of all, I want to give you some disclaimers about today's talk. What I'm going to talk, is the best solution for any project? No, of course not. Each project is different. Then is there a solution for your project? Depends on your project, but still probably not. My hope is that this talk can spark ideas that you can use in your projects. Is this the best solution for our project? I hope so, but probably not. We are not perfect. We haven't assessed all the possibilities. Every day we learn something new, and every now and then, a new technology appears. This is just what we have tried so far, and worked for us. If you think anything can be improved, please come by the office and let me know. We are always happy to do things better.

With that out of the way, let's start. Here is the agenda for today. So, just to be traditional, let's start with the first point. Why this talk? Let's start explaining what is Mattermost. Maybe just looking at the image you get a good idea of what Mattermost is, but a part of a long definition in our website, we can get a more mundane description. An open source alternative to Slack and Microsoft Teams. This is much more than that, but that gives a broad idea of the basics. And of course, we have a mobile app written in React Native. So, great, Mattermost is a chat app. What makes it interesting to talk about? Well, first of all, the React Native app has a decent size. More than 100,000 lines of code. And so, we have recently done a complete overhaul of the app. The first version was facing some challenges, and we remade the app. New architecture, new interface, and the most of the code, revised and rewritten.

2. React Native Challenges and Benefits

Short description:

We face challenges with multi-server support, data isolation, and offline support. The codebase is open for community contributions. React Native allows writing single code for iOS and Android, and tweaking the app on the native side. It's popular, with an active community. We use React Native because it uses React and fits our stack.

And we believe there's a lot to learn from that. But there are also several challenges that we hope to make the process interesting. One of the biggest ones is support for multi-server. Working with multiple versions, Mattermost is self-managed, but the app is distributed through the stores, so the app must be backwards-compatible. And with multiple servers, the data isolation becomes a huge challenge. You don't want a message meant for a family server and an in-your-works server.

And our big challenge is offline support. People don't expect to receive messages when they're on a plane, but they for sure expect to check the previous messages. And the codebase is open for community contributions, so it is even more important that new eyes are able to understand the code well. Because yes, most of the code is open source and that includes the mobile app! The complete code of the mobile app is in GitHub, so everything I will talk about today is something you can check directly in the code, learn a bit more about it, and even tinker with it, be it in your own fork, or contributing upstream. I hope these are enough reasons to stay on this talk.

Now let's talk about the basis. Here we will cover some general decisions on the project. For example, where are we using React Native? Let me start with what is React Native. You have the official description, but it can be crudely summarized to React Mobile. One of the main advantages, as many other frameworks, is that allows you to write single code that works on iOS and Android. It also allows you to tweak and extend your app on the native side. You need a super-specific native feature for your app? You can dive in the native code and create it. Another important thing is that it's pretty popular, and the community is quite active. Most of your answers are one Google search away. And finally, this will be important later, React Native is written in JavaScript.

And why do we use React Native on Matrimons? Let's see our stack. If we look at the backend, the server code is written in Golang. But on the front side, the browser code is written on React, which uses JavaScript. The desktop app uses Electron and React, that again uses JavaScript. And the mobile app uses React Native, which uses JavaScript. You may see already a pattern. I could talk about alternatives with pure Native or Flutter, but it all boils down to one big reason. Because it uses React. React Native has many other great things that pass up on this.

Check out more articles and videos

We constantly think of articles and videos that might spark Git people interest / skill us up or help building a stellar career

Raising the Bar: Our Journey Making React Native a Preferred Choice
React Advanced 2023React Advanced 2023
29 min
Raising the Bar: Our Journey Making React Native a Preferred Choice
This Talk discusses Rack Native at Microsoft and the efforts to improve code integration, developer experience, and leadership goals. The goal is to extend Rack Native to any app, utilize web code, and increase developer velocity. Implementing web APIs for React Native is being explored, as well as collaboration with Meta. The ultimate aim is to make web code into universal code and enable developers to write code once and have it work on all platforms.
Opensource Documentation—Tales from React and React Native
React Finland 2021React Finland 2021
27 min
Opensource Documentation—Tales from React and React Native
Documentation is often your community's first point of contact with your project and their daily companion at work. So why is documentation the last thing that gets done, and how can we do it better? This talk shares how important documentation is for React and React Native and how you can invest in or contribute to making your favourite project's docs to build a thriving community
Bringing React Server Components to React Native
React Day Berlin 2023React Day Berlin 2023
29 min
Bringing React Server Components to React Native
Top Content
React Server Components (RSC) offer a more accessible approach within the React model, addressing challenges like big initial bundle size and unnecessary data over the network. RSC can benefit React Native development by adding a new server layer and enabling faster requests. They also allow for faster publishing of changes in mobile apps and can be integrated into federated super apps. However, implementing RSC in mobile apps requires careful consideration of offline-first apps, caching, and Apple's review process.
React Native Kotlin Multiplatform Toolkit
React Day Berlin 2022React Day Berlin 2022
26 min
React Native Kotlin Multiplatform Toolkit
Top Content
The Talk discusses the combination of React Native and Kotlin Multiplatform for cross-platform app development. Challenges with native modules in React Native are addressed, and the potential improvements of using Kotlin Multiplatform Mobile are explored. The integration of Kotlin Multiplatform with React Native streamlines native implementation and eliminates boilerplate code. Questions about architecture and compatibility, as well as the possibility of supporting React Native Web, are discussed. The React Native toolkit works with native animations and has potential for open-source development.
“Microfrontends” for Mobile in React Native
React Advanced 2023React Advanced 2023
24 min
“Microfrontends” for Mobile in React Native
Top Content
Micro frontends are an architectural style where independent deliverable frontend applications compose a greater application. They allow for independent development and deployment, breaking down teams into feature verticals. React Native's architecture enables updating the JavaScript layer without going through the app store. Code Push can be used to deploy separate JavaScript bundles for each micro frontend. However, there are challenges with managing native code and dependencies in a micro frontend ecosystem for mobile apps.
Run Games Within Your React Native Apps
React Day Berlin 2022React Day Berlin 2022
28 min
Run Games Within Your React Native Apps
Top Content
Today's Talk discusses integrating Unity into React Native apps for game development. Unity provides a wide range of capabilities and can be seamlessly integrated with React Native. The integration involves using the Unity View component and the Unity Message callback to enable communication between the two platforms. Native plugins are created to facilitate communication between Unity and React Native. The performance of Unity in React Native apps is comparable to regular React Native apps, and the decision to use Unity or React Native depends on the app's use case and need for advanced UI and gaming capabilities.

Workshops on related topic

Introducing FlashList: Let's build a performant React Native list all together
React Advanced 2022React Advanced 2022
81 min
Introducing FlashList: Let's build a performant React Native list all together
Top Content
Featured Workshop
David Cortés Fulla
Marek Fořt
Talha Naqvi
3 authors
In this workshop you’ll learn why we created FlashList at Shopify and how you can use it in your code today. We will show you how to take a list that is not performant in FlatList and make it performant using FlashList with minimum effort. We will use tools like Flipper, our own benchmarking code, and teach you how the FlashList API can cover more complex use cases and still keep a top-notch performance.You will know:- Quick presentation about what FlashList, why we built, etc.- Migrating from FlatList to FlashList- Teaching how to write a performant list- Utilizing the tools provided by FlashList library (mainly the useBenchmark hook)- Using the Flipper plugins (flame graph, our lists profiler, UI & JS FPS profiler, etc.)- Optimizing performance of FlashList by using more advanced props like `getType`- 5-6 sample tasks where we’ll uncover and fix issues together- Q&A with Shopify team
Detox 101: How to write stable end-to-end tests for your React Native application
React Summit 2022React Summit 2022
117 min
Detox 101: How to write stable end-to-end tests for your React Native application
Top Content
Workshop
Yevheniia Hlovatska
Yevheniia Hlovatska
Compared to unit testing, end-to-end testing aims to interact with your application just like a real user. And as we all know it can be pretty challenging. Especially when we talk about Mobile applications.
Tests rely on many conditions and are considered to be slow and flaky. On the other hand - end-to-end tests can give the greatest confidence that your app is working. And if done right - can become an amazing tool for boosting developer velocity.
Detox is a gray-box end-to-end testing framework for mobile apps. Developed by Wix to solve the problem of slowness and flakiness and used by React Native itself as its E2E testing tool.
Join me on this workshop to learn how to make your mobile end-to-end tests with Detox rock.
Prerequisites- iOS/Android: MacOS Catalina or newer- Android only: Linux- Install before the workshop
How to Build an Interactive “Wheel of Fortune” Animation with React Native
React Summit Remote Edition 2021React Summit Remote Edition 2021
60 min
How to Build an Interactive “Wheel of Fortune” Animation with React Native
Top Content
Workshop
Oli Bates
Oli Bates
- Intro - Cleo & our mission- What we want to build, how it fits into our product & purpose, run through designs- Getting started with environment set up & “hello world”- Intro to React Native Animation- Step 1: Spinning the wheel on a button press- Step 2: Dragging the wheel to give it velocity- Step 3: Adding friction to the wheel to slow it down- Step 4 (stretch): Adding haptics for an immersive feel
Deploying React Native Apps in the Cloud
React Summit 2023React Summit 2023
88 min
Deploying React Native Apps in the Cloud
Top Content
WorkshopFree
Cecelia Martinez
Cecelia Martinez
Deploying React Native apps manually on a local machine can be complex. The differences between Android and iOS require developers to use specific tools and processes for each platform, including hardware requirements for iOS. Manual deployments also make it difficult to manage signing credentials, environment configurations, track releases, and to collaborate as a team.
Appflow is the cloud mobile DevOps platform built by Ionic. Using a service like Appflow to build React Native apps not only provides access to powerful computing resources, it can simplify the deployment process by providing a centralized environment for managing and distributing your app to multiple platforms. This can save time and resources, enable collaboration, as well as improve the overall reliability and scalability of an app.
In this workshop, you’ll deploy a React Native application for delivery to Android and iOS test devices using Appflow. You’ll also learn the steps for publishing to Google Play and Apple App Stores. No previous experience with deploying native applications is required, and you’ll come away with a deeper understanding of the mobile deployment process and best practices for how to use a cloud mobile DevOps platform to ship quickly at scale.
Effective Detox Testing
React Advanced 2023React Advanced 2023
159 min
Effective Detox Testing
Workshop
Josh Justice
Josh Justice
So you’ve gotten Detox set up to test your React Native application. Good work! But you aren’t done yet: there are still a lot of questions you need to answer. How many tests do you write? When and where do you run them? How do you ensure there is test data available? What do you do about parts of your app that use mobile APIs that are difficult to automate? You could sink a lot of effort into these things—is the payoff worth it?
In this three-hour workshop we’ll address these questions by discussing how to integrate Detox into your development workflow. You’ll walk away with the skills and information you need to make Detox testing a natural and productive part of day-to-day development.
Table of contents:
- Deciding what to test with Detox vs React Native Testing Library vs manual testing- Setting up a fake API layer for testing- Getting Detox running on CI on GitHub Actions for free- Deciding how much of your app to test with Detox: a sliding scale- Fitting Detox into you local development workflow
Prerequisites
- Familiarity with building applications with React Native- Basic experience with Detox- Machine setup: a working React Native CLI development environment including either Xcode or Android Studio
Building for Web & Mobile with Expo
React Day Berlin 2022React Day Berlin 2022
155 min
Building for Web & Mobile with Expo
Workshop
Josh Justice
Josh Justice
We know that React is for the web and React Native is for Android and iOS. But have you heard of react-native-web—for writing an app for Android, iOS, and the web in one codebase? Just like React Native abstracts away the details of iOS and Android, React Native Web extracts away the details of the browser as well. This opens up the possibility of even more code sharing across platforms.
In this workshop you’ll walk through setting up the skeleton for a React Native Web app that works great and looks awesome. You can use the resulting codebase as a foundation to build whatever app you like on top of it, using the React paradigms and many JavaScript libraries you’re used to. You might be surprised how many types of app don’t really require a separate mobile and web codebase!
What's included1. Setting up drawer and stack navigators with React Navigation, including responsiveness2. Configuring React Navigation with URLs3. Setting up React Native Paper including styling the React Navigation drawer and headers4. Setting up a custom color theme that supports dark mode5. Configuring favicons/app icons and metadata6. What to do when you can’t or don’t want to provide the same functionality on web and mobile
Prerequisites- Familiarity with building applications with either React or React Native. You do not need to know both.- Machine setup: Node LTS, Yarn, be able to successfully create and run a new Expo app following the instructions on https://docs.expo.dev/get-started/create-a-new-app/