* center align channel name in intro * align custom status in channel header * wrap long custom status on profile bottom sheet * Fix LaTex render clipped on Android * Add margin for users displayed in a list * show user profile when tapping on self on channel members * Fix Thread screen when rootId prop is undefined * update snapshots * fix server / login screen on small devices
59 lines
2 KiB
TypeScript
59 lines
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 {distinctUntilChanged, switchMap, combineLatest, of as of$} from 'rxjs';
|
|
|
|
import {observeChannelsWithCalls, observeCurrentCall} from '@calls/state';
|
|
import {withServerUrl} from '@context/server';
|
|
import {observePost} from '@queries/servers/post';
|
|
import {observeIsCRTEnabled} from '@queries/servers/thread';
|
|
import EphemeralStore from '@store/ephemeral_store';
|
|
|
|
import Thread from './thread';
|
|
|
|
import type {WithDatabaseArgs} from '@typings/database/database';
|
|
|
|
type EnhanceProps = WithDatabaseArgs & {
|
|
serverUrl: string;
|
|
rootId: string;
|
|
}
|
|
|
|
const enhanced = withObservables(['rootId'], ({database, serverUrl, rootId}: EnhanceProps) => {
|
|
const rId = rootId || EphemeralStore.getCurrentThreadId();
|
|
const rootPost = observePost(database, rId);
|
|
|
|
const channelId = rootPost.pipe(
|
|
switchMap((r) => of$(r?.channelId || '')),
|
|
distinctUntilChanged(),
|
|
);
|
|
const isCallInCurrentChannel = combineLatest([channelId, observeChannelsWithCalls(serverUrl)]).pipe(
|
|
switchMap(([id, calls]) => of$(Boolean(calls[id]))),
|
|
distinctUntilChanged(),
|
|
);
|
|
const currentCall = observeCurrentCall();
|
|
const ccChannelId = currentCall.pipe(
|
|
switchMap((call) => of$(call?.channelId)),
|
|
distinctUntilChanged(),
|
|
);
|
|
const isInACall = currentCall.pipe(
|
|
switchMap((call) => of$(Boolean(call?.connected))),
|
|
distinctUntilChanged(),
|
|
);
|
|
const isInCurrentChannelCall = combineLatest([channelId, ccChannelId]).pipe(
|
|
switchMap(([id, ccId]) => of$(id === ccId)),
|
|
distinctUntilChanged(),
|
|
);
|
|
|
|
return {
|
|
isCRTEnabled: observeIsCRTEnabled(database),
|
|
isCallInCurrentChannel,
|
|
isInACall,
|
|
isInCurrentChannelCall,
|
|
rootId: of$(rId),
|
|
rootPost,
|
|
};
|
|
});
|
|
|
|
export default withDatabase(withServerUrl(enhanced(Thread)));
|