mattermost-mobile/app/screens/thread/thread_follow_button/index.ts
Elias Nahum 3a416dc511
Fix Thread button crash (#7330)
* remove the right button component id

* do not render thread follow button

* use lodash uniqueId instead of uuid
2023-05-05 09:17:47 -04:00

42 lines
1.2 KiB
TypeScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import {withDatabase} from '@nozbe/watermelondb/DatabaseProvider';
import withObservables from '@nozbe/with-observables';
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));