@microsoft/omnichannel-chat-widget 1.7.3-main.112d01b → 1.7.3-main.2f6e3c2

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.
Files changed (87) hide show
  1. package/lib/cjs/common/Constants.js +1 -0
  2. package/lib/cjs/common/telemetry/TelemetryConstants.js +3 -0
  3. package/lib/cjs/components/livechatwidget/LiveChatWidget.js +6 -1
  4. package/lib/cjs/components/livechatwidget/common/ActivitySubscriber/BotAuthActivitySubscriber.js +15 -6
  5. package/lib/cjs/components/livechatwidget/common/ActivitySubscriber/HiddenAdaptiveCardActivitySubscriber.js +77 -0
  6. package/lib/cjs/components/livechatwidget/common/chatDisconnectHelper.js +2 -2
  7. package/lib/cjs/components/livechatwidget/common/createAdapter.js +15 -2
  8. package/lib/cjs/components/livechatwidget/common/createInternetConnectionChangeHandler.js +6 -2
  9. package/lib/cjs/components/livechatwidget/common/createMarkdown.js +2 -2
  10. package/lib/cjs/components/livechatwidget/common/endChat.js +20 -5
  11. package/lib/cjs/components/livechatwidget/common/getMockChatSDKIfApplicable.js +26 -0
  12. package/lib/cjs/components/livechatwidget/common/helpers/markdownHelper.js +23 -0
  13. package/lib/cjs/components/livechatwidget/common/overridePropsOnMockIfApplicable.js +41 -0
  14. package/lib/cjs/components/livechatwidget/common/startChat.js +37 -28
  15. package/lib/cjs/components/livechatwidget/common/startChatErrorHandler.js +6 -6
  16. package/lib/cjs/components/livechatwidget/common/updateSessionDataForTelemetry.js +8 -3
  17. package/lib/cjs/components/livechatwidget/interfaces/IBotAuthActivitySubscriberOptionalParams.js +1 -0
  18. package/lib/cjs/components/livechatwidget/interfaces/IMockProps.js +7 -0
  19. package/lib/cjs/components/livechatwidget/livechatwidgetstateful/LiveChatWidgetStateful.js +30 -0
  20. package/lib/cjs/components/webchatcontainerstateful/common/DemoChatAdapter.js +87 -0
  21. package/lib/cjs/components/webchatcontainerstateful/common/DemoChatSDK.js +17 -0
  22. package/lib/cjs/components/webchatcontainerstateful/common/DesignerChatAdapter.js +41 -0
  23. package/lib/cjs/components/webchatcontainerstateful/common/DesignerChatSDK.js +17 -0
  24. package/lib/cjs/components/webchatcontainerstateful/common/MockBotCardCommandType.js +14 -0
  25. package/lib/cjs/components/webchatcontainerstateful/common/MockBotCommand.js +19 -0
  26. package/lib/cjs/components/webchatcontainerstateful/common/mockchatsdk.js +3 -0
  27. package/lib/cjs/components/webchatcontainerstateful/common/utils/attachmentActivityUtils.js +71 -0
  28. package/lib/cjs/components/webchatcontainerstateful/common/utils/chatAdapterUtils.js +90 -0
  29. package/lib/cjs/components/webchatcontainerstateful/interfaces/IBotAuthConfig.js +1 -0
  30. package/lib/cjs/plugins/createChatTranscript.js +84 -0
  31. package/lib/cjs/plugins/newMessageEventHandler.js +4 -2
  32. package/lib/esm/common/Constants.js +1 -0
  33. package/lib/esm/common/telemetry/TelemetryConstants.js +3 -0
  34. package/lib/esm/components/livechatwidget/LiveChatWidget.js +6 -1
  35. package/lib/esm/components/livechatwidget/common/ActivitySubscriber/BotAuthActivitySubscriber.js +15 -6
  36. package/lib/esm/components/livechatwidget/common/ActivitySubscriber/HiddenAdaptiveCardActivitySubscriber.js +70 -0
  37. package/lib/esm/components/livechatwidget/common/chatDisconnectHelper.js +3 -2
  38. package/lib/esm/components/livechatwidget/common/createAdapter.js +14 -2
  39. package/lib/esm/components/livechatwidget/common/createInternetConnectionChangeHandler.js +6 -2
  40. package/lib/esm/components/livechatwidget/common/createMarkdown.js +2 -2
  41. package/lib/esm/components/livechatwidget/common/endChat.js +20 -5
  42. package/lib/esm/components/livechatwidget/common/getMockChatSDKIfApplicable.js +20 -0
  43. package/lib/esm/components/livechatwidget/common/helpers/markdownHelper.js +15 -0
  44. package/lib/esm/components/livechatwidget/common/overridePropsOnMockIfApplicable.js +34 -0
  45. package/lib/esm/components/livechatwidget/common/startChat.js +37 -28
  46. package/lib/esm/components/livechatwidget/common/startChatErrorHandler.js +7 -7
  47. package/lib/esm/components/livechatwidget/common/updateSessionDataForTelemetry.js +7 -2
  48. package/lib/esm/components/livechatwidget/interfaces/IBotAuthActivitySubscriberOptionalParams.js +1 -0
  49. package/lib/esm/components/livechatwidget/interfaces/IMockProps.js +6 -0
  50. package/lib/esm/components/livechatwidget/livechatwidgetstateful/LiveChatWidgetStateful.js +31 -1
  51. package/lib/esm/components/webchatcontainerstateful/common/DemoChatAdapter.js +79 -0
  52. package/lib/esm/components/webchatcontainerstateful/common/DemoChatSDK.js +10 -0
  53. package/lib/esm/components/webchatcontainerstateful/common/DesignerChatAdapter.js +33 -0
  54. package/lib/esm/components/webchatcontainerstateful/common/DesignerChatSDK.js +10 -0
  55. package/lib/esm/components/webchatcontainerstateful/common/MockBotCardCommandType.js +7 -0
  56. package/lib/esm/components/webchatcontainerstateful/common/MockBotCommand.js +12 -0
  57. package/lib/esm/components/webchatcontainerstateful/common/mockchatsdk.js +3 -0
  58. package/lib/esm/components/webchatcontainerstateful/common/utils/attachmentActivityUtils.js +61 -0
  59. package/lib/esm/components/webchatcontainerstateful/common/utils/chatAdapterUtils.js +77 -0
  60. package/lib/esm/components/webchatcontainerstateful/interfaces/IBotAuthConfig.js +1 -0
  61. package/lib/esm/plugins/createChatTranscript.js +84 -0
  62. package/lib/esm/plugins/newMessageEventHandler.js +4 -2
  63. package/lib/types/common/Constants.d.ts +1 -0
  64. package/lib/types/common/telemetry/TelemetryConstants.d.ts +4 -1
  65. package/lib/types/components/livechatwidget/common/ActivitySubscriber/BotAuthActivitySubscriber.d.ts +4 -1
  66. package/lib/types/components/livechatwidget/common/ActivitySubscriber/HiddenAdaptiveCardActivitySubscriber.d.ts +7 -0
  67. package/lib/types/components/livechatwidget/common/createAdapter.d.ts +2 -1
  68. package/lib/types/components/livechatwidget/common/getMockChatSDKIfApplicable.d.ts +1 -0
  69. package/lib/types/components/livechatwidget/common/helpers/markdownHelper.d.ts +2 -0
  70. package/lib/types/components/livechatwidget/common/overridePropsOnMockIfApplicable.d.ts +3 -0
  71. package/lib/types/components/livechatwidget/common/updateSessionDataForTelemetry.d.ts +1 -1
  72. package/lib/types/components/livechatwidget/interfaces/IBotAuthActivitySubscriberOptionalParams.d.ts +4 -0
  73. package/lib/types/components/livechatwidget/interfaces/ILiveChatWidgetProps.d.ts +2 -0
  74. package/lib/types/components/livechatwidget/interfaces/IMockProps.d.ts +8 -0
  75. package/lib/types/components/webchatcontainerstateful/common/DemoChatAdapter.d.ts +10 -0
  76. package/lib/types/components/webchatcontainerstateful/common/DemoChatSDK.d.ts +6 -0
  77. package/lib/types/components/webchatcontainerstateful/common/DesignerChatAdapter.d.ts +8 -0
  78. package/lib/types/components/webchatcontainerstateful/common/DesignerChatSDK.d.ts +6 -0
  79. package/lib/types/components/webchatcontainerstateful/common/MockBotCardCommandType.d.ts +6 -0
  80. package/lib/types/components/webchatcontainerstateful/common/MockBotCommand.d.ts +11 -0
  81. package/lib/types/components/webchatcontainerstateful/common/mockadapter.d.ts +2 -1
  82. package/lib/types/components/webchatcontainerstateful/common/mockchatsdk.d.ts +6 -0
  83. package/lib/types/components/webchatcontainerstateful/common/utils/attachmentActivityUtils.d.ts +9 -0
  84. package/lib/types/components/webchatcontainerstateful/common/utils/chatAdapterUtils.d.ts +9 -0
  85. package/lib/types/components/webchatcontainerstateful/interfaces/IBotAuthConfig.d.ts +4 -0
  86. package/lib/types/components/webchatcontainerstateful/interfaces/IWebChatContainerStatefulProps.d.ts +2 -0
  87. package/package.json +3 -3
