1.0.0 • Published 2 years ago

callerpackage-sprinklr v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

todo

openNewPopup

CallerPackage

Caller Package is used to handle cross window calling service , using JsSIP. This library moved the intra-window calling logic to a popup window. This makes the state of popup window independent of state of parent window , overall mitigating the issues caused by this previously like refresh causing call end, etc.

Requirements

Installation

Configuration

Add Config details in popup.html manually or through running.

Getting Started

const callerPackage = new CallerPackage();

In popup.html , add config using input , or hardcode the config.

Attributes

This is needed to be configured in popup side.

config

{
	sip: , 
    password: , 
    server_address: , 
    port: 
}

Example:

{
	sip: sample1234, 
    password: samplePassword, 
    server_address: 12.34.56.78, 
    port: 7654/ws
}

Methods

connect()

This method is used to connect to popup. If popup is already active it will connect to that, otherwise it will start a new popup window.

Arguments
  • callback function
Example:
callerPackage.connect(() => {
    updateSocketConnectedInUI();
});

call()

This method is called to invoke call procedure.

Arguments
  • number
Example:
callerPackage.call('9838949386****');

endOut()

This method is called to end outgoing call.

callerPackage.endOut();

endIn()

This method is called to end incoming call.

callerPackage.endOut();

hold()

This method is called to hold ongoing call.

callerPackage.hold();

unhold()

This method is called to unhold ongoing call.

callerPackage.unhold();

mute()

This method is called to mute ongoing call.

callerPackage.mute();

unmute()

This method is called to unmute ongoing call.

callerPackage.unmute();

Events

Syntax for all events is as follow.

callerPackage.on(event,callback);

Example

callerPackage.on('INFORM_SOCKET_CONNECTED',()=>{
    console.log('Socket is connected');
});

INFORM_SOCKET_CONNECTED

Fired when socket is connected in popup window.

INFORM_SOCKET_DISCONNECTED

Fired when socket is disconnected in popup window.

ACK_OUTGOING_CALL_START

Fired when outgoing call is connected.

ACK_OUTGOING_CALL_END

Fired when outgoing call is ended.

ACK_OUTGOING_CALL_FAIL

Fired when outgoing call is failed.

ACK_CALL_HOLD

Fired when call is put on hold.

ACK_CALL_UNHOLD

Fired when call is put on unhold.

ACK_CALL_MUTE

Fired when call is put on mute.

ACK_CALL_UNMUTE

Fired when call is put on unmute.

ACK_SESSION_DETAILS

Fired when session details is recieved.

Example

callerPackage.on('ACK_SESSION_DETAILS',()=>{
        console.log('Session details fetched from popup');
        let sessionDetails = callerPackage.getCallObject();
        console.log(sessionDetails);
});
1.0.0

2 years ago