@vgroup/dialbox 0.5.41 → 0.5.43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/components/call-progress/call-progress.component.mjs +5 -2
- package/esm2020/lib/dialbox.component.mjs +3 -3
- package/fesm2015/vgroup-dialbox.mjs +19 -16
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +6 -3
- package/fesm2020/vgroup-dialbox.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1826,8 +1826,11 @@ class CallProgressComponent {
|
|
|
1826
1826
|
var _a;
|
|
1827
1827
|
this.conferenceId = i == 0 ? this.newIncomingCallsList[i].conferenceId : this.conferenceId;
|
|
1828
1828
|
this.newIncomingCallsList[i].participants.forEach((res) => __awaiter(this, void 0, void 0, function* () {
|
|
1829
|
-
var _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p;
|
|
1830
|
-
let contact =
|
|
1829
|
+
var _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
|
|
1830
|
+
let contact = {};
|
|
1831
|
+
if ((_b = this.contacts) === null || _b === void 0 ? void 0 : _b.length) {
|
|
1832
|
+
contact = this.contacts.find((resData) => { var _a; return ((_a = resData === null || resData === void 0 ? void 0 : resData.numbersList[0]) === null || _a === void 0 ? void 0 : _a.number) == (res.direction == "incoming-call" ? res === null || res === void 0 ? void 0 : res.from : res === null || res === void 0 ? void 0 : res.to); });
|
|
1833
|
+
}
|
|
1831
1834
|
if (this.currentCallList.length > 0) {
|
|
1832
1835
|
let index = this.currentCallList.findIndex((item) => item.id == res.id);
|
|
1833
1836
|
if (index == -1 && !res.isLeft) {
|
|
@@ -1838,27 +1841,27 @@ class CallProgressComponent {
|
|
|
1838
1841
|
}
|
|
1839
1842
|
}
|
|
1840
1843
|
else if (index != -1 && res.isLeft) {
|
|
1841
|
-
if (((
|
|
1844
|
+
if (((_c = this.currentCallList[index]) === null || _c === void 0 ? void 0 : _c.id) == ((_d = this.currentCall) === null || _d === void 0 ? void 0 : _d.id)) {
|
|
1842
1845
|
this.currentCallList.splice(index, 1);
|
|
1843
1846
|
this.currentCall = this.currentCallList.length > 0 ? this.currentCallList[0] : {};
|
|
1844
|
-
if (((
|
|
1847
|
+
if (((_e = this.currentCall) === null || _e === void 0 ? void 0 : _e.isHold) && !((_f = this.currentCall) === null || _f === void 0 ? void 0 : _f.isConference)) {
|
|
1845
1848
|
yield this.onholdOrUnholdParticipant({
|
|
1846
|
-
participantId: [(
|
|
1847
|
-
conferenceId: (
|
|
1849
|
+
participantId: [(_g = this.currentCall) === null || _g === void 0 ? void 0 : _g.participantId],
|
|
1850
|
+
conferenceId: (_h = this.currentCall) === null || _h === void 0 ? void 0 : _h.conferenceId,
|
|
1848
1851
|
hold: false,
|
|
1849
|
-
mute: ((
|
|
1850
|
-
conference: (
|
|
1852
|
+
mute: ((_j = this.currentCall) === null || _j === void 0 ? void 0 : _j.mute) || false,
|
|
1853
|
+
conference: (_k = this.currentCall) === null || _k === void 0 ? void 0 : _k.isConference
|
|
1851
1854
|
});
|
|
1852
1855
|
}
|
|
1853
|
-
else if (((
|
|
1856
|
+
else if (((_l = this.currentCall) === null || _l === void 0 ? void 0 : _l.isHold) && ((_m = this.currentCall) === null || _m === void 0 ? void 0 : _m.isConference)) {
|
|
1854
1857
|
let conferenceCalllist = this.currentCallList.filter((item) => item.isConference);
|
|
1855
1858
|
if (conferenceCalllist.length > 0) {
|
|
1856
1859
|
yield this.onholdOrUnholdParticipant({
|
|
1857
1860
|
participantId: conferenceCalllist.map((item) => item.participantId),
|
|
1858
|
-
conferenceId: (
|
|
1861
|
+
conferenceId: (_o = conferenceCalllist[0]) === null || _o === void 0 ? void 0 : _o.conferenceId,
|
|
1859
1862
|
hold: false,
|
|
1860
|
-
mute: ((
|
|
1861
|
-
conference: ((
|
|
1863
|
+
mute: ((_p = this.currentCall) === null || _p === void 0 ? void 0 : _p.mute) || false,
|
|
1864
|
+
conference: ((_q = this.currentCall) === null || _q === void 0 ? void 0 : _q.isConference) || false
|
|
1862
1865
|
});
|
|
1863
1866
|
this.isConferenceCallHold = false;
|
|
1864
1867
|
}
|
|
@@ -3549,17 +3552,17 @@ class DialboxComponent {
|
|
|
3549
3552
|
this.incomeingCallSocketService.connect(this.deviceId);
|
|
3550
3553
|
try {
|
|
3551
3554
|
this.incomeingCallSocketService.listen().subscribe((incomingCallData) => __awaiter(this, void 0, void 0, function* () {
|
|
3552
|
-
var _a;
|
|
3555
|
+
var _a, _b;
|
|
3553
3556
|
// const data = JSON.parse(incomingCallData.data);
|
|
3554
3557
|
// console.log("WS Event Received:", incomingCallData);
|
|
3555
3558
|
// console.log("WS Event Received:", incomingCallData.data);
|
|
3556
3559
|
this.twilioService.conferenceCallInfo = incomingCallData;
|
|
3560
|
+
incomingCallData = (incomingCallData === null || incomingCallData === void 0 ? void 0 : incomingCallData.LENGTH) > 0 ? incomingCallData.filter((item) => { var _a; return ((_a = item.participants) === null || _a === void 0 ? void 0 : _a.length) > 0; }) : [];
|
|
3557
3561
|
if (!!(incomingCallData === null || incomingCallData === void 0 ? void 0 : incomingCallData.length)) {
|
|
3558
|
-
incomingCallData = incomingCallData.filter((item) => { var _a; return ((_a = item.participants) === null || _a === void 0 ? void 0 : _a.length) > 0; });
|
|
3559
3562
|
// this.incomingCallsList = incomingCallData.participants.filter((item: any) => !item.isLeft) || [];
|
|
3560
3563
|
this.incomingCallsList = incomingCallData || [];
|
|
3561
3564
|
let parentCall = [];
|
|
3562
|
-
if (this.notificationCallList.length) {
|
|
3565
|
+
if ((_a = this.notificationCallList) === null || _a === void 0 ? void 0 : _a.length) {
|
|
3563
3566
|
this.notificationCallList = this.notificationCallList.filter((res) => res.endTime >= (new Date().getTime()));
|
|
3564
3567
|
this.notificationCallList.forEach((call) => {
|
|
3565
3568
|
incomingCallData.forEach((item) => {
|
|
@@ -3588,7 +3591,7 @@ class DialboxComponent {
|
|
|
3588
3591
|
this.callData = [];
|
|
3589
3592
|
this.incomingCallsList = [];
|
|
3590
3593
|
this.isCallInProgress = false;
|
|
3591
|
-
(
|
|
3594
|
+
(_b = this.twilioService.device) === null || _b === void 0 ? void 0 : _b.disconnectAll();
|
|
3592
3595
|
}
|
|
3593
3596
|
}
|
|
3594
3597
|
// incomingCallData.participants.length ? incomingCallData.participants.filter((item: any) => !item.isLeft) : [];
|