@@ -354,6 +354,23 @@ const LiveChatWidgetStateful = props => {
354
354
  }
355
355
  }
356
356
  });
357
+ _omnichannelChatComponents.BroadcastService.getMessageByEventName(_TelemetryConstants.BroadcastEvent.NetworkReconnected).subscribe(async () => {
358
+ var _window2, _window2$location;
359
+ if ((0, _utils.isThisSessionPopout)((_window2 = window) === null || _window2 === void 0 ? void 0 : (_window2$location = _window2.location) === null || _window2$location === void 0 ? void 0 : _window2$location.href)) {
360
+ return;
361
+ }
362
+ const conversationDetails = await (0, _utils.getConversationDetailsCall)(chatSDK);
363
+ if ((conversationDetails === null || conversationDetails === void 0 ? void 0 : conversationDetails.state) === _Constants.LiveWorkItemState.WrapUp || (conversationDetails === null || conversationDetails === void 0 ? void 0 : conversationDetails.state) === _Constants.LiveWorkItemState.Closed) {
364
+ dispatch({
365
+ type: _LiveChatWidgetActionType.LiveChatWidgetActionType.SET_CHAT_DISCONNECT_EVENT_RECEIVED,
366
+ payload: true
367
+ });
368
+ _TelemetryHelper.TelemetryHelper.logActionEvent(_TelemetryConstants.LogLevel.INFO, {
369
+ Event: _TelemetryConstants.TelemetryEvent.ChatDisconnectThreadEventReceived,
370
+ Description: "Chat disconnected due to timeout, user went offline or blocked the device (including closing laptop)"
371
+ });
372
+ }
373
+ });
357
374
 
