React-Native based UI kit based on sendbird javascript SDK
Sendbird UIKit for React-Native is a development kit with an user interface that enables an easy and fast integration of standard chat features into new or existing client apps. This mono-repository the UIKit source code is consists as explained below.
- packages/uikit-react-native is where you can find the open source code. Check out UIKit Open Source Guidelines for more information regarding our stance on open source.
- sample is a chat app with UIKit’s core features in which you can see items such as push notifications, total unread message count and auto sign-in are demonstrated. When you sign in to the sample app, you will only see a list of channels rendered by the GroupChannelListFragment on the screen.
- packages/uikit-react-native-foundation is a UI package for
uikit-react-native
. - packages/uikit-chat-hooks is a react hooks package for
uikit-react-native
. - packages/uikit-utils is a utility package for
uikit-react-native
.
Find out more about Sendbird UIKit for React-Native at UIKit for React Native doc. If you need any help in resolving any issues or have questions, visit our community.
- Nodejs 14 or newer
- yarn v1
- Watchman
- JDK 11 or newer
- XCode
- Android Studio
⚑ More details, please see https://reactnative.dev/docs/environment-setup
⚑ we strongly recommend installing yarn using corepack
We are using sample app for development, you can check the sample app here and also check the UI components via storybook in the sample app.
Every script should be run on the root of the project.
Install node modules
yarn install
Linking native modules of sample app
yarn sample:pod-install
Running sample app
- Android
yarn sample:android
- iOS
yarn sample:ios
Create a file to sample/src/env.ts
and write the code below to the file you created.
export const APP_ID = '2D7B4CDB-932F-4082-9B09-A1153792DC8D';
If you would like to try the sample app specifically fit to your usage, you can do so by replacing the default sample app ID with yours, which you can obtain by creating your Sendbird application from the dashboard.
Note Update Chat SDK version of sample app
Editpackage.json
and change the version ofresolutions > @sendbird/chat
to the version you want to use.
- Could not connect to development server on Android device
- Run
adb reverse tcp:8081 tcp:8081
.
- Run
- Unable to resolve module
../version
frompackages/uikit-react-native/src/containers/SendbirdUIKitContainer.tsx
- Run
yarn workspace @sendbird/uikit-react-native generate-version
on the root of the project.
- Run
concurrently 'yarn start' 'react-native run-android'
does not working expected- Run
yarn start
andnpx react-native run-android
separately on thesample
directory.
- Run
We tried development on macOS / Linux systems. You might encounter problems in running sample or scripts like yarn build
in Windows machines.
Run the script and enter the key function name as a lower camel case like groupChannel
, and then you can see the auto generated files in the /packages/uikit-react-native/src/domain
yarn workspace @sendbird/uikit-react-native run create-domain
Note We are using yarn workspaces and lerna to maintain this monorepo
If you need to patch some packages for the sample to work using patch-package
npx patch-package package-name
> mark as commentyarn-path
in.yarnrc
file- OR
./node_modules/.bin/patch-package package-name
> just run
See yarn workspace
# Add dependency to specific workspace package
yarn workspace @sendbird/package add package-name
# Remove dependency from specific workspace package
yarn workspace @sendbird/package remove package-name
# Add dependency to root
yarn -W add package-name
Warning You should better install to root if you're trying to install native view modules. Sometimes native view module in the workspace is not hoisted, and it leads to
Tried to register two views
error on the sample app.
See lerna version
lerna version {major|minor|patch} [--no-git-tag-version] [--no-private]
# or
yarn bump:{major|minor|patch}
See lerna publish
yarn build
# Unit test
yarn test
# Build test
yarn test:build
# Check formatting
yarn lint
# Fix formatting
yarn fix