Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions app/api/server/v1/chat.js
Original file line number Diff line number Diff line change
Expand Up @@ -445,6 +445,7 @@ API.v1.addRoute('chat.getThreadsList', { authRequired: true }, {
}

const typeThread = {
_hidden: { $ne: true },
...type === 'following' && { replies: { $in: [this.userId] } },
...type === 'unread' && { _id: { $in: Subscriptions.findOneByRoomIdAndUserId(room._id, user._id).tunread } },
...text && {
Expand Down
138 changes: 72 additions & 66 deletions client/channel/Threads/ContextualBar/List.js
Original file line number Diff line number Diff line change
@@ -1,26 +1,24 @@
import { Mongo } from 'meteor/mongo';
import { Tracker } from 'meteor/tracker';
import s from 'underscore.string';
import React, { useCallback, useMemo, useState, useEffect, useRef, memo } from 'react';
import { Box, Icon, TextInput, Select, Margins, Callout } from '@rocket.chat/fuselage';
import { FixedSizeList as List } from 'react-window';
import InfiniteLoader from 'react-window-infinite-loader';
import { useDebouncedValue, useDebouncedState, useResizeObserver, useLocalStorage } from '@rocket.chat/fuselage-hooks';
import { useDebouncedValue, useResizeObserver, useLocalStorage } from '@rocket.chat/fuselage-hooks';

import VerticalBar from '../../../components/basic/VerticalBar';
import { useTranslation } from '../../../contexts/TranslationContext';
import { useRoute, useCurrentRoute } from '../../../contexts/RouterContext';
import { call, renderMessageBody } from '../../../../app/ui-utils/client';
import { useUserId, useUserSubscription } from '../../../contexts/UserContext';
import { Messages } from '../../../../app/models/client';
import { useEndpointDataExperimental, ENDPOINT_STATES } from '../../../hooks/useEndpointDataExperimental';
import { ENDPOINT_STATES } from '../../../hooks/useEndpointDataExperimental';
import { useUserRoom } from '../../hooks/useUserRoom';
import { useSetting } from '../../../contexts/SettingsContext';
import { useTimeAgo } from '../../../hooks/useTimeAgo';
import { clickableItem } from '../../helpers/clickableItem';
import { MessageSkeleton } from '../../components/Message';
import ThreadListMessage from './components/Message';
import { getConfig } from '../../../../app/ui-utils/client/config';
import { useEndpoint } from '../../../contexts/ServerContext';

function mapProps(WrappedComponent) {
return ({ msg, username, replies, tcount, ts, ...props }) => <WrappedComponent replies={tcount} participants={replies.length} username={username} msg={msg} ts={ts} {...props}/>;
Expand All @@ -41,74 +39,82 @@ export function withData(WrappedComponent) {
return ({ rid, ...props }) => {
const room = useUserRoom(rid, roomFields);
const subscription = useUserSubscription(rid, subscriptionFields);

const userId = useUserId();

const [{
state,
error,
threads,
count,
}, setState] = useState(() => ({
state: ENDPOINT_STATES.LOADING,
error: null,
threads: [],
count: 0,
}));
const [type, setType] = useLocalStorage('thread-list-type', 'all');
const [text, setText] = useState('');
const [total, setTotal] = useState(LIST_SIZE);
const [threads, setThreads] = useDebouncedState([], 100);
const Threads = useRef(new Mongo.Collection(null));
const ref = useRef();
const [pagination, setPagination] = useState({ skip: 0, count: LIST_SIZE });

const params = useMemo(() => ({ rid: room._id, count: pagination.count, offset: pagination.skip, type, text }), [room._id, pagination.skip, pagination.count, type, text]);

const { data, state, error } = useEndpointDataExperimental('chat.getThreadsList', useDebouncedValue(params, 400));

const loadMoreItems = useCallback((skip, count) => {
setPagination({ skip, count: count - skip });

return new Promise((resolve) => { ref.current = resolve; });
}, []);

useEffect(() => {
if (state !== ENDPOINT_STATES.DONE || !data || !data.threads) {
return;
const mergeThreads = useCallback(
(threads, newThreads) =>
Array.from(
new Map([
...threads.map((msg) => [msg._id, msg]),
...newThreads.map((msg) => [msg._id, msg]),
]).values(),
)
.sort((a, b) => a.tlm.getTime() - b.tlm.getTime()),
[],
);

const getThreadsList = useEndpoint('GET', 'chat.getThreadsList');
const fetchThreads = useCallback(async ({ rid, offset, limit, type, text }) => {
try {
const data = await getThreadsList({
rid,
offset,
count: limit,
type,
text,
});

setState(({ threads }) => ({
state: ENDPOINT_STATES.DONE,
error: null,
threads: mergeThreads(offset === 0 ? [] : threads, data.threads.map(filterProps)),
count: data.total,
}));
} catch (error) {
setState(({ threads, count }) => ({
state: ENDPOINT_STATES.ERROR,
error,
threads,
count,
}));
}
}, [getThreadsList, mergeThreads]);

data.threads.forEach(({ _id, ...message }) => {
Threads.current.upsert({ _id }, filterProps(message));
});
setTotal(data.total);
ref.current && ref.current();
}, [data, state]);

useEffect(() => {
const cursor = Messages.find({ rid: room._id, tcount: { $exists: true }, _hidden: { $ne: true } }).observe({
added: ({ _id, ...message }) => {
Threads.current.upsert({ _id }, message);
}, // Update message to re-render DOM
changed: ({ _id, ...message }) => {
Threads.current.update({ _id }, message);
}, // Update message to re-render DOM
removed: ({ _id }) => {
Threads.current.remove(_id);
},
});
return () => cursor.stop();
}, [room._id]);


const debouncedText = useDebouncedValue(text, 400);
useEffect(() => {
const cursor = Tracker.autorun(() => {
const query = {
...type === 'subscribed' && { replies: { $in: [userId] } },
...type === 'unread' && { _id: { $in: subscription?.tunread } },
...text && {
$text: {
$search: text,
},
},
};
setThreads(Threads.current.find(query, { sort: { tlm: -1 } }).fetch().map(filterProps));
fetchThreads({
rid: room._id,
offset: 0,
limit: LIST_SIZE,
type,
text: debouncedText,
});
}, [debouncedText, fetchThreads, room._id, type]);

return () => cursor.stop();
}, [room._id, type, setThreads, userId, subscription.tunread, text]);

const handleTextChange = useCallback((e) => {
setPagination({ skip: 0, count: LIST_SIZE });
setText(e.currentTarget.value);
const loadMoreItems = useCallback((start, end) => fetchThreads({
rid: room._id,
offset: start,
limit: end - start,
type,
text,
}), [fetchThreads, room._id, type, text]);

const handleTextChange = useCallback((event) => {
setText(event.currentTarget.value);
}, []);

return <WrappedComponent
Expand All @@ -119,7 +125,7 @@ export function withData(WrappedComponent) {
userId={userId}
error={error}
threads={threads}
total={total}
total={count}
loading={state === ENDPOINT_STATES.LOADING}
loadMoreItems={loadMoreItems}
room={room}
Expand Down Expand Up @@ -229,7 +235,7 @@ export function ThreadList({ total = 10, threads = [], room, unread = [], unread
/>, [showRealNames, unread, unreadUser, unreadGroup, userId, onClick]);

const isItemLoaded = useCallback((index) => index < threadsRef.current.length, []);
const { ref, contentBoxSize: { inlineSize = 378, blockSize = 750 } = {} } = useResizeObserver({ debounceDelay: 100 });
const { ref, contentBoxSize: { inlineSize = 378, blockSize = 1 } = {} } = useResizeObserver({ debounceDelay: 100 });

return <VerticalBar>
<VerticalBar.Header>
Expand Down