* 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
34 lines
1.1 KiB
TypeScript
34 lines
1.1 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, distinctUntilChanged} from 'rxjs/operators';
|
|
|
|
import {observeChannelInfo} from '@queries/servers/channel';
|
|
|
|
import SetHeaderBox from './set_header';
|
|
|
|
import type {WithDatabaseArgs} from '@typings/database/database';
|
|
|
|
type OwnProps = WithDatabaseArgs & {
|
|
channelId: string;
|
|
}
|
|
|
|
const enhanced = withObservables(['channelId'], ({channelId, database}: OwnProps) => {
|
|
const channelInfo = observeChannelInfo(database, channelId);
|
|
const isHeaderSet = channelInfo.pipe(
|
|
switchMap((c) => of$(Boolean(c?.header))),
|
|
|
|
// Channel info is fetched when we switch to the channel, and should update
|
|
// the member count whenever a user joins or leaves the channel, so this should
|
|
// save us a few renders.
|
|
distinctUntilChanged(),
|
|
);
|
|
|
|
return {
|
|
isHeaderSet,
|
|
};
|
|
});
|
|
|
|
export default withDatabase(enhanced(SetHeaderBox));
|