b40b11601e
* Update lock files * Update node types * Update node types * Update minimum supported typescript version * Update minimun typescript version and resolve styling issue with update packages for controlbar button * Change files * remove conflicting height |
||
---|---|---|
.. | ||
public | ||
src | ||
.babelrc.js | ||
.eslintignore | ||
.eslintrc.js | ||
CHANGELOG.json | ||
LICENSE | ||
README.md | ||
package.json | ||
tsconfig.json | ||
tsconfig.preprocess.json | ||
webpack.config.js |
README.md
Call with Chat Sample
🚧 Be advised we are currently working on polishing the samples in this repo. 🚧
Overview
This is a sample application to show how we can use the @azure/communication-react
package to build a Call with chat experience.
The client-side application is a React based user interface. Alongside this front-end is a NodeJS web application powered by ExpressJS that performs functionality like minting new user tokens for each call participant.
Prerequisites
- Visual Studio Code (Stable Build)
- Node.js (16.19.0 and above)
- Create an Azure account with an active subscription. For details, see Create an account for free.
- Create an Azure Communication Services resource. For details, see Create an Azure Communication Resource. You'll need to record your resource connection string for this quickstart.
Before running the sample for the first time
-
Open an instance of PowerShell, Windows Terminal, Command Prompt, or equivalent, and navigate to the directory that you'd like to clone the sample to and clone the repo.
git clone https://github.com/Azure/communication-ui-library.git
-
Get the
Connection String
from the Azure portal. For more information on connection strings, see Create an Azure Communication Resources -
Once you get the
Connection String
, add the connection string to the samples/Server/appsetting.json file. Input your connection string in the variable:ResourceConnectionString
. -
Once you get the
Endpoint
, add the endpoint string to the samples/Server/appsetting.json file. Input your connection string in the variable:EndpointUrl
. -
Get the
identity
from the Azure portal. Click onIdentities & User Access Tokens
in Azure portal. Generate a user withChat
scope. -
Once you get the
identity
string, add the identity string to the samples/Server/appsetting.json file. Input your identity string in the variable:AdminUserId
. This is the server user to add new users to the chat thread.
Local run
-
Install dependencies
npm i -g @microsoft/rush rush install
-
Start the call with chat app
cd samples/CallWithChat rushx start
This will open a client server on port 3000 that serves the website files, and an api server on port 8080 that performs functionality like minting tokens for call participants.
Additional Reading
- Azure Communication Services - UI Library - To learn more about what the
@azure/communication-react
package offers. - Azure Communication Calling SDK - To learn more about the calling web sdk
- Azure Communication Chat SDK - to learn more about the chat features needed for the CallWithChatComposite.
- FluentUI - Microsoft powered UI library
- React - Library for building user interfaces
- Create-React-App - Boilerplate React code to help with a majority of React style single page applications.