stream-chat 9.49.0 → 9.50.0
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/dist/cjs/index.browser.js +78 -24
- package/dist/cjs/index.browser.js.map +2 -2
- package/dist/cjs/index.node.js +78 -24
- package/dist/cjs/index.node.js.map +2 -2
- package/dist/esm/index.mjs +78 -24
- package/dist/esm/index.mjs.map +2 -2
- package/dist/types/channel.d.ts +12 -0
- package/dist/types/events.d.ts +1 -0
- package/dist/types/types.d.ts +6 -0
- package/dist/types/utils.d.ts +13 -0
- package/package.json +1 -1
- package/src/channel.ts +45 -4
- package/src/client.ts +1 -0
- package/src/events.ts +1 -0
- package/src/messageDelivery/MessageDeliveryReporter.ts +3 -1
- package/src/offline-support/offline_support_api.ts +53 -24
- package/src/types.ts +6 -0
- package/src/utils.ts +22 -0
package/dist/esm/index.mjs
CHANGED
|
@@ -406,6 +406,12 @@ function isOwnUserBaseProperty(property) {
|
|
|
406
406
|
};
|
|
407
407
|
return ownUserBaseProperties[property];
|
|
408
408
|
}
|
|
409
|
+
var channelHasReadEvents = (channel) => {
|
|
410
|
+
const ownCapabilities = channel?.data?.own_capabilities;
|
|
411
|
+
return !(Array.isArray(ownCapabilities) && !ownCapabilities.includes("read-events"));
|
|
412
|
+
};
|
|
413
|
+
var channelTracksReadLocally = (channel) => !channelHasReadEvents(channel) && !!channel?.getClient().options.isLocalUnreadCountEnabled;
|
|
414
|
+
var userHasReadReceipts = (client) => client.user?.privacy_settings?.read_receipts?.enabled ?? true;
|
|
409
415
|
function addFileToFormData(uri, name, contentType) {
|
|
410
416
|
const data = new FormData();
|
|
411
417
|
if (isReadableStream(uri) || isBuffer(uri) || isFileWebAPI(uri) || isBlobWebAPI(uri)) {
|
|
@@ -8567,6 +8573,7 @@ var MessageDeliveryReporter = class _MessageDeliveryReporter {
|
|
|
8567
8573
|
* @param options
|
|
8568
8574
|
*/
|
|
8569
8575
|
this.markRead = async (collection, options) => {
|
|
8576
|
+
if (!userHasReadReceipts(this.client)) return null;
|
|
8570
8577
|
let result = null;
|
|
8571
8578
|
if (isChannel(collection)) {
|
|
8572
8579
|
result = await collection.markAsReadRequest(options);
|
|
@@ -9911,6 +9918,33 @@ var Channel = class {
|
|
|
9911
9918
|
...data
|
|
9912
9919
|
});
|
|
9913
9920
|
}
|
|
9921
|
+
/**
|
|
9922
|
+
* markReadLocally - Resets this user's unread count locally, without any backend call. Intended for
|
|
9923
|
+
* channels that have read events disabled (e.g. livestreams) when the client is created with the
|
|
9924
|
+
* `isLocalUnreadCountEnabled` option. Dispatches a dedicated, client-only `message.read_locally` event
|
|
9925
|
+
* that runs through the same `_handleChannelEvent` read logic as a real `message.read` (minus the
|
|
9926
|
+
* delivery-report network sync), so the read-state update lives in one place. When offline support
|
|
9927
|
+
* is enabled, the offline DB persists the reset for read-events-disabled channels, so the local
|
|
9928
|
+
* count stays consistent across app restarts.
|
|
9929
|
+
*
|
|
9930
|
+
* @return {Event | undefined} The dispatched `message.read_locally` event, or `undefined` if there is no connected user.
|
|
9931
|
+
*/
|
|
9932
|
+
markReadLocally() {
|
|
9933
|
+
const client = this.getClient();
|
|
9934
|
+
if (!client.userID) return;
|
|
9935
|
+
const event = {
|
|
9936
|
+
channel_id: this.id,
|
|
9937
|
+
channel_type: this.type,
|
|
9938
|
+
cid: this.cid,
|
|
9939
|
+
created_at: (/* @__PURE__ */ new Date()).toISOString(),
|
|
9940
|
+
last_read_message_id: this.lastMessage()?.id,
|
|
9941
|
+
team: this.data?.team,
|
|
9942
|
+
type: "message.read_locally",
|
|
9943
|
+
user: client.user
|
|
9944
|
+
};
|
|
9945
|
+
client.dispatchEvent(event);
|
|
9946
|
+
return event;
|
|
9947
|
+
}
|
|
9914
9948
|
/**
|
|
9915
9949
|
* clean - Cleans the channel state and fires stop typing if needed
|
|
9916
9950
|
*/
|
|
@@ -10066,7 +10100,7 @@ var Channel = class {
|
|
|
10066
10100
|
if (message.user?.id === this.getClient().userID) return false;
|
|
10067
10101
|
if (message.user?.id && this.getClient().userMuteStatus(message.user.id))
|
|
10068
10102
|
return false;
|
|
10069
|
-
if (
|
|
10103
|
+
if (!this.getClient().options.isLocalUnreadCountEnabled && !channelHasReadEvents(this)) {
|
|
10070
10104
|
return false;
|
|
10071
10105
|
}
|
|
10072
10106
|
if (this.getClient()._muteStatus(this.cid).muted) return false;
|
|
@@ -10477,6 +10511,11 @@ var Channel = class {
|
|
|
10477
10511
|
delete channelState.typing[event.user.id];
|
|
10478
10512
|
}
|
|
10479
10513
|
break;
|
|
10514
|
+
// `message.read_locally` is the client-only event dispatched by `markReadLocally()` when read
|
|
10515
|
+
// events are disabled (e.g. livestreams with `isLocalUnreadCountEnabled`). It reuses the exact
|
|
10516
|
+
// `message.read` state logic so the read-state update lives in one place — only the
|
|
10517
|
+
// delivery-report network sync below is skipped for it.
|
|
10518
|
+
case "message.read_locally":
|
|
10480
10519
|
case "message.read":
|
|
10481
10520
|
if (event.user?.id && event.created_at) {
|
|
10482
10521
|
const previousReadState = channelState.read[event.user.id];
|
|
@@ -10497,7 +10536,9 @@ var Channel = class {
|
|
|
10497
10536
|
const isOwnEvent = event.user?.id === client.user?.id;
|
|
10498
10537
|
if (isOwnEvent) {
|
|
10499
10538
|
channelState.unreadCount = 0;
|
|
10500
|
-
|
|
10539
|
+
if (event.type === "message.read") {
|
|
10540
|
+
client.syncDeliveredCandidates([this]);
|
|
10541
|
+
}
|
|
10501
10542
|
}
|
|
10502
10543
|
}
|
|
10503
10544
|
break;
|
|
@@ -14617,7 +14658,7 @@ var StreamChat = class _StreamChat {
|
|
|
14617
14658
|
return this.userAgent;
|
|
14618
14659
|
}
|
|
14619
14660
|
if (!this.cachedUserAgent) {
|
|
14620
|
-
const version = "9.
|
|
14661
|
+
const version = "9.50.0";
|
|
14621
14662
|
const { name: sdkName, version: sdkVersion } = this.sdkIdentifier ?? {};
|
|
14622
14663
|
const { name: appName, version: appVersion } = this.appIdentifier ?? {};
|
|
14623
14664
|
const { os, model: deviceModel } = this.deviceIdentifier ?? {};
|
|
@@ -14675,6 +14716,7 @@ var StreamChat = class _StreamChat {
|
|
|
14675
14716
|
warmUp: false,
|
|
14676
14717
|
recoverStateOnReconnect: true,
|
|
14677
14718
|
disableCache: false,
|
|
14719
|
+
isLocalUnreadCountEnabled: false,
|
|
14678
14720
|
wsUrlParams: new URLSearchParams({}),
|
|
14679
14721
|
...inputOptions
|
|
14680
14722
|
};
|
|
@@ -18028,6 +18070,7 @@ var EVENT_MAP = {
|
|
|
18028
18070
|
"ai_indicator.stop": true,
|
|
18029
18071
|
"ai_indicator.clear": true,
|
|
18030
18072
|
// local events
|
|
18073
|
+
"message.read_locally": true,
|
|
18031
18074
|
"channels.queried": true,
|
|
18032
18075
|
"offline_reactions.queried": true,
|
|
18033
18076
|
"connection.changed": true,
|
|
@@ -18411,7 +18454,8 @@ var AbstractOfflineDB = class {
|
|
|
18411
18454
|
if (cid && client.user && client.user.id !== user?.id) {
|
|
18412
18455
|
const userId = client.user.id;
|
|
18413
18456
|
const channel = client.activeChannels[cid];
|
|
18414
|
-
|
|
18457
|
+
const tracksReadLocally = channelTracksReadLocally(channel);
|
|
18458
|
+
if (channel && (channelHasReadEvents(channel) || tracksReadLocally)) {
|
|
18415
18459
|
const ownReads = channel.state.read[userId];
|
|
18416
18460
|
const unreadCount = channel.countUnread();
|
|
18417
18461
|
const upsertReadsQueries = await this.upsertReads({
|
|
@@ -18419,8 +18463,8 @@ var AbstractOfflineDB = class {
|
|
|
18419
18463
|
execute: false,
|
|
18420
18464
|
reads: [
|
|
18421
18465
|
{
|
|
18422
|
-
last_read: ownReads
|
|
18423
|
-
last_read_message_id: ownReads
|
|
18466
|
+
last_read: (ownReads?.last_read ?? /* @__PURE__ */ new Date(0)).toISOString(),
|
|
18467
|
+
last_read_message_id: ownReads?.last_read_message_id,
|
|
18424
18468
|
unread_messages: unreadCount,
|
|
18425
18469
|
user: client.user
|
|
18426
18470
|
}
|
|
@@ -18619,27 +18663,30 @@ var AbstractOfflineDB = class {
|
|
|
18619
18663
|
truncated_at,
|
|
18620
18664
|
execute: false
|
|
18621
18665
|
});
|
|
18666
|
+
let finalQueries = [...truncateQueries];
|
|
18622
18667
|
const userId = ownUser.id;
|
|
18623
18668
|
const activeChannel = this.client.activeChannels[cid];
|
|
18624
|
-
const
|
|
18625
|
-
|
|
18626
|
-
|
|
18627
|
-
|
|
18628
|
-
|
|
18669
|
+
const tracksReadLocally = channelTracksReadLocally(activeChannel);
|
|
18670
|
+
if (activeChannel && (channelHasReadEvents(activeChannel) || tracksReadLocally)) {
|
|
18671
|
+
const ownReads = activeChannel.state.read[userId];
|
|
18672
|
+
let unreadCount = 0;
|
|
18673
|
+
if (truncated_at) {
|
|
18674
|
+
unreadCount = activeChannel.countUnread(new Date(truncated_at));
|
|
18675
|
+
}
|
|
18676
|
+
const upsertReadQueries = await this.upsertReads({
|
|
18677
|
+
cid,
|
|
18678
|
+
execute: false,
|
|
18679
|
+
reads: [
|
|
18680
|
+
{
|
|
18681
|
+
last_read: (ownReads?.last_read ?? /* @__PURE__ */ new Date(0)).toString(),
|
|
18682
|
+
last_read_message_id: ownReads?.last_read_message_id,
|
|
18683
|
+
unread_messages: unreadCount,
|
|
18684
|
+
user: ownUser
|
|
18685
|
+
}
|
|
18686
|
+
]
|
|
18687
|
+
});
|
|
18688
|
+
finalQueries = [...finalQueries, ...upsertReadQueries];
|
|
18629
18689
|
}
|
|
18630
|
-
const upsertReadQueries = await this.upsertReads({
|
|
18631
|
-
cid,
|
|
18632
|
-
execute: false,
|
|
18633
|
-
reads: [
|
|
18634
|
-
{
|
|
18635
|
-
last_read: ownReads.last_read.toString(),
|
|
18636
|
-
last_read_message_id: ownReads.last_read_message_id,
|
|
18637
|
-
unread_messages: unreadCount,
|
|
18638
|
-
user: ownUser
|
|
18639
|
-
}
|
|
18640
|
-
]
|
|
18641
|
-
});
|
|
18642
|
-
const finalQueries = [...truncateQueries, ...upsertReadQueries];
|
|
18643
18690
|
if (execute) {
|
|
18644
18691
|
await this.executeSqlBatch(finalQueries);
|
|
18645
18692
|
}
|
|
@@ -18740,6 +18787,13 @@ var AbstractOfflineDB = class {
|
|
|
18740
18787
|
if (type === "message.read" || type === "notification.mark_read") {
|
|
18741
18788
|
return this.handleRead({ event, unreadMessages: 0, execute });
|
|
18742
18789
|
}
|
|
18790
|
+
if (type === "message.read_locally") {
|
|
18791
|
+
const localChannel = event.cid ? this.client.activeChannels[event.cid] : void 0;
|
|
18792
|
+
if (channelTracksReadLocally(localChannel)) {
|
|
18793
|
+
return this.handleRead({ event, unreadMessages: 0, execute });
|
|
18794
|
+
}
|
|
18795
|
+
return [];
|
|
18796
|
+
}
|
|
18743
18797
|
if (type === "notification.mark_unread") {
|
|
18744
18798
|
return this.handleRead({ event, execute });
|
|
18745
18799
|
}
|