Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F32210945
D4474.1765133369.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D4474.1765133369.diff
View Options
diff --git a/web/chat/chat-message-list-container.react.js b/web/chat/chat-message-list-container.react.js
--- a/web/chat/chat-message-list-container.react.js
+++ b/web/chat/chat-message-list-container.react.js
@@ -14,6 +14,7 @@
useWatchThread,
useExistingThreadInfoFinder,
createPendingThread,
+ threadIsPending,
} from 'lib/shared/thread-utils';
import { threadTypes } from 'lib/types/thread-types';
import type { AccountUserInfo } from 'lib/types/user-types';
@@ -113,6 +114,30 @@
userInfoInputArray,
]);
+ React.useEffect(() => {
+ if (isChatCreation && activeChatThreadID !== threadInfo?.id) {
+ let payload = {
+ activeChatThreadID: threadInfo?.id,
+ };
+ if (threadIsPending(threadInfo?.id)) {
+ payload = {
+ ...payload,
+ pendingThread: threadInfo,
+ };
+ }
+ dispatch({
+ type: updateNavInfoActionType,
+ payload,
+ });
+ }
+ }, [
+ activeChatThreadID,
+ dispatch,
+ isChatCreation,
+ threadInfo,
+ threadInfo?.id,
+ ]);
+
const inputState = React.useContext(InputStateContext);
invariant(inputState, 'InputState should be set');
const [{ isActive }, connectDropTarget] = useDrop({
@@ -188,7 +213,6 @@
userInfoInputArray={userInfoInputArray}
otherUserInfos={otherUserInfos}
threadID={threadInfo.id}
- isThreadSelected={!!userInfoInputArray.length}
inputState={inputState}
/>
);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Dec 7, 6:49 PM (19 h, 58 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
5845548
Default Alt Text
D4474.1765133369.diff (1 KB)
Attached To
Mode
D4474: [web] Keep `activeChatThreadID` and `pendingThread` updated in `navInfo` in thread creation mode
Attached
Detach File
Event Timeline
Log In to Comment