Socket
Socket
Sign inDemoInstall

@commt/commt-rn-sdk

Package Overview
Dependencies
10
Maintainers
2
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @commt/commt-rn-sdk

Ultimate chat plugin for react native applications


Version published
Maintainers
2
Created

Readme

Source

COMMT: Secure Chat Plugin for React Native

npm npm NPM


Welcome to Commt, a powerful chat plugin designed to seamlessly integrate secure and customizable chat functionalities into your React Native applications. Offering AES encryption as the default and end-to-end (E2E) support, Commt ensures a secure and reliable communication experience for your users.

Features

  • Written in TypeScript
  • Fully customizable pre-build components
  • Multiple projects support with only one client configuration
  • AES encryption as default and end-to-end (E2E) support
  • Webhooks usage flexibility
  • Customizable and easy to manage system messages
  • Typing, user online and message read indicators
  • Emoji keyboard and all emoji types support
  • Hooks usage flexibility

Installation

  • NPM: npm i -S @commt/commt-rn-sdk
  • Yarn: yarn add @commt/commt-rn-sdk

For detailed installation instructions and configuration options, please refer to our documentation.

Usage

Get started with Commt in just a few steps:

  • Initialize Commt: Import the Provider module and set up the chat plugin in your application by wrap your app with it.
  • Customize UI: Tailor the UI elements to match your app's aesthetics. Trigger the useTheme hook by passing theme values and make the components custom.
  • Implement Secure Chat: Utilize the secure and encrypted chat functionalities.

Check out our documentation for comprehensive usage examples and API reference.

Example

You can get client configs info from Commt Dashboard

App.tsx

import CommtProvider from "@commt/commt-rn-sdk";
import useInitiate from "@commt/commt-rn-sdk/hooks/useInitiate";

const ClientConfig = {
  apiKey: "123456789?",
  subscriptionKey: "0987654321?",
  tenantId: "AD768342asdf?9892",
  secret: "123456789018A_7JzPo?23F+4y#erPL"
};

function App(): JSX.Element {
  useInitiate(ClientConfig); // Initiate a client

  return (
    <CommtProvider>
      {/* All your ThemeProvider, NavigationContainer, etc. */}
    </CommtProvider>
  );
}

Home.tsx

import { useSetMessages, useSetRooms, useSetUsers } from "@commt/commt-rn-sdk/hooks";

const Home = () => {
  // ...

  useEffect(async () => {
    await useSetUsers(usersArray); // Set users for commt
    await useSetRooms(roomsArray); // Set rooms for commt
    useSetMessages(messagesArray); // Set messages for commt
  }, [usersArray, roomsArray, messagesArray]);

  // ...

  return (
    <SafeAreaView>
      <Text
        style={styles.buttonText}
        onPress={() => navigation.navigate("Messages")}>
        Go Messages
      </Text>
    </SafeAreaView>
  );
};

Messages-List.tsx

import {
  QuickChat,
  MessageList,
  SearchInput,
  MessagesHeader
} from "@commt/commt-rn-sdk/components";

const Messages = () => {
  // ...

  return (
    <Container>
      <MessagesHeader />
      <SearchInput />
      <InnerContainer>
        <QuickChat onPress={navigateToChat} />
        <MessageList onPress={navigateToChat} />
      </InnerContainer>
    </Container>
  );
};

Chat.tsx

import { ChatHeader, Chat } from "@commt/commt-rn-sdk/components";

const Chats = () => {
  const route = useRoute<RouteProp<RootStackParamList, "Chats">>();
  const roomId = route.params.roomId;
  const participants = route.params.participants;

  return (
    <Container>
      <ChatHeader roomId={roomId} participants={participants} />
      <Chat
        roomId={roomId}
        participants={participants}
        loadMoreMessages={YOUR_LOAD_MORE_MESSAGES_ACTION}
        />
    </Container>
  );
};

Compatibility

Commt is compatible with:

Support and Feedback

For any questions, feedback or issues, feel free to reach out to us via contact@commt.co.

License

MIT

Contributors

Keywords

FAQs

Last updated on 04 Dec 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc