* 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.2 KiB
TypeScript
41 lines
1.2 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 {of as of$} from 'rxjs';
|
|
import {switchMap} from 'rxjs/operators';
|
|
|
|
import {observeTeamIdByThreadId, observeThreadById} from '@queries/servers/thread';
|
|
import EphemeralStore from '@store/ephemeral_store';
|
|
|
|
import ThreadFollowButton from './thread_follow_button';
|
|
|
|
import type {WithDatabaseArgs} from '@typings/database/database';
|
|
|
|
type Props = WithDatabaseArgs & {
|
|
threadId?: string;
|
|
};
|
|
|
|
const enhanced = withObservables(['threadId'], ({threadId, database}: Props) => {
|
|
const thId = threadId || EphemeralStore.getCurrentThreadId();
|
|
let tId = of$('');
|
|
let isFollowing = of$(false);
|
|
|
|
if (thId) {
|
|
tId = observeTeamIdByThreadId(database, thId).pipe(
|
|
switchMap((t) => of$(t || '')),
|
|
);
|
|
|
|
isFollowing = observeThreadById(database, thId).pipe(
|
|
switchMap((thread) => of$(thread?.isFollowing)),
|
|
);
|
|
}
|
|
|
|
return {
|
|
isFollowing,
|
|
threadId: of$(thId),
|
|
teamId: tId,
|
|
};
|
|
});
|
|
|
|
export default withDatabase(enhanced(ThreadFollowButton));
|