* calls GA requirements * clarifying comments; simplify ephemeral message (move it to the server)
52 lines
1.9 KiB
TypeScript
52 lines
1.9 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 {combineLatest, of as of$} from 'rxjs';
|
|
import {distinctUntilChanged, switchMap} from 'rxjs/operators';
|
|
|
|
import {observeIsCallsEnabledInChannel} from '@calls/observers';
|
|
import {observeChannelsWithCalls, observeCurrentCall} from '@calls/state';
|
|
import {withServerUrl} from '@context/server';
|
|
import {observeCurrentChannelId} from '@queries/servers/system';
|
|
|
|
import Channel from './channel';
|
|
|
|
import type {WithDatabaseArgs} from '@typings/database/database';
|
|
|
|
type EnhanceProps = WithDatabaseArgs & {
|
|
serverUrl: string;
|
|
}
|
|
|
|
const enhanced = withObservables([], ({database, serverUrl}: EnhanceProps) => {
|
|
const channelId = observeCurrentChannelId(database);
|
|
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(),
|
|
);
|
|
const isCallsEnabledInChannel = observeIsCallsEnabledInChannel(database, serverUrl, channelId);
|
|
|
|
return {
|
|
channelId,
|
|
isCallInCurrentChannel,
|
|
isInACall,
|
|
isInCurrentChannelCall,
|
|
isCallsEnabledInChannel,
|
|
};
|
|
});
|
|
|
|
export default withDatabase(withServerUrl(enhanced(Channel)));
|