43 lines
1.5 KiB
TypeScript
43 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 {distinctUntilChanged, switchMap, of as of$} from 'rxjs';
|
|
|
|
import {observeCallStateInChannel} from '@calls/observers';
|
|
import {withServerUrl} from '@context/server';
|
|
import {observePost} from '@queries/servers/post';
|
|
import {observeScheduledPostCountForThread} from '@queries/servers/scheduled_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 scheduledPostCount = observeScheduledPostCountForThread(database, rootId);
|
|
|
|
return {
|
|
isCRTEnabled: observeIsCRTEnabled(database),
|
|
...observeCallStateInChannel(serverUrl, database, channelId),
|
|
rootId: of$(rId),
|
|
rootPost,
|
|
scheduledPostCount,
|
|
};
|
|
});
|
|
|
|
export default withDatabase(withServerUrl(enhanced(Thread)));
|