@microsoft/omnichannel-chat-widget 1.6.4-main.ab88589 → 1.6.5-main.fbe38da
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/lib/cjs/components/livechatwidget/common/endChat.js +11 -9
- package/lib/cjs/components/livechatwidget/livechatwidgetstateful/LiveChatWidgetStateful.js +13 -4
- package/lib/cjs/components/webchatcontainerstateful/WebChatContainerStateful.js +7 -2
- package/lib/esm/components/livechatwidget/common/endChat.js +11 -9
- package/lib/esm/components/livechatwidget/livechatwidgetstateful/LiveChatWidgetStateful.js +13 -4
- package/lib/esm/components/webchatcontainerstateful/WebChatContainerStateful.js +7 -2
- package/package.json +2 -2
|
@@ -268,15 +268,17 @@ exports.chatSDKStateCleanUp = chatSDKStateCleanUp;
|
|
|
268
268
|
const endVoiceVideoCallIfOngoing = async (chatSDK, dispatch) => {
|
|
269
269
|
let callId = "";
|
|
270
270
|
try {
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
271
|
+
if (chatSDK.isVoiceVideoCallingEnabled()) {
|
|
272
|
+
const voiceVideoCallingSdk = await chatSDK.getVoiceVideoCalling();
|
|
273
|
+
if (voiceVideoCallingSdk && voiceVideoCallingSdk.isInACall()) {
|
|
274
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
275
|
+
callId = voiceVideoCallingSdk.callId;
|
|
276
|
+
voiceVideoCallingSdk.stopCall();
|
|
277
|
+
_TelemetryHelper.TelemetryHelper.logCallingEvent(_TelemetryConstants.LogLevel.INFO, {
|
|
278
|
+
Event: _TelemetryConstants.TelemetryEvent.EndCallButtonClick
|
|
279
|
+
}, callId);
|
|
280
|
+
callingStateCleanUp(dispatch);
|
|
281
|
+
}
|
|
280
282
|
}
|
|
281
283
|
} catch (error) {
|
|
282
284
|
_TelemetryHelper.TelemetryHelper.logCallingEvent(_TelemetryConstants.LogLevel.ERROR, {
|
|
@@ -63,7 +63,7 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "functio
|
|
|
63
63
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
64
64
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
65
65
|
const LiveChatWidgetStateful = props => {
|
|
66
|
-
var _props$webChatContain, _props$styleProps, _props$controlProps, _props$controlProps3, _state$appStates7, _props$webChatContain5, _state$appStates14, _props$
|
|
66
|
+
var _props$webChatContain, _props$styleProps, _props$controlProps, _props$controlProps3, _state$appStates7, _props$webChatContain5, _state$appStates14, _props$webChatContain7, _props$webChatContain8, _props$controlProps12, _props$draggableChatW, _props$draggableChatW2, _props$draggableChatW3, _props$draggableChatW4, _props$draggableChatW5, _props$webChatContain9, _props$webChatContain10, _props$webChatContain11, _props$webChatContain12, _livechatProps$webCha, _livechatProps$styleP, _livechatProps$contro, _livechatProps$contro2, _livechatProps$compon, _livechatProps$contro3, _livechatProps$compon2, _livechatProps$contro4, _livechatProps$compon3, _livechatProps$contro5, _livechatProps$compon4, _livechatProps$contro6, _livechatProps$compon5, _livechatProps$contro7, _livechatProps$compon6, _livechatProps$contro8, _livechatProps$compon7, _livechatProps$contro9, _livechatProps$compon8, _livechatProps$contro10, _livechatProps$contro11, _livechatProps$compon9, _livechatProps$contro12, _livechatProps$compon10, _livechatProps$contro13, _livechatProps$compon11, _livechatProps$compon12, _livechatProps$compon13;
|
|
67
67
|
const [state, dispatch] = (0, _useChatContextStore.default)();
|
|
68
68
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
69
69
|
const [adapter, setAdapter] = (0, _useChatAdapterStore.default)();
|
|
@@ -652,6 +652,15 @@ const LiveChatWidgetStateful = props => {
|
|
|
652
652
|
(0, _react2.useEffect)(() => {
|
|
653
653
|
(0, _chatDisconnectHelper.handleChatDisconnect)(props, state, setWebChatStyles);
|
|
654
654
|
}, [state.appStates.chatDisconnectEventReceived]);
|
|
655
|
+
|
|
656
|
+
// if props state gets updates we need to update the renderingMiddlewareProps in the state
|
|
657
|
+
(0, _react2.useEffect)(() => {
|
|
658
|
+
var _props$webChatContain6;
|
|
659
|
+
dispatch({
|
|
660
|
+
type: _LiveChatWidgetActionType.LiveChatWidgetActionType.SET_RENDERING_MIDDLEWARE_PROPS,
|
|
661
|
+
payload: (_props$webChatContain6 = props.webChatContainerProps) === null || _props$webChatContain6 === void 0 ? void 0 : _props$webChatContain6.renderingMiddlewareProps
|
|
662
|
+
});
|
|
663
|
+
}, [(_props$webChatContain7 = props.webChatContainerProps) === null || _props$webChatContain7 === void 0 ? void 0 : _props$webChatContain7.renderingMiddlewareProps]);
|
|
655
664
|
const initiateEndChatOnBrowserUnload = () => {
|
|
656
665
|
var _DataStoreManager$cli;
|
|
657
666
|
_TelemetryHelper.TelemetryHelper.logActionEvent(_TelemetryConstants.LogLevel.INFO, {
|
|
@@ -687,7 +696,7 @@ const LiveChatWidgetStateful = props => {
|
|
|
687
696
|
const webChatProps = (0, _initWebChatComposer.initWebChatComposer)(props, state, dispatch, chatSDK, endChatRelay);
|
|
688
697
|
const downloadTranscriptProps = (0, _createDownloadTranscriptProps.default)(props.downloadTranscriptProps, {
|
|
689
698
|
...(_defaultWebChatContainerStatefulProps.defaultWebChatContainerStatefulProps === null || _defaultWebChatContainerStatefulProps.defaultWebChatContainerStatefulProps === void 0 ? void 0 : _defaultWebChatContainerStatefulProps.defaultWebChatContainerStatefulProps.webChatStyles),
|
|
690
|
-
...((_props$
|
|
699
|
+
...((_props$webChatContain8 = props.webChatContainerProps) === null || _props$webChatContain8 === void 0 ? void 0 : _props$webChatContain8.webChatStyles)
|
|
691
700
|
}, props.webChatContainerProps);
|
|
692
701
|
const livechatProps = {
|
|
693
702
|
...props,
|
|
@@ -738,8 +747,8 @@ const LiveChatWidgetStateful = props => {
|
|
|
738
747
|
`), /*#__PURE__*/_react2.default.createElement(_DraggableChatWidget.default, chatWidgetDraggableConfig, /*#__PURE__*/_react2.default.createElement(Composer, _extends({}, webChatProps, {
|
|
739
748
|
styleOptions: {
|
|
740
749
|
...webChatStyles,
|
|
741
|
-
bubbleBackground: ((_props$
|
|
742
|
-
bubbleTextColor: ((_props$
|
|
750
|
+
bubbleBackground: ((_props$webChatContain9 = props.webChatContainerProps) === null || _props$webChatContain9 === void 0 ? void 0 : (_props$webChatContain10 = _props$webChatContain9.adaptiveCardStyles) === null || _props$webChatContain10 === void 0 ? void 0 : _props$webChatContain10.background) ?? _defaultAdaptiveCardStyles.defaultAdaptiveCardStyles.background,
|
|
751
|
+
bubbleTextColor: ((_props$webChatContain11 = props.webChatContainerProps) === null || _props$webChatContain11 === void 0 ? void 0 : (_props$webChatContain12 = _props$webChatContain11.adaptiveCardStyles) === null || _props$webChatContain12 === void 0 ? void 0 : _props$webChatContain12.color) ?? _defaultAdaptiveCardStyles.defaultAdaptiveCardStyles.color
|
|
743
752
|
},
|
|
744
753
|
directLine: ((_livechatProps$webCha = livechatProps.webChatContainerProps) === null || _livechatProps$webCha === void 0 ? void 0 : _livechatProps$webCha.directLine) ?? adapter ?? _defaultWebChatContainerStatefulProps.defaultWebChatContainerStatefulProps.directLine
|
|
745
754
|
}), /*#__PURE__*/_react2.default.createElement(_react.Stack, {
|
|
@@ -55,7 +55,7 @@ const createMagicCodeSuccessResponse = signin => {
|
|
|
55
55
|
};
|
|
56
56
|
};
|
|
57
57
|
const WebChatContainerStateful = props => {
|
|
58
|
-
var _webChatContainerProp, _webChatContainerProp2, _webChatContainerProp3, _webChatContainerProp4, _webChatContainerProp5, _webChatContainerProp6, _props$webChatContain5, _props$webChatContain6, _defaultWebChatContai, _props$webChatContain7, _props$webChatContain8, _defaultWebChatContai2, _webChatContainerProp7, _webChatContainerProp8, _webChatContainerProp9, _webChatContainerProp10, _webChatContainerProp11, _webChatContainerProp12, _webChatContainerProp13, _webChatContainerProp14;
|
|
58
|
+
var _webChatContainerProp, _webChatContainerProp2, _webChatContainerProp3, _webChatContainerProp4, _webChatContainerProp5, _webChatContainerProp6, _props$webChatContain5, _props$webChatContain6, _defaultWebChatContai, _props$webChatContain7, _props$webChatContain8, _defaultWebChatContai2, _webChatContainerProp7, _webChatContainerProp8, _webChatContainerProp9, _webChatContainerProp10, _webChatContainerProp11, _webChatContainerProp12, _webChatContainerProp13, _webChatContainerProp14, _props$webChatContain9, _props$webChatContain10;
|
|
59
59
|
const {
|
|
60
60
|
BasicWebChat
|
|
61
61
|
} = _botframeworkWebchat.Components;
|
|
@@ -214,8 +214,13 @@ const WebChatContainerStateful = props => {
|
|
|
214
214
|
.webchat__bubble:not(.webchat__bubble--from-user) .webchat__bubble__content {
|
|
215
215
|
border-radius: 0 !important; /* Override border-radius */
|
|
216
216
|
}
|
|
217
|
+
|
|
218
|
+
.webchat__stacked-layout_container>div {
|
|
219
|
+
background: ${(props === null || props === void 0 ? void 0 : (_props$webChatContain9 = props.webChatContainerProps) === null || _props$webChatContain9 === void 0 ? void 0 : (_props$webChatContain10 = _props$webChatContain9.containerStyles) === null || _props$webChatContain10 === void 0 ? void 0 : _props$webChatContain10.background) ?? ""}
|
|
220
|
+
}
|
|
217
221
|
`), /*#__PURE__*/_react2.default.createElement(_react.Stack, {
|
|
218
|
-
styles: containerStyles
|
|
222
|
+
styles: containerStyles,
|
|
223
|
+
className: "webchat__stacked-layout_container"
|
|
219
224
|
}, /*#__PURE__*/_react2.default.createElement(BasicWebChat, null)));
|
|
220
225
|
};
|
|
221
226
|
exports.WebChatContainerStateful = WebChatContainerStateful;
|
|
@@ -257,15 +257,17 @@ export const chatSDKStateCleanUp = chatSDK => {
|
|
|
257
257
|
export const endVoiceVideoCallIfOngoing = async (chatSDK, dispatch) => {
|
|
258
258
|
let callId = "";
|
|
259
259
|
try {
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
260
|
+
if (chatSDK.isVoiceVideoCallingEnabled()) {
|
|
261
|
+
const voiceVideoCallingSdk = await chatSDK.getVoiceVideoCalling();
|
|
262
|
+
if (voiceVideoCallingSdk && voiceVideoCallingSdk.isInACall()) {
|
|
263
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
264
|
+
callId = voiceVideoCallingSdk.callId;
|
|
265
|
+
voiceVideoCallingSdk.stopCall();
|
|
266
|
+
TelemetryHelper.logCallingEvent(LogLevel.INFO, {
|
|
267
|
+
Event: TelemetryEvent.EndCallButtonClick
|
|
268
|
+
}, callId);
|
|
269
|
+
callingStateCleanUp(dispatch);
|
|
270
|
+
}
|
|
269
271
|
}
|
|
270
272
|
} catch (error) {
|
|
271
273
|
TelemetryHelper.logCallingEvent(LogLevel.ERROR, {
|
|
@@ -55,7 +55,7 @@ import StartChatErrorPaneStateful from "../../startchaterrorpanestateful/StartCh
|
|
|
55
55
|
import { StartChatFailureType } from "../../../contexts/common/StartChatFailureType";
|
|
56
56
|
import { executeReducer } from "../../../contexts/createReducer";
|
|
57
57
|
export const LiveChatWidgetStateful = props => {
|
|
58
|
-
var _props$webChatContain, _props$styleProps, _props$controlProps, _props$controlProps3, _state$appStates7, _props$webChatContain5, _state$appStates14, _props$
|
|
58
|
+
var _props$webChatContain, _props$styleProps, _props$controlProps, _props$controlProps3, _state$appStates7, _props$webChatContain5, _state$appStates14, _props$webChatContain7, _props$webChatContain8, _props$controlProps12, _props$draggableChatW, _props$draggableChatW2, _props$draggableChatW3, _props$draggableChatW4, _props$draggableChatW5, _props$webChatContain9, _props$webChatContain10, _props$webChatContain11, _props$webChatContain12, _livechatProps$webCha, _livechatProps$styleP, _livechatProps$contro, _livechatProps$contro2, _livechatProps$compon, _livechatProps$contro3, _livechatProps$compon2, _livechatProps$contro4, _livechatProps$compon3, _livechatProps$contro5, _livechatProps$compon4, _livechatProps$contro6, _livechatProps$compon5, _livechatProps$contro7, _livechatProps$compon6, _livechatProps$contro8, _livechatProps$compon7, _livechatProps$contro9, _livechatProps$compon8, _livechatProps$contro10, _livechatProps$contro11, _livechatProps$compon9, _livechatProps$contro12, _livechatProps$compon10, _livechatProps$contro13, _livechatProps$compon11, _livechatProps$compon12, _livechatProps$compon13;
|
|
59
59
|
const [state, dispatch] = useChatContextStore();
|
|
60
60
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
61
61
|
const [adapter, setAdapter] = useChatAdapterStore();
|
|
@@ -644,6 +644,15 @@ export const LiveChatWidgetStateful = props => {
|
|
|
644
644
|
useEffect(() => {
|
|
645
645
|
handleChatDisconnect(props, state, setWebChatStyles);
|
|
646
646
|
}, [state.appStates.chatDisconnectEventReceived]);
|
|
647
|
+
|
|
648
|
+
// if props state gets updates we need to update the renderingMiddlewareProps in the state
|
|
649
|
+
useEffect(() => {
|
|
650
|
+
var _props$webChatContain6;
|
|
651
|
+
dispatch({
|
|
652
|
+
type: LiveChatWidgetActionType.SET_RENDERING_MIDDLEWARE_PROPS,
|
|
653
|
+
payload: (_props$webChatContain6 = props.webChatContainerProps) === null || _props$webChatContain6 === void 0 ? void 0 : _props$webChatContain6.renderingMiddlewareProps
|
|
654
|
+
});
|
|
655
|
+
}, [(_props$webChatContain7 = props.webChatContainerProps) === null || _props$webChatContain7 === void 0 ? void 0 : _props$webChatContain7.renderingMiddlewareProps]);
|
|
647
656
|
const initiateEndChatOnBrowserUnload = () => {
|
|
648
657
|
var _DataStoreManager$cli;
|
|
649
658
|
TelemetryHelper.logActionEvent(LogLevel.INFO, {
|
|
@@ -679,7 +688,7 @@ export const LiveChatWidgetStateful = props => {
|
|
|
679
688
|
const webChatProps = initWebChatComposer(props, state, dispatch, chatSDK, endChatRelay);
|
|
680
689
|
const downloadTranscriptProps = createDownloadTranscriptProps(props.downloadTranscriptProps, {
|
|
681
690
|
...(defaultWebChatContainerStatefulProps === null || defaultWebChatContainerStatefulProps === void 0 ? void 0 : defaultWebChatContainerStatefulProps.webChatStyles),
|
|
682
|
-
...((_props$
|
|
691
|
+
...((_props$webChatContain8 = props.webChatContainerProps) === null || _props$webChatContain8 === void 0 ? void 0 : _props$webChatContain8.webChatStyles)
|
|
683
692
|
}, props.webChatContainerProps);
|
|
684
693
|
const livechatProps = {
|
|
685
694
|
...props,
|
|
@@ -730,8 +739,8 @@ export const LiveChatWidgetStateful = props => {
|
|
|
730
739
|
`), /*#__PURE__*/React.createElement(DraggableChatWidget, chatWidgetDraggableConfig, /*#__PURE__*/React.createElement(Composer, _extends({}, webChatProps, {
|
|
731
740
|
styleOptions: {
|
|
732
741
|
...webChatStyles,
|
|
733
|
-
bubbleBackground: ((_props$
|
|
734
|
-
bubbleTextColor: ((_props$
|
|
742
|
+
bubbleBackground: ((_props$webChatContain9 = props.webChatContainerProps) === null || _props$webChatContain9 === void 0 ? void 0 : (_props$webChatContain10 = _props$webChatContain9.adaptiveCardStyles) === null || _props$webChatContain10 === void 0 ? void 0 : _props$webChatContain10.background) ?? defaultAdaptiveCardStyles.background,
|
|
743
|
+
bubbleTextColor: ((_props$webChatContain11 = props.webChatContainerProps) === null || _props$webChatContain11 === void 0 ? void 0 : (_props$webChatContain12 = _props$webChatContain11.adaptiveCardStyles) === null || _props$webChatContain12 === void 0 ? void 0 : _props$webChatContain12.color) ?? defaultAdaptiveCardStyles.color
|
|
735
744
|
},
|
|
736
745
|
directLine: ((_livechatProps$webCha = livechatProps.webChatContainerProps) === null || _livechatProps$webCha === void 0 ? void 0 : _livechatProps$webCha.directLine) ?? adapter ?? defaultWebChatContainerStatefulProps.directLine
|
|
737
746
|
}), /*#__PURE__*/React.createElement(Stack, {
|
|
@@ -47,7 +47,7 @@ const createMagicCodeSuccessResponse = signin => {
|
|
|
47
47
|
};
|
|
48
48
|
};
|
|
49
49
|
export const WebChatContainerStateful = props => {
|
|
50
|
-
var _webChatContainerProp, _webChatContainerProp2, _webChatContainerProp3, _webChatContainerProp4, _webChatContainerProp5, _webChatContainerProp6, _props$webChatContain5, _props$webChatContain6, _defaultWebChatContai, _props$webChatContain7, _props$webChatContain8, _defaultWebChatContai2, _webChatContainerProp7, _webChatContainerProp8, _webChatContainerProp9, _webChatContainerProp10, _webChatContainerProp11, _webChatContainerProp12, _webChatContainerProp13, _webChatContainerProp14;
|
|
50
|
+
var _webChatContainerProp, _webChatContainerProp2, _webChatContainerProp3, _webChatContainerProp4, _webChatContainerProp5, _webChatContainerProp6, _props$webChatContain5, _props$webChatContain6, _defaultWebChatContai, _props$webChatContain7, _props$webChatContain8, _defaultWebChatContai2, _webChatContainerProp7, _webChatContainerProp8, _webChatContainerProp9, _webChatContainerProp10, _webChatContainerProp11, _webChatContainerProp12, _webChatContainerProp13, _webChatContainerProp14, _props$webChatContain9, _props$webChatContain10;
|
|
51
51
|
const {
|
|
52
52
|
BasicWebChat
|
|
53
53
|
} = Components;
|
|
@@ -206,8 +206,13 @@ export const WebChatContainerStateful = props => {
|
|
|
206
206
|
.webchat__bubble:not(.webchat__bubble--from-user) .webchat__bubble__content {
|
|
207
207
|
border-radius: 0 !important; /* Override border-radius */
|
|
208
208
|
}
|
|
209
|
+
|
|
210
|
+
.webchat__stacked-layout_container>div {
|
|
211
|
+
background: ${(props === null || props === void 0 ? void 0 : (_props$webChatContain9 = props.webChatContainerProps) === null || _props$webChatContain9 === void 0 ? void 0 : (_props$webChatContain10 = _props$webChatContain9.containerStyles) === null || _props$webChatContain10 === void 0 ? void 0 : _props$webChatContain10.background) ?? ""}
|
|
212
|
+
}
|
|
209
213
|
`), /*#__PURE__*/React.createElement(Stack, {
|
|
210
|
-
styles: containerStyles
|
|
214
|
+
styles: containerStyles,
|
|
215
|
+
className: "webchat__stacked-layout_container"
|
|
211
216
|
}, /*#__PURE__*/React.createElement(BasicWebChat, null)));
|
|
212
217
|
};
|
|
213
218
|
export default WebChatContainerStateful;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/omnichannel-chat-widget",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.5-main.fbe38da",
|
|
4
4
|
"description": "Microsoft Omnichannel Chat Widget",
|
|
5
5
|
"main": "lib/cjs/index.js",
|
|
6
6
|
"types": "lib/types/index.d.ts",
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
},
|
|
76
76
|
"dependencies": {
|
|
77
77
|
"@microsoft/omnichannel-chat-components": "1.1.5",
|
|
78
|
-
"@microsoft/omnichannel-chat-sdk": "^1.8.
|
|
78
|
+
"@microsoft/omnichannel-chat-sdk": "^1.8.1",
|
|
79
79
|
"abort-controller-es5": "^2.0.1",
|
|
80
80
|
"dompurify": "^2.3.4",
|
|
81
81
|
"markdown-it": "^12.3.2",
|