Page MenuHomePhabricator

D13219.id43832.diff
No OneTemporary

D13219.id43832.diff

diff --git a/lib/shared/dm-ops/create-sidebar-spec.js b/lib/shared/dm-ops/create-sidebar-spec.js
--- a/lib/shared/dm-ops/create-sidebar-spec.js
+++ b/lib/shared/dm-ops/create-sidebar-spec.js
@@ -21,6 +21,7 @@
isInvalidSidebarSource,
rawMessageInfoFromMessageData,
} from '../message-utils.js';
+import { createThreadTimestamps } from '../thread-utils.js';
async function createMessageDatasFromDMOperation(
dmOperation: DMCreateSidebarOperation,
@@ -124,6 +125,7 @@
unread: creatorID !== viewerID,
sourceMessageID,
containingThreadID: parentThreadID,
+ timestamps: createThreadTimestamps(time, allMemberIDs),
},
viewerID,
);
diff --git a/lib/shared/dm-ops/create-thread-spec.js b/lib/shared/dm-ops/create-thread-spec.js
--- a/lib/shared/dm-ops/create-thread-spec.js
+++ b/lib/shared/dm-ops/create-thread-spec.js
@@ -77,6 +77,7 @@
sourceMessageID,
repliesCount,
pinnedCount,
+ timestamps,
} = input;
const memberIDs = allMemberIDsWithSubscriptions.map(({ id }) => id);
@@ -117,7 +118,7 @@
avatar,
description,
containingThreadID,
- timestamps: createThreadTimestamps(creationTime, memberIDs),
+ timestamps,
};
if (sourceMessageID) {
newThread.sourceMessageID = sourceMessageID;
@@ -180,6 +181,7 @@
allMemberIDsWithSubscriptions,
roleID,
unread: creatorID !== viewerID,
+ timestamps: createThreadTimestamps(time, allMemberIDs),
},
viewerID,
);
diff --git a/lib/shared/dm-ops/dm-op-utils.js b/lib/shared/dm-ops/dm-op-utils.js
--- a/lib/shared/dm-ops/dm-op-utils.js
+++ b/lib/shared/dm-ops/dm-op-utils.js
@@ -158,6 +158,7 @@
sourceMessageID: threadInfo.sourceMessageID,
repliesCount: threadInfo.repliesCount,
pinnedCount: threadInfo.pinnedCount,
+ timestamps: threadInfo.timestamps,
};
}
diff --git a/lib/types/dm-ops.js b/lib/types/dm-ops.js
--- a/lib/types/dm-ops.js
+++ b/lib/types/dm-ops.js
@@ -16,6 +16,10 @@
type ThickThreadType,
thickThreadTypeValidator,
} from './thread-types-enum.js';
+import {
+ threadTimestampsValidator,
+ type ThreadTimestamps,
+} from './thread-types.js';
import type { ClientUpdateInfo } from './update-types.js';
import { values } from '../utils/objects.js';
import { tColor, tShape, tString, tUserID } from '../utils/validation-utils.js';
@@ -54,6 +58,7 @@
+allMemberIDsWithSubscriptions: $ReadOnlyArray<MemberIDWithSubscription>,
+roleID: string,
+unread: boolean,
+ +timestamps: ThreadTimestamps,
+name?: ?string,
+avatar?: ?ClientAvatar,
+description?: ?string,
@@ -72,6 +77,7 @@
allMemberIDsWithSubscriptions: t.list(memberIDWithSubscriptionValidator),
roleID: t.String,
unread: t.Boolean,
+ timestamps: threadTimestampsValidator,
name: t.maybe(t.String),
avatar: t.maybe(clientAvatarValidator),
description: t.maybe(t.String),

File Metadata

Mime Type
text/plain
Expires
Tue, Nov 26, 12:14 PM (21 h, 20 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2584659
Default Alt Text
D13219.id43832.diff (2 KB)

Event Timeline