@azure/communication-react 1.13.1-alpha-202402280012 → 1.14.0-alpha-202402290012

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.
@@ -173,7 +173,7 @@ function getDefaultExportFromCjs (x) {
173
173
  // Copyright (c) Microsoft Corporation.
174
174
  // Licensed under the MIT License.
175
175
  // GENERATED FILE. DO NOT EDIT MANUALLY.
176
- var telemetryVersion = '1.13.1-alpha-202402280012';
176
+ var telemetryVersion = '1.14.0-alpha-202402290012';
177
177
 
178
178
 
179
179
  var telemetryVersion$1 = /*@__PURE__*/getDefaultExportFromCjs(telemetryVersion);
@@ -10976,7 +10976,7 @@ const calloutMenuProps = Object.assign(Object.assign({}, preventUnwantedDismissP
10976
10976
  const defaultOnMentionRender = (mention) => {
10977
10977
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
10978
10978
  const MsftMention = 'msft-mention';
10979
- return React.createElement(MsftMention, { id: mention.id }, mention.displayText);
10979
+ return (React.createElement(MsftMention, { id: mention.id, key: Math.random().toString() }, mention.displayText));
10980
10980
  };
10981
10981
 
10982
10982
  // Copyright (c) Microsoft Corporation.
@@ -11077,13 +11077,16 @@ const processHtmlToReact = (props) => {
11077
11077
  if (domNode instanceof parse.Element && domNode.attribs) {
11078
11078
  // Transform custom rendering of mentions
11079
11079
  /* @conditional-compile-remove(mention) */
11080
- if (((_a = props.mentionDisplayOptions) === null || _a === void 0 ? void 0 : _a.onRenderMention) && domNode.name === 'msft-mention') {
11080
+ if (domNode.name === 'msft-mention') {
11081
11081
  const { id } = domNode.attribs;
11082
11082
  const mention = {
11083
11083
  id: id,
11084
- displayText: (_b = domNode.children[0].nodeValue) !== null && _b !== void 0 ? _b : ''
11084
+ displayText: (_a = domNode.children[0].nodeValue) !== null && _a !== void 0 ? _a : ''
11085
11085
  };
11086
- return props.mentionDisplayOptions.onRenderMention(mention, defaultOnMentionRender);
11086
+ if ((_b = props.mentionDisplayOptions) === null || _b === void 0 ? void 0 : _b.onRenderMention) {
11087
+ return props.mentionDisplayOptions.onRenderMention(mention, defaultOnMentionRender);
11088
+ }
11089
+ return defaultOnMentionRender(mention);
11087
11090
  }
11088
11091
  // Transform inline images
11089
11092
  /* @conditional-compile-remove(teams-inline-images-and-file-sharing) */
@@ -21718,12 +21721,14 @@ const extractAttachedFilesMetadata = (metadata) => {
21718
21721
  const extractTeamsAttachmentsMetadata = (attachments, resourceCache) => {
21719
21722
  /* @conditional-compile-remove(file-sharing) */
21720
21723
  const files = [];
21724
+ /* @conditional-compile-remove(teams-inline-images-and-file-sharing) */
21721
21725
  const inlineImages = [];
21722
21726
  attachments.forEach((attachment) => {
21723
21727
  var _a, _b, _c;
21724
21728
  const attachmentType = mapAttachmentType(attachment.attachmentType);
21725
21729
  /* @conditional-compile-remove(file-sharing) */
21726
21730
  const contentType = extractAttachmentContentTypeFromName(attachment.name);
21731
+ /* @conditional-compile-remove(teams-inline-images-and-file-sharing) */
21727
21732
  if (attachmentType === 'inlineImage') {
21728
21733
  inlineImages.push({
21729
21734
  attachmentType: attachmentType,
@@ -21745,7 +21750,10 @@ const extractTeamsAttachmentsMetadata = (attachments, resourceCache) => {
21745
21750
  });
21746
21751
  }
21747
21752
  });
21748
- return { /* @conditional-compile-remove(file-sharing) */ files, inlineImages };
21753
+ return {
21754
+ /* @conditional-compile-remove(file-sharing) */ files,
21755
+ /* @conditional-compile-remove(teams-inline-images-and-file-sharing) */ inlineImages
21756
+ };
21749
21757
  };
21750
21758
  /* @conditional-compile-remove(data-loss-prevention) */
21751
21759
  const convertToUiBlockedMessage = (message, userId, isSeen, isLargeGroup) => {
@@ -21843,6 +21851,7 @@ const extractAttachmentsMetadata = (message) => {
21843
21851
  var _a, _b;
21844
21852
  /* @conditional-compile-remove(file-sharing) */
21845
21853
  let files = [];
21854
+ /* @conditional-compile-remove(teams-inline-images-and-file-sharing) */
21846
21855
  let inlineImages = [];
21847
21856
  /* @conditional-compile-remove(file-sharing) */
21848
21857
  if (message.metadata) {
@@ -21853,9 +21862,13 @@ const extractAttachmentsMetadata = (message) => {
21853
21862
  const teamsAttachments = extractTeamsAttachmentsMetadata((_b = message.content) === null || _b === void 0 ? void 0 : _b.attachments, message.resourceCache);
21854
21863
  /* @conditional-compile-remove(file-sharing) */
21855
21864
  files = files.concat(teamsAttachments.files);
21865
+ /* @conditional-compile-remove(teams-inline-images-and-file-sharing) */
21856
21866
  inlineImages = inlineImages.concat(teamsAttachments.inlineImages);
21857
21867
  }
21858
- return { /* @conditional-compile-remove(file-sharing) */ files, inlineImages };
21868
+ return {
21869
+ /* @conditional-compile-remove(file-sharing) */ files,
21870
+ /* @conditional-compile-remove(teams-inline-images-and-file-sharing) */ inlineImages
21871
+ };
21859
21872
  };
21860
21873
  const convertToUiChatMessage = (message, userId, isSeen, isLargeGroup) => {
21861
21874
  const messageSenderId = message.sender !== undefined ? toFlatCommunicationIdentifier(message.sender) : userId;
@@ -22330,28 +22343,21 @@ class ResourceDownloadQueue {
22330
22343
  this.isActive = false;
22331
22344
  continue;
22332
22345
  }
22333
- try {
22334
- if (options) {
22335
- const singleUrl = options.singleUrl;
22336
- message = yield this.downloadSingleUrl(message, singleUrl, operation);
22337
- }
22338
- else {
22339
- message = yield this.downloadAllPreviewUrls(message, operation);
22340
- }
22341
- this._context.setChatMessage(threadId, message);
22342
- }
22343
- catch (error) {
22344
- console.log('Downloading Resource error: ', error);
22346
+ if (options) {
22347
+ const singleUrl = options.singleUrl;
22348
+ message = yield this.downloadSingleUrl(message, singleUrl, operation);
22345
22349
  }
22346
- finally {
22347
- this.isActive = false;
22350
+ else {
22351
+ message = yield this.downloadAllPreviewUrls(message, operation);
22348
22352
  }
22353
+ this._context.setChatMessage(threadId, message);
22354
+ this.isActive = false;
22349
22355
  }
22350
22356
  });
22351
22357
  }
22352
22358
  downloadSingleUrl(message, resourceUrl, operation) {
22353
22359
  return __awaiter$t(this, void 0, void 0, function* () {
22354
- const blobUrl = yield operation(resourceUrl, this._credential);
22360
+ const blobUrl = yield this.downloadResource(operation, resourceUrl);
22355
22361
  message = Object.assign(Object.assign({}, message), { resourceCache: Object.assign(Object.assign({}, message.resourceCache), { [resourceUrl]: blobUrl }) });
22356
22362
  return message;
22357
22363
  });
@@ -22366,7 +22372,7 @@ class ResourceDownloadQueue {
22366
22372
  }
22367
22373
  for (const attachment of attachments) {
22368
22374
  if (attachment.previewUrl && attachment.attachmentType === 'image') {
22369
- const blobUrl = yield operation(attachment.previewUrl, this._credential);
22375
+ const blobUrl = yield this.downloadResource(operation, attachment.previewUrl);
22370
22376
  message.resourceCache[attachment.previewUrl] = blobUrl;
22371
22377
  }
22372
22378
  }
@@ -22374,6 +22380,18 @@ class ResourceDownloadQueue {
22374
22380
  return message;
22375
22381
  });
22376
22382
  }
22383
+ downloadResource(operation, url) {
22384
+ return __awaiter$t(this, void 0, void 0, function* () {
22385
+ let blobUrl = URL.createObjectURL(new Blob());
22386
+ try {
22387
+ blobUrl = yield operation(url, this._credential);
22388
+ }
22389
+ catch (error) {
22390
+ console.log('Downloading Resource error: ', error);
22391
+ }
22392
+ return blobUrl;
22393
+ });
22394
+ }
22377
22395
  }
22378
22396
  /* @conditional-compile-remove(teams-inline-images-and-file-sharing) */
22379
22397
  /**
@@ -22385,13 +22403,24 @@ const fetchImageSource = (src, credential) => __awaiter$t(void 0, void 0, void 0
22385
22403
  const headers = new Headers();
22386
22404
  headers.append('Authorization', `Bearer ${token}`);
22387
22405
  try {
22388
- return yield fetch(url, { headers });
22406
+ return yield fetchWithTimeout(url, { headers });
22389
22407
  }
22390
22408
  catch (err) {
22391
22409
  throw new ChatError('ChatThreadClient.getMessage', err);
22392
22410
  }
22393
22411
  });
22394
22412
  }
22413
+ function fetchWithTimeout(resource, options) {
22414
+ return __awaiter$t(this, void 0, void 0, function* () {
22415
+ // default timeout is 30 seconds
22416
+ const { timeout = 30000 } = options;
22417
+ const controller = new AbortController();
22418
+ const id = setTimeout(() => controller.abort(), timeout);
22419
+ const response = yield fetch(resource, Object.assign(Object.assign({}, options), { signal: controller.signal }));
22420
+ clearTimeout(id);
22421
+ return response;
22422
+ });
22423
+ }
22395
22424
  const accessToken = yield credential.getToken();
22396
22425
  const response = yield fetchWithAuthentication(src, accessToken.token);
22397
22426
  const blob = yield response.blob();