react-sip-phone
v1.0.0
Published
simple sip phone component for react
Downloads
28
Readme
react-sip-phone
SIP phone component for use in react projects
Install
npm install --save react-sip-phone
Usage
import React, { Component } from 'react'
import { ReactSipPhone } from 'react-sip-phone'
import 'react-sip-phone/dist/index.css'
class Example extends Component {
render() {
return <ReactSipPhone
name={name}
sipCredentials={{
sipuri: sipuri,
password: password
}}
sipConfig={{
websocket: websocket,
defaultCountryCode: '1'
}}
width={400}
/>
}
}
To make calls from outside of the component, import the phone's store and access the SIP Account once it is registered
import { ReactSipPhone, phoneStore } from 'react-sip-phone'
class MyApp extends Component {
makeCall(number) {
const sipAccount = phoneStore.getState().sipAccounts.sipAccount
if (sipAccount && number) {
sipAccount.makeCall(number)
}
}
render() {
return <ReactSipPhone ... />
}
}
License
MIT