* update js dependencies * update react-native libraries * update watermelonDB * update RN to 0.72.7 * update fastlane * fix remove_markdown/at_mention import * update mattermost libraries * update fastlane deps * remove haptic-feedback patch * update okhttp to 4.12.0 and patch netinfo to accurately identify VPN connections * create ImaegStyles intersection type
41 lines
1.5 KiB
TypeScript
41 lines
1.5 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import {withDatabase, withObservables} from '@nozbe/watermelondb/react';
|
|
import {switchMap} from 'rxjs/operators';
|
|
|
|
import {observeCurrentTeamId} from '@queries/servers/system';
|
|
import {queryTeamThreadsSync, queryThreadsInTeam} from '@queries/servers/thread';
|
|
import {observeTeammateNameDisplay} from '@queries/servers/user';
|
|
|
|
import ThreadsList from './threads_list';
|
|
|
|
import type {WithDatabaseArgs} from '@typings/database/database';
|
|
|
|
type Props = {
|
|
tab: GlobalThreadsTab;
|
|
teamId: string;
|
|
} & WithDatabaseArgs;
|
|
|
|
const withTeamId = withObservables([], ({database}: WithDatabaseArgs) => ({
|
|
teamId: observeCurrentTeamId(database),
|
|
}));
|
|
|
|
const enhanced = withObservables(['tab', 'teamId'], ({database, tab, teamId}: Props) => {
|
|
const getOnlyUnreads = tab !== 'all';
|
|
|
|
const teamThreadsSyncObserver = queryTeamThreadsSync(database, teamId).observeWithColumns(['earliest']);
|
|
|
|
return {
|
|
unreadsCount: queryThreadsInTeam(database, teamId, true, true, true).observeCount(false),
|
|
teammateNameDisplay: observeTeammateNameDisplay(database),
|
|
threads: teamThreadsSyncObserver.pipe(
|
|
switchMap((teamThreadsSync) => {
|
|
const earliest = tab === 'all' ? teamThreadsSync?.[0]?.earliest : 0;
|
|
return queryThreadsInTeam(database, teamId, getOnlyUnreads, false, true, true, earliest).observe();
|
|
}),
|
|
),
|
|
};
|
|
});
|
|
|
|
export default withDatabase(withTeamId(enhanced(ThreadsList)));
|