CometChat Vue UI Kit is a collection of custom UI Components designed to build text chat and voice/video callings features in your application.
The UI Kit is developed to keep developers in mind and aims to reduce development efforts significantly.
Before you begin, ensure you have met the following requirements:
-
A text editor. (e.g. Visual Studio Code, Notepad++, Sublime Text, Atom, or VIM)
- To install Vue UI Kit, you need to first register on CometChat Dashboard. Click here to Sign Up.
- Create a new app.
- Head over to the Quick Start or API & Auth Keys section and note the
App ID
,Auth Key
, andRegion
.
npm install @cometchat-pro/chat@3.0.2-beta1 --save
import { CometChat } from "@cometchat-pro/chat";
The init()
method initializes the settings required for CometChat.
We suggest calling the init()
method on app startup, preferably in the created()
method of the Application class.
const appID = 'APP_ID';
const region = 'REGION';
const appSetting = new CometChat.AppSettingsBuilder()
.subscribePresenceForAllUsers()
.setRegion(region)
.build();
CometChat.init(appID, appSetting).then(
() => {
console.log('Initialization completed successfully');
// You can now call login function.
},
(error) => {
console.log('Initialization failed with error:', error);
// Check the reason for error and take appropriate action.
}
);
Note:
- Replace
APP_ID
andREGION
with your CometChatApp ID
andRegion
in the above code.
This method takes UID
and Auth Key
as input parameters and returns the User object containing all the information of the logged-in user.
const authKey = 'AUTH_KEY';
const uid = 'SUPERHERO1';
CometChat.login(uid, authKey).then(
(user) => {
console.log('Login Successful:', { user });
},
(error) => {
console.log('Login failed with exception:', { error });
}
);
Note:
-
Replace
AUTH_KEY
with your CometChatAuth Key
in the above code. -
We have setup 5 users for testing having UIDs:
SUPERHERO1
,SUPERHERO2
,SUPERHERO3
,SUPERHERO4
andSUPERHERO5
. -
We have used uid
SUPERHERO1
as an example here. You can create User from CometChat Dashboard as well.
- Clone this repository
git clone https://github.com/cometchat-pro/cometchat-pro-vue-ui-kit.git
- Copy the folder to your source folder.
-
Copy all the dependencies from package.json of
cometchat-pro-vue-ui-kit
into your project's package.json and install them. -
We are using emoji-mart-vue-fast Please install respective library depending on your Vue version
- For Vue2 :
npm install [email protected]
- For Vue3 :
npm install [email protected]
- For Vite users:
npm install [email protected]
- For Vue2 :
Support for Vite
If you are using Vite, update your vite.config.js
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()],
resolve: {
extensions: ['.mjs', '.js', '.ts', '.jsx', '.tsx', '.json', '.vue'],
},
})
Using the CometChatUI
component from the UI Kit, you can launch a fully functional chat application.
In this component all the UI Screens and UI Components are interlinked and work together to launch a fully functional chat on your website/application.
Usage of application in project:
<template>
<div id="app">
<CometChatUI />
</div>
</template>
<script>
import { CometChatUI } from './cometchat-pro-vue-ui-kit/CometChatWorkspace/src';
export default {
name: 'App',
components: {
CometChatUI,
},
};
</script>
Visit our Vue sample app repo to run the Vue sample app.
- For Vue2 sample app, navigate to vue2 folder
- For Vue3 sample app, navigate to vue3 folder
-
To read the full documentation on UI Kit integration visit our Documentation.
-
Facing any issues while integrating or installing the UI Kit please connect with us via real time support present in CometChat Dashboard.
Contact us via real time support present in CometChat Dashboard.
This project uses the following license.