mirror of
https://github.com/element-hq/element-web
synced 2024-11-26 19:26:04 +03:00
Change thread panel filtering (#7169)
This commit is contained in:
parent
df032b04e0
commit
14b5ed01d3
1 changed files with 3 additions and 5 deletions
|
@ -73,15 +73,13 @@ const useFilteredThreadsTimelinePanel = ({
|
|||
const buildThreadList = useCallback(function(timelineSet: EventTimelineSet) {
|
||||
timelineSet.resetLiveTimeline("");
|
||||
Array.from(threads)
|
||||
.map(([, thread]) => thread)
|
||||
.forEach(thread => {
|
||||
const ownEvent = thread.rootEvent.getSender() === userId;
|
||||
if (filterOption !== ThreadFilterType.My || ownEvent) {
|
||||
.forEach(([, thread]) => {
|
||||
if (filterOption !== ThreadFilterType.My || thread.hasCurrentUserParticipated) {
|
||||
timelineSet.addLiveEvent(thread.rootEvent);
|
||||
}
|
||||
});
|
||||
updateTimeline();
|
||||
}, [filterOption, threads, updateTimeline, userId]);
|
||||
}, [filterOption, threads, updateTimeline]);
|
||||
|
||||
useEffect(() => { buildThreadList(timelineSet); }, [timelineSet, buildThreadList]);
|
||||
|
||||
|
|
Loading…
Reference in a new issue