Table of Contents
[Image here]
The library provide the react components, almost of components are React Hook, it provides easy way to build the sessions, perform actions on SIP calls
This library is updated version of modify-react-sipjs for generatin multiple channels at the same time previously it was support only max 3
This is an example of how you may give instructions on setting up your project locally. To get a local copy up and running follow these simple example steps.
Install via npm or yarn
yarn add modify-react-sipjs
npm install modify-react-sipjs
- Import and use the
SIPProvider
on our root application:
import { SIPProvider } from "modify-react-sipjs";
function App() {
return (
<div className="p-5">
<SIPProvider
options={{
domain: "voice.chatchilladev.sip.jambonz.cloud",
webSocketServer: "wss://sip.jambonz.cloud:8443",
}}
>
<div>
<CallCenter />
</div>
</SIPProvider>
</div>
);
}
- Use
useSIPProvider
at the hook to getconnectAndRegister
method to connect & register with SIP account
import { useSIPProvider } from "modify-react-sipjs";
export const CallCenter = () => {
const [username, setUsername] = useState<string>("test8");
const [password, setPassword] = useState<string>("test123");
const {
connectAndRegister,
connectStatus,
} = useSIPProvider();
useEffect(() => {
connectAndRegister({
username: username,
password: password,
});
}, []);
return ...;
}
- Make the first call
const {
sessionManager
sessions
} = useSIPProvider();
await sessionManager?.call(`sip:${callTo}@voice.chatchilladev.sip.jambonz.cloud`);
- Retrive reactive sessions
const {
sessions
} = useSIPProvider();
sessions.forEach(session => {
console.log(session.id, session.state);
})
- Perform action with single session with
useSessionCall
export const CallSessionItem = (props: { sessionId: string }) => {
const { sessionId } = props;
const {
isHeld,
isMuted,
decline,
hangup,
hold,
mute,
answer,
session,
unhold,
unmute,
direction,
timer,
} = useSessionCall(sessionId);
return (
<div>
<p>{session.state}</p>
{session.state === SessionState.Initial && (
<>
<button onClick={answer}>Answer</button>
<button onClick={decline}>Decline</button>
</>
)}
{SessionState.Established === session.state && (
<>
<button onClick={isHeld ? unhold : hold}>
{isHeld ? "Unhold" : "Hold"}
</button>
<button onClick={isMuted ? unmute : mute}>
{isMuted ? "Ummute" : "Mute"}
</button>
</>
)}
{![SessionState.Terminating, SessionState.Terminated].includes(
session.state) && <button onClick={hangup}>Hang Up</button>}
</div>
)
}
Distributed under the MIT License. See LICENSE.txt
for more information.
Ravi Raj - raviraj0884@gmail.com
Project Link: https://github.com/RavirajO7/modify-modify-react-sipjs
Van Bui - btvan1995@gmail.com