6.23.0 • Published 1 day ago

@amityco/ts-sdk-react-native v6.23.0

Weekly downloads
-
License
CC-BY-ND-4.0
Repository
-
Last release
1 day ago

Amity Social Cloud Typescript SDK for React-Native

Getting Started

  • With npm: npm install @amityco/ts-sdk-react-native
  • With yarn: yarn add @amityco/ts-sdk-react-native

Runtime support

  • Modern browsers (es2017 compliant)
  • NodeJS (via esm imports)
  • React-Native

Creating a client instance

To connect your users to our platform, you need to create a client instance and connect it.

import { Client } from '@amityco/ts-sdk-react-native';

(async () => {
  const sessionHandler: Amity.SessionHandler = {
    sessionWillRenewAccessToken(renewal: Amity.Renewal) {
      renewal.renew();
      /*
       * If using an auth token
       *
       * try {
       *  renew.renewWithAuthToken(authToken)
       * } catch() {
       *  sdk will try to renew again at a later time
       *
       *  renew.unableToRetrieveAuthToken()
       * }
       */
    },
  };
  const client = Client.createClient(API_KEY, API_REGION);

  let isConnected = await Client.login({ userId: USER_ID }, sessionHandler);
})();

The API_KEY and API_REGION are given at the time you create an application in the Amity Portal.

You can listen to disconnection by using the onClientDisconnected function:

import { Client } from '@amityco/ts-sdk-react-native';

const unsub = Client.onClientDisconnected(() => (isConnected = false));

The unsub's return value is a dispose function which is used to clean the memory of your client's application. It's been designed to fit perfectly with React, in a useEffect such as:

useEffect(() => onClientConnected(() => setConnected(false)), [])

## Going further

### Domain types

All the necessary types are automatically exposed in the `Amity` namespace. As long as you import the SDK once, the namespace will be available in your workspace. You can start to type `Amity.` and see the list of types in your intellisense after having imported the SDK in any file of your project.

### Subscribing to real time events

We expose a couple of functions for your to receive simply the events that could fire from our servers, for example, if another user would change their display name, or if a channel would receive a new message.

The `subscribeTopic` method retuns an unsubscriber that can be called on clean up to stop recieving further events.

```ts
import { subscribeTopic, getUserTopic } from '@amityco/ts-sdk-react-native'

const unsub = subscribeTopic(getUserTopic({} as Amity.User))

Observe an object using Live Object

For an 'all-in-one' approach, we expose live objects, which allow to fetch an object and register to its changes all at once. This has been designed to fit with React's useState and useEffect:

import { UserRepository } from '@amityco/ts-sdk-react-native'

const Component = ({ userId }: { userId: string }) => {
  const [user, setUser] = useState<Amity.User>({})

  useEffect(() => UserRepository.getUser(userId, ({ data: user, loading, error }) => {
    // ensure you call unsub() on cleanup or unmount
    const unsub = subscribeTopic(getUserTopic(user))

    setUser(user)
  }), [userId])

  return <div>{JSON.stringify(user, null, 2)}
}

Observe a collection using Live Collection

Similar to the concept of live object, we expose live collection, which allow to fetch a collection and register to its changes all at once. This has been designed to fit with React's useState and useEffect:

import { UserRepository.getUsers } from '@amityco/ts-sdk-react-native'

const Component = () => {
  const [users, setUsers] = useState<Amity.User[]>({})

  useEffect(() => UserRepository.getUsers({}, ({ data, loading, error, nextPage, hasNextPage }) => {
    // ensure you call unsub() on cleanup or unmount
    // Subscribe to each user in collection for getting real time updates

    setUsers(users)
  }), [userId])

  return <div>{JSON.stringify(user, null, 2)}
}

Documentation

To see the comprehensive documentation please visit our documentation page.

If you have any questions, you can visit our forum.

6.23.0

1 day ago

6.22.0

15 days ago

6.21.1

15 days ago

6.21.1-265b0a3.0

16 days ago

6.21.1-8cbe3b5.0

23 days ago

6.21.0

23 days ago

6.20.2-c7b567d.0

23 days ago

6.20.1

26 days ago

6.20.0

1 month ago

6.20.1-273737d.0

1 month ago

6.20.1-621b475.0

1 month ago

6.18.1-4042f17.0

1 month ago

6.18.1-a203325.0

1 month ago

6.19.0

2 months ago

6.18.1-b6ce8d0.0

2 months ago

6.17.4-bbdf1ed.0

2 months ago

6.18.0

2 months ago

6.17.3

2 months ago

6.16.1-2823f7b.0

2 months ago

6.17.0

3 months ago

6.16.0

3 months ago

6.15.1-fee6c8f.0

4 months ago

6.15.0

4 months ago

6.14.2-5d7d534.0

4 months ago

6.14.1

5 months ago

6.13.2

5 months ago

6.14.0

5 months ago

6.13.3-acef8cc.0

5 months ago

6.12.2-b78b0a5.0

5 months ago

6.12.1-78a259e.0

6 months ago

6.13.0

5 months ago

6.12.1

6 months ago

6.12.0

6 months ago

6.11.2-27cbf6f.0

6 months ago

6.11.1

6 months ago

6.11.2-61f4f8b.0

6 months ago

6.11.1-cc23ab2.0

6 months ago

6.10.1-958b188.0

6 months ago

6.10.0

7 months ago

6.9.1-e6a3d26.0

7 months ago

6.9.1-fa5ac34.0

7 months ago

6.9.0

7 months ago

6.8.3-6df654f.0

7 months ago

6.8.2-d546836.0

7 months ago

6.8.2-a982330.0

7 months ago

6.8.1-0841e8b.0

8 months ago

6.8.0

8 months ago

6.7.1-b2e0776.0

8 months ago

6.7.1-4e6b4a3.0

8 months ago

6.7.1-070e5e4.0

8 months ago

6.7.1-cafe37a.0

8 months ago

6.7.1-8bea649.0

8 months ago

6.7.1-e8866e9.0

8 months ago

6.7.1-80c1951.0

8 months ago