@vgroup/dialbox 0.4.125 → 0.4.126
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.
|
@@ -1930,24 +1930,26 @@ class CallProgressComponent {
|
|
|
1930
1930
|
this.isConference = true;
|
|
1931
1931
|
console.log(this.conferenceCallInfo, '222222222222222');
|
|
1932
1932
|
this.conferenceCallInfo.participants.forEach((item, index) => __awaiter(this, void 0, void 0, function* () {
|
|
1933
|
-
|
|
1934
|
-
|
|
1935
|
-
|
|
1936
|
-
|
|
1937
|
-
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
|
-
|
|
1933
|
+
setTimeout(() => __awaiter(this, void 0, void 0, function* () {
|
|
1934
|
+
var _0;
|
|
1935
|
+
let callInfo = {
|
|
1936
|
+
from: (_0 = this.selectedCallerId) === null || _0 === void 0 ? void 0 : _0.number,
|
|
1937
|
+
phone: item.direction == "outgoing-call" ? item.to : item.from,
|
|
1938
|
+
img: '',
|
|
1939
|
+
name: item.direction == "outgoing-call" ? (item.toName || item.to) : (item.fromName || item.from),
|
|
1940
|
+
to: item.direction == "outgoing-call" ? item.to : item.from,
|
|
1941
|
+
direction: item.direction,
|
|
1942
|
+
status: ''
|
|
1943
|
+
};
|
|
1944
|
+
console.log(callInfo, 'callInfo33333333333');
|
|
1945
|
+
this.currentCallList.push(callInfo);
|
|
1946
|
+
if (index == 0) {
|
|
1947
|
+
yield this.startCall(callInfo);
|
|
1948
|
+
}
|
|
1949
|
+
else {
|
|
1950
|
+
yield this.callContact(callInfo);
|
|
1951
|
+
}
|
|
1952
|
+
}), index * 1000);
|
|
1951
1953
|
}));
|
|
1952
1954
|
}
|
|
1953
1955
|
}
|