358
375
  /**
359
376
  * This will allow to sync multiple tabs to handle minimize and maximize state,
@@ -671,11 +688,24 @@ const LiveChatWidgetStateful = props => {
671
688
 
672
689
  // Handle Chat disconnect cases
673
690
  (0, _react2.useEffect)(() => {
691
+ var _inMemoryState$appSta5;
674
692
  const inMemoryState = (0, _createReducer.executeReducer)(state, {
675
693
  type: _LiveChatWidgetActionType.LiveChatWidgetActionType.GET_IN_MEMORY_STATE,
676
694
  payload: null
677
695
  });
678
696
  (0, _chatDisconnectHelper.handleChatDisconnect)(props, inMemoryState, setWebChatStyles);
697
+ const chatDisconnectState = inMemoryState === null || inMemoryState === void 0 ? void 0 : (_inMemoryState$appSta5 = inMemoryState.appStates) === null || _inMemoryState$appSta5 === void 0 ? void 0 : _inMemoryState$appSta5.chatDisconnectEventReceived;
698
+ if (chatDisconnectState && adapter) {
699
+ try {
700
+ adapter.end();
701
+ adapter.close();
702
+ } catch (e) {
703
+ _TelemetryHelper.TelemetryHelper.logWebChatEvent(_TelemetryConstants.LogLevel.ERROR, {
704
+ Event: _TelemetryConstants.TelemetryEvent.EndingAdapterAfterDisconnectionError,
705
+ Description: _Constants.WidgetLoadCustomErrorString.CloseAdapterAfterDisconnectionErrorString
706
+ });
707
+ }
708
+ }
679
709
  }, [state.appStates.chatDisconnectEventReceived]);
680
710
 
681
711
  // if props state gets updates we need to update the renderingMiddlewareProps in the state
@@ -0,0 +1,87 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.DemoChatAdapter = void 0;
7
+ require("rxjs/add/operator/share");
8
+ require("rxjs/add/observable/of");
9
+ var _Observable = require("rxjs/Observable");
10
+ var _mockadapter = _interopRequireDefault(require("./mockadapter"));
11
+ var _chatAdapterUtils = require("./utils/chatAdapterUtils");
12
+ var _attachmentActivityUtils = require("./utils/attachmentActivityUtils");
13
+ var _MockBotCommand = _interopRequireDefault(require("./MockBotCommand"));
14
+ var _MockBotCardCommandType = _interopRequireDefault(require("./MockBotCardCommandType"));
15
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16
+ class DemoChatAdapter extends _mockadapter.default {
17
+ constructor() {
18
+ super();
19
+ setTimeout(() => {
20
+ (0, _chatAdapterUtils.postSystemMessageActivity)(this.activityObserver, "You're currently using a demo.", 0);
21
+ (0, _chatAdapterUtils.postBotMessageActivity)(this.activityObserver, "Type `/help` to learn more", undefined, 0); // send init message from bot
22
+ }, 1000);
23
+ }
24
+ postBotCommandsActivity() {
25
+ let delay = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 1000;
26
+ (0, _chatAdapterUtils.postBotAttachmentActivity)(this.activityObserver, [{
27
+ contentType: "application/vnd.microsoft.card.thumbnail",
28
+ content: {
29
+ buttons: [{
30
+ title: "Send system message",
31
+ type: "imBack",
32
+ value: "send system message"
33
+ }, {
34
+ title: "Send typing",
35
+ type: "imBack",
36
+ value: "send typing"
37
+ }, {
38
+ title: "Send bot message",
39
+ type: "imBack",
40
+ value: "send bot message"
41
+ }],
42
+ title: "Commands"
43
+ }
44
+ }], delay);
45
+ }
46
+ postActivity(activity) {
47
+ if (activity) {
48
+ (0, _chatAdapterUtils.postEchoActivity)(this.activityObserver, activity, _chatAdapterUtils.customerUser);
49
+ if (activity.text) {
50
+ switch (true) {
51
+ case activity.text === _MockBotCommand.default.Help:
52
+ this.postBotCommandsActivity();
53
+ break;
54
+ case activity.text === _MockBotCommand.default.SendSystemMessage:
55
+ (0, _chatAdapterUtils.postSystemMessageActivity)(this.activityObserver, "Contoso has joined the chat.");
56
+ break;
57
+ case activity.text === _MockBotCommand.default.SendTyping:
58
+ (0, _chatAdapterUtils.postBotTypingActivity)(this.activityObserver);
59
+ break;
60
+ case activity.text === _MockBotCommand.default.SendAttachment:
61
+ (0, _chatAdapterUtils.postBotAttachmentActivity)(this.activityObserver, [(0, _attachmentActivityUtils.createJpgFileAttachment)()]);
62
+ break;
63
+ case activity.text === _MockBotCommand.default.SendBotMessage:
64
+ (0, _chatAdapterUtils.postBotMessageActivity)(this.activityObserver, "Hi, how can I help you?");
65
+ break;
66
+ case activity.text === `${_MockBotCommand.default.Card} ${_MockBotCardCommandType.default.Signin}`:
67
+ (0, _chatAdapterUtils.postBotAttachmentActivity)(this.activityObserver, [(0, _attachmentActivityUtils.createSigninCardAttachment)()]);
68
+ break;
69
+ case activity.text === `${_MockBotCommand.default.Card} ${_MockBotCardCommandType.default.Hero}`:
70
+ (0, _chatAdapterUtils.postBotAttachmentActivity)(this.activityObserver, [(0, _attachmentActivityUtils.createHeroCardAttachment)()]);
71
+ break;
72
+ case activity.text === `${_MockBotCommand.default.Card} ${_MockBotCardCommandType.default.Thumbnail}`:
73
+ (0, _chatAdapterUtils.postBotAttachmentActivity)(this.activityObserver, [(0, _attachmentActivityUtils.createThumbnailCardAttachment)()]);
74
+ break;
75
+ case activity.text.startsWith(`${_MockBotCommand.default.Bot} `):
76
+ (0, _chatAdapterUtils.postBotMessageActivity)(this.activityObserver, activity.text.substring(5));
77
+ break;
78
+ case activity.text.startsWith(`${_MockBotCommand.default.System} `):
79
+ (0, _chatAdapterUtils.postSystemMessageActivity)(this.activityObserver, activity.text.substring(8));
80
+ break;
81
+ }
82
+ }
83
+ }
84
+ return _Observable.Observable.of(activity.id || "");
85
+ }
86
+ }
87
+ exports.DemoChatAdapter = DemoChatAdapter;
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.DemoChatSDK = void 0;
7
+ var _DemoChatAdapter = require("./DemoChatAdapter");
8
+ var _mockchatsdk = require("./mockchatsdk");
9
+ class DemoChatSDK extends _mockchatsdk.MockChatSDK {
10
+ constructor() {
11
+ super();
12
+ }
13
+ createChatAdapter() {
14
+ return new _DemoChatAdapter.DemoChatAdapter();
15
+ }
16
+ }
17
+ exports.DemoChatSDK = DemoChatSDK;
@@ -0,0 +1,41 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.DesignerChatAdapter = void 0;
7
+ var _Observable = require("rxjs/Observable");
8
+ var _mockadapter = _interopRequireDefault(require("./mockadapter"));
9
+ var _chatAdapterUtils = require("./utils/chatAdapterUtils");
10
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
11
+ class DesignerChatAdapter extends _mockadapter.default {
12
+ constructor() {
13
+ super();
14
+ setTimeout(() => {
15
+ (0, _chatAdapterUtils.postBotMessageActivity)(this.activityObserver, "Id venenatis a condimentum vitae?", undefined, 0);
16
+ this.postUserActivity("Diam donec adipiscing tristique risus nec feugiat in fermentum", 0);
17
+ (0, _chatAdapterUtils.postSystemMessageActivity)(this.activityObserver, "We are finding the best agent for your inquiry, please hold ...", 100);
18
+ (0, _chatAdapterUtils.postSystemMessageActivity)(this.activityObserver, "John has joined the chat", 100);
19
+ (0, _chatAdapterUtils.postBotMessageActivity)(this.activityObserver, "Neque viverra justo nec ultrices dui sapien eget mi proin", undefined, 100);
20
+ }, 1000);
21
+ }
22
+ postUserActivity(text) {
23
+ let delay = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 1000;
24
+ setTimeout(() => {
25
+ (0, _chatAdapterUtils.postEchoActivity)(this.activityObserver, {
26
+ text,
27
+ from: {
28
+ ..._chatAdapterUtils.customerUser
29
+ },
30
+ type: "message"
31
+ }, _chatAdapterUtils.customerUser, 0);
32
+ }, delay);
33
+ }
34
+ postActivity(activity) {
35
+ if (activity) {
36
+ (0, _chatAdapterUtils.postEchoActivity)(this.activityObserver, activity, _chatAdapterUtils.customerUser);
37
+ }
38
+ return _Observable.Observable.of(activity.id || "");
39
+ }
40
+ }
41
+ exports.DesignerChatAdapter = DesignerChatAdapter;
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.DesignerChatSDK = void 0;
7
+ var _DesignerChatAdapter = require("./DesignerChatAdapter");
8
+ var _mockchatsdk = require("./mockchatsdk");
9
+ class DesignerChatSDK extends _mockchatsdk.MockChatSDK {
10
+ constructor() {
11
+ super();
12
+ }
13
+ createChatAdapter() {
14
+ return new _DesignerChatAdapter.DesignerChatAdapter();
15
+ }
16
+ }
17
+ exports.DesignerChatSDK = DesignerChatSDK;
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var MockBotCardCommandType;
8
+ (function (MockBotCardCommandType) {
9
+ MockBotCardCommandType["Hero"] = "hero";
10
+ MockBotCardCommandType["Signin"] = "signin";
11
+ MockBotCardCommandType["Thumbnail"] = "thumbnail";
12
+ })(MockBotCardCommandType || (MockBotCardCommandType = {}));
13
+ var _default = MockBotCardCommandType;
14
+ exports.default = _default;
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var MockBotCommand;
8
+ (function (MockBotCommand) {
9
+ MockBotCommand["Bot"] = "/bot";
10
+ MockBotCommand["Card"] = "/card";
11
+ MockBotCommand["Help"] = "/help";
12
+ MockBotCommand["SendAttachment"] = "send attachment";
13
+ MockBotCommand["SendBotMessage"] = "send bot message";
14
+ MockBotCommand["SendSystemMessage"] = "send system message";
15
+ MockBotCommand["SendTyping"] = "send typing";
16
+ MockBotCommand["System"] = "/system";
17
+ })(MockBotCommand || (MockBotCommand = {}));
18
+ var _default = MockBotCommand;
19
+ exports.default = _default;
@@ -21,6 +21,9 @@ class MockChatSDK {
21
21
  orgUrl: "https://contoso.crm.dynamics.com"
22
22
  });
23
23
  }
24
+ async initialize() {
25
+ return this.getLiveChatConfig();
26
+ }
24
27
  async startChat() {
25
28
  await this.sleep(1000);
26
29
  }
@@ -0,0 +1,71 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.createThumbnailCardAttachment = exports.createSigninCardAttachment = exports.createJpgFileAttachment = exports.createHeroCardAttachment = void 0;
7
+ const createJpgFileAttachment = () => {
8
+ return {
9
+ contentType: "image/jpeg",
10
+ name: "600x400.jpg",
11
+ contentUrl: "https://raw.githubusercontent.com/microsoft/omnichannel-chat-sdk/e7e75d4ede351e1cf2e52f13860d2284848c4af0/playwright/public/images/600x400.jpg"
12
+ };
13
+ };
14
+ exports.createJpgFileAttachment = createJpgFileAttachment;
15
+ const createHeroCardAttachment = () => {
16
+ return {
17
+ contentType: "application/vnd.microsoft.card.hero",
18
+ content: {
19
+ buttons: [{
20
+ title: "Bellevue",
21
+ type: "imBack",
22
+ value: "Bellevue"
23
+ }, {
24
+ title: "Redmond",
25
+ type: "imBack",
26
+ value: "Redmond"
27
+ }, {
28
+ title: "Seattle",
29
+ type: "imBack",
30
+ value: "Seattle"
31
+ }],
32
+ title: "Choose your location"
33
+ }
34
+ };
35
+ };
36
+ exports.createHeroCardAttachment = createHeroCardAttachment;
37
+ const createThumbnailCardAttachment = () => {
38
+ return {
39
+ contentType: "application/vnd.microsoft.card.thumbnail",
40
+ content: {
41
+ title: "Microsoft",
42
+ subtitle: "Our mission is to empower every person and every organization on the planet to achieve more.",
43
+ text: "Microsoft creates platforms and tools powered by AI to deliver innovative solutions that meet the evolving needs of our customers. The technology company is committed to making AI available broadly and doing so responsibly, with a mission to empower every person and every organization on the planet to achieve more.",
44
+ images: [{
45
+ alt: "Microsoft logo",
46
+ url: "https://img-prod-cms-rt-microsoft-com.akamaized.net/cms/api/am/imageFileData/RE1Mu3b?ver=5c31" // logo from https://microsoft.com
47
+ }],
48
+
49
+ buttons: [{
50
+ title: "Learn more",
51
+ type: "openUrl",
52
+ value: "https://www.microsoft.com/"
53
+ }]
54
+ }
55
+ };
56
+ };
57
+ exports.createThumbnailCardAttachment = createThumbnailCardAttachment;
58
+ const createSigninCardAttachment = () => {
59
+ return {
60
+ contentType: "application/vnd.microsoft.card.signin",
61
+ content: {
62
+ text: "Please login",
63
+ buttons: [{
64
+ type: "signin",
65
+ title: "Signin",
66
+ value: "https://login.live.com/"
67
+ }]
68
+ }
69
+ };
70
+ };
71
+ exports.createSigninCardAttachment = createSigninCardAttachment;
@@ -0,0 +1,90 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.postSystemMessageActivity = exports.postEchoActivity = exports.postBotTypingActivity = exports.postBotMessageActivity = exports.postBotAttachmentActivity = exports.customerUser = exports.botUser = void 0;
7
+ var _omnichannelChatSdk = require("@microsoft/omnichannel-chat-sdk");
8
+ const customerUser = {
9
+ id: "usedId",
10
+ name: "User",
11
+ role: "user"
12
+ };
13
+ exports.customerUser = customerUser;
14
+ const botUser = {
15
+ id: "botId",
16
+ name: "Bot",
17
+ role: "bot"
18
+ };
19
+
20
+ // WebChat expects an "echo" activity to confirm the message has been sent successfully
21
+ exports.botUser = botUser;
22
+ const postEchoActivity = function (activityObserver, activity, user) {
23
+ let delay = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : 1000;
24
+ const echoActivity = {
25
+ ...activity,
26
+ id: (0, _omnichannelChatSdk.uuidv4)(),
27
+ from: {
28
+ ...activity.from,
29
+ ...user
30
+ },
31
+ timestamp: new Date().toISOString()
32
+ };
33
+ setTimeout(() => {
34
+ activityObserver === null || activityObserver === void 0 ? void 0 : activityObserver.next(echoActivity); // mock message sent activity
35
+ }, delay);
36
+ };
37
+ exports.postEchoActivity = postEchoActivity;
38
+ const postBotMessageActivity = function (activityObserver, text) {
39
+ let tags = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : "";
40
+ let delay = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : 1000;
41
+ setTimeout(() => {
42
+ activityObserver === null || activityObserver === void 0 ? void 0 : activityObserver.next({
43
+ id: (0, _omnichannelChatSdk.uuidv4)(),
44
+ from: {
45
+ ...botUser
46
+ },
47
+ text,
48
+ type: "message",
49
+ channelData: {
50
+ tags
51
+ },
52
+ timestamp: new Date().toISOString()
53
+ });
54
+ }, delay);
55
+ };
56
+ exports.postBotMessageActivity = postBotMessageActivity;
57
+ const postSystemMessageActivity = function (activityObserver, text) {
58
+ let delay = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 1000;
59
+ postBotMessageActivity(activityObserver, text, "system", delay);
60
+ };
61
+ exports.postSystemMessageActivity = postSystemMessageActivity;
62
+ const postBotTypingActivity = function (activityObserver) {
63
+ let delay = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 1000;
64
+ setTimeout(() => {
65
+ activityObserver === null || activityObserver === void 0 ? void 0 : activityObserver.next({
66
+ id: (0, _omnichannelChatSdk.uuidv4)(),
67
+ from: {
68
+ ...botUser
69
+ },
70
+ type: "typing"
71
+ });
72
+ }, delay);
73
+ };
74
+ exports.postBotTypingActivity = postBotTypingActivity;
75
+ const postBotAttachmentActivity = function (activityObserver) {
76
+ let attachments = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : [];
77
+ let delay = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 1000;
78
+ setTimeout(() => {
79
+ activityObserver === null || activityObserver === void 0 ? void 0 : activityObserver.next({
80
+ id: (0, _omnichannelChatSdk.uuidv4)(),
81
+ from: {
82
+ ...botUser
83
+ },
84
+ attachments,
85
+ type: "message",
86
+ timestamp: new Date().toISOString()
87
+ });
88
+ }, delay);
89
+ };
90
+ exports.postBotAttachmentActivity = postBotAttachmentActivity;
@@ -376,6 +376,90 @@ class TranscriptHTMLBuilder {
376
376
  window.addEventListener("online", () => {
377
377
  document.body.innerHTML = \`${this.networkOnlineMessage} <button onclick="window.location.reload()"> Refresh </button>\`;
378
378
  });
379
+
380
+ document.addEventListener("copy", (event) => {
381
+ const clonedSelectedContent = window.getSelection().getRangeAt(0).cloneContents();
382
+ const copiedContent = document.createElement("div");
383
+ copiedContent.appendChild(clonedSelectedContent);
384
+
385
+ event.clipboardData.setData("text/plain", getAllText(copiedContent));
386
+ event.preventDefault();
387
+ });
388
+
389
+
390
+ getAllText = (element) => {
391
+ let plainText = "";
392
+ Array.from(element.childNodes).forEach((node) => {
393
+ // ignore aria-hidden elements and keyboard help text
394
+ const ariaHiddenAttr = node.attributes ? node.attributes.getNamedItem("aria-hidden") : null;
395
+ if ((ariaHiddenAttr && ariaHiddenAttr.value === "true") || node.classList && node.classList.contains("webchat__keyboard-help")) {
396
+ return;
397
+ }
398
+
399
+ // get all texts inside activity body, including message, translated message, attachment name, adaptive card content, status footer, etc.
400
+ if (node.classList && node.classList.contains("webchat__basic-transcript__activity-body")) {
401
+ plainText += this.processTranscriptActivityNode(node);
402
+ return;
403
+ }
404
+ if (node.nodeType === Node.TEXT_NODE) {
405
+ plainText += node.textContent + '\\n';
406
+ } else {
407
+ plainText += this.getAllText(node);
408
+ }
409
+ });
410
+ return plainText;
411
+ }
412
+
413
+ processTranscriptActivityNode = (node) => {
414
+ const divs = node.getElementsByTagName("div");
415
+ let plainText = "";
416
+
417
+ if (divs && divs.length > 1 && divs[1]) {
418
+ const messageRow = node.querySelector(".webchat__stacked-layout__message-row[aria-roledescription='message']");
419
+ const author = node.querySelector(".message-name");
420
+ const attachmentRow = node.querySelector(".webchat__stacked-layout__attachment-row[aria-roledescription='attachment']");
421
+
422
+ if (messageRow) {
423
+ let message = messageRow.getElementsByClassName("webchat__text-content__markdown");
424
+
425
+ if (message.length === 0) {
426
+ message = messageRow.getElementsByClassName("markdown");
427
+ }
428
+
429
+ if (message.length > 0) {
430
+ plainText += author.textContent + '\\n' + message[0].textContent + '\\n';
431
+ }
432
+ } else if (attachmentRow) {
433
+ const attachment = attachmentRow.getElementsByClassName("webchat__fileContent__fileName");
434
+ const adaptiveCard = this.getAdaptiveCardContent(attachmentRow.querySelector(".ac-container.ac-adaptiveCard"));
435
+
436
+ plainText += attachment && attachment.length > 0 ? author.textContent +'\\n' + attachment[0].textContent +'\\n': author.textContent +'\\n' + adaptiveCard +'\\n';
437
+ }
438
+
439
+ const statusElements = node.getElementsByClassName("webchat__stacked-layout__status");
440
+ if (statusElements.length > 0) {
441
+ const timestampelement = statusElements[0].querySelector(".message-timestamp");
442
+ plainText += timestampelement ? timestampelement.textContent+'\\n\\n' : '\\n';
443
+ }
444
+ }
445
+
446
+ return plainText;
447
+ }
448
+
449
+ getAdaptiveCardContent = (node) => {
450
+ if (!node) {
451
+ return undefined;
452
+ }
453
+
454
+ let plainText = "";
455
+ const rows = node.querySelectorAll(".ac-textBlock p");
456
+ rows.forEach((row) => {
457
+ plainText += row.textContent+ '\\n';
458
+ });
459
+
460
+ return plainText;
461
+ }
462
+
379
463
  <\/script>
380
464
  <div id="transcript"></div>
381
465
  <script>
@@ -20,7 +20,7 @@ const createOnNewAdapterActivityHandler = (chatId, userId) => {
20
20
  const raiseMessageEvent = (activity, isHistoryMessage) => {
21
21
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
22
22
  const polyfillMessagePayloadForEvent = payload => {
23
- var _activity$conversatio, _TelemetryManager$Int;
23
+ var _activity$conversatio, _TelemetryManager$Int, _attachments;
24
24
  return {
25
25
  ...payload,
26
26
  channelData: activity === null || activity === void 0 ? void 0 : activity.channelData,
@@ -29,7 +29,9 @@ const createOnNewAdapterActivityHandler = (chatId, userId) => {
29
29
  id: activity === null || activity === void 0 ? void 0 : activity.id,
30
30
  isChatComplete: false,
31
31
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
32
- text: activity === null || activity === void 0 ? void 0 : activity.text
32
+ text: activity === null || activity === void 0 ? void 0 : activity.text,
33
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
34
+ attachment: (activity === null || activity === void 0 ? void 0 : (_attachments = activity.attachments) === null || _attachments === void 0 ? void 0 : _attachments.length) >= 1 ? activity === null || activity === void 0 ? void 0 : activity.attachments : []
33
35
  };
34
36
  };
35
37
  if ((activity === null || activity === void 0 ? void 0 : activity.type) === _Constants.Constants.message) {
@@ -276,6 +276,7 @@ _defineProperty(WidgetLoadTelemetryMessage, "PersistedStateRetrievedMessage", "P
276
276
  export class WidgetLoadCustomErrorString {}
277
277
  _defineProperty(WidgetLoadCustomErrorString, "AuthenticationFailedErrorString", "Authentication was not successful");
278
278
  _defineProperty(WidgetLoadCustomErrorString, "NetworkErrorString", "Network Error");
279
+ _defineProperty(WidgetLoadCustomErrorString, "CloseAdapterAfterDisconnectionErrorString", "Error trying to end/close chat adapter after the widget is back on-line, for an already disconnected session");
279
280
  export class PrepareEndChatDescriptionConstants {}
280
281
  _defineProperty(PrepareEndChatDescriptionConstants, "ConversationEndedByCustomerWithoutPostChat", "Conversation ended by customer. Post chat not configured or should not show.");
281
282
  _defineProperty(PrepareEndChatDescriptionConstants, "ConversationEndedByCustomerWithInvalidPostChat", "Conversation ended by customer. Post chat context is invalid.");
@@ -95,6 +95,7 @@ export let TelemetryEvent;
95
95
  TelemetryEvent["GetConversationDetailsCallStarted"] = "GetConversationDetailsCallStarted";
96
96
  TelemetryEvent["GetConversationDetailsCallFailed"] = "GetConversationDetailsCallFailed";
97
97
  TelemetryEvent["EndChatSDKCallFailed"] = "EndChatSDKCallFailed";
98
+ TelemetryEvent["DisconnectEndChatSDKCallFailed"] = "DisconnectEndChatSDKCallFailed";
98
99
  TelemetryEvent["GetChatReconnectContextSDKCallStarted"] = "GetChatReconnectContextSDKCallStarted";
99
100
  TelemetryEvent["GetChatReconnectContextSDKCallFailed"] = "GetChatReconnectContextSDKCallFailed";
100
101
  TelemetryEvent["ParseAdaptiveCardFailed"] = "ParseAdaptiveCardFailed";
@@ -208,6 +209,8 @@ export let TelemetryEvent;
208
209
  TelemetryEvent["PostChatSurveyLoadingPaneLoaded"] = "PostChatSurveyLoadingPaneLoaded";
209
210
  TelemetryEvent["PostChatSurveyLoaded"] = "PostChatSurveyLoaded";
210
211
  TelemetryEvent["ChatDisconnectThreadEventReceived"] = "ChatDisconnectThreadEventReceived";
212
+ TelemetryEvent["HiddenAdaptiveCardMessageReceived"] = "HiddenAdaptiveCardMessageReceived";
213
+ TelemetryEvent["EndingAdapterAfterDisconnectionError"] = "EndingAdapterAfterDisconnectionError";
211
214
  })(TelemetryEvent || (TelemetryEvent = {}));
212
215
  export class TelemetryConstants {
213
216
  static map(eventTypeOrScenarioType) {
@@ -5,13 +5,18 @@ import { ChatSDKStore } from "../../contexts/ChatSDKStore";
5
5
  import LiveChatWidgetStateful from "./livechatwidgetstateful/LiveChatWidgetStateful";
6
6
  import { createReducer } from "../../contexts/createReducer";
7
7
  import { getLiveChatWidgetContextInitialState } from "../../contexts/common/LiveChatWidgetContextInitialState";
8
+ import { getMockChatSDKIfApplicable } from "./common/getMockChatSDKIfApplicable";
9
+ import overridePropsOnMockIfApplicable from "./common/overridePropsOnMockIfApplicable";
8
10
  export const LiveChatWidget = props => {
11
+ var _props$mock;
9
12
  const reducer = createReducer();
10
13
  const [state, dispatch] = useReducer(reducer, getLiveChatWidgetContextInitialState(props));
11
14
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
12
15
  const [adapter, setAdapter] = useState(undefined);
16
+ const chatSDK = getMockChatSDKIfApplicable(props.chatSDK, props === null || props === void 0 ? void 0 : (_props$mock = props.mock) === null || _props$mock === void 0 ? void 0 : _props$mock.type);
17
+ overridePropsOnMockIfApplicable(props);
13
18
  return /*#__PURE__*/React.createElement(ChatSDKStore.Provider, {
14
- value: props.chatSDK
19
+ value: chatSDK
15
20
  }, /*#__PURE__*/React.createElement(ChatAdapterStore.Provider, {
16
21
  value: [adapter, setAdapter]
17
22
  }, /*#__PURE__*/React.createElement(ChatContextStore.Provider, {
@@ -9,8 +9,6 @@ import { TelemetryHelper } from "../../../../common/telemetry/TelemetryHelper";
9
9
  const supportedSignInCardContentTypes = ["application/vnd.microsoft.card.signin", "application/vnd.microsoft.card.oauth"];
10
10
  const botOauthUrlRegex = /[\S]+.botframework.com\/api\/oauth\/signin\?signin=([\S]+)/;
11
11
  const delay = t => new Promise(resolve => setTimeout(resolve, t));
12
- const fetchBotAuthConfigRetries = 3;
13
- const fetchBotAuthConfigRetryInterval = 1000;
14
12
  let response;
15
13
  const extractSignInId = signInUrl => {
16
14
  const result = botOauthUrlRegex.exec(signInUrl);
@@ -39,7 +37,7 @@ const extractSasUrl = async attachment => {
39
37
  }
40
38
  return sasUrl;
41
39
  };
42
- const fetchBotAuthConfig = async retries => {
40
+ const fetchBotAuthConfig = async (retries, interval) => {
43
41
  TelemetryHelper.logLoadingEvent(LogLevel.INFO, {
44
42
  Event: TelemetryEvent.SetBotAuthProviderFetchConfig
45
43
  });
@@ -60,14 +58,25 @@ const fetchBotAuthConfig = async retries => {
60
58
  // Base Case
61
59
  throw new Error();
62
60
  }
63
- await delay(fetchBotAuthConfigRetryInterval);
64
- return await fetchBotAuthConfig(--retries);
61
+ await delay(interval);
62
+ return await fetchBotAuthConfig(--retries, interval);
65
63
  };
66
64
  export class BotAuthActivitySubscriber {
67
65
  constructor() {
66
+ let optionalParams = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
68
67
  _defineProperty(this, "observer", void 0);
69
68
  _defineProperty(this, "signInCardSeen", void 0);
69
+ _defineProperty(this, "fetchBotAuthConfigRetries", void 0);
70
+ _defineProperty(this, "fetchBotAuthConfigRetryInterval", void 0);
70
71
  this.signInCardSeen = new Set();
72
+ this.fetchBotAuthConfigRetries = 3;
73
+ this.fetchBotAuthConfigRetryInterval = 1000;
74
+ if (optionalParams.fetchBotAuthConfigRetries) {
75
+ this.fetchBotAuthConfigRetries = optionalParams.fetchBotAuthConfigRetries;
76
+ }
77
+ if (optionalParams.fetchBotAuthConfigRetryInterval) {
78
+ this.fetchBotAuthConfigRetryInterval = optionalParams.fetchBotAuthConfigRetryInterval;
79
+ }
71
80
  }
72
81
  applicable(activity) {
73
82
  var _activity$attachments;
@@ -106,7 +115,7 @@ export class BotAuthActivitySubscriber {
106
115
  BroadcastService.postMessage(event);
107
116
  }
108
117
  try {
109
- const response = await fetchBotAuthConfig(fetchBotAuthConfigRetries);
118
+ const response = await fetchBotAuthConfig(this.fetchBotAuthConfigRetries, this.fetchBotAuthConfigRetryInterval);
110
119
  if (response === false) {
111
120
  TelemetryHelper.logLoadingEvent(LogLevel.INFO, {
112
121
  Event: TelemetryEvent.SetBotAuthProviderHideCard