* Channel Info screen * Delete the channel & related data when archiving while viewing archived channels is off * feedback review * UX feedback * Add missing isOptionItem prop
29 lines
849 B
TypeScript
29 lines
849 B
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 {observeChannel} from '@queries/servers/channel';
|
|
|
|
import ChannelActions from './channel_actions';
|
|
|
|
import type {WithDatabaseArgs} from '@typings/database/database';
|
|
|
|
type OwnProps = WithDatabaseArgs & {
|
|
channelId: string;
|
|
}
|
|
|
|
const enhanced = withObservables(['channelId'], ({channelId, database}: OwnProps) => {
|
|
const channelType = observeChannel(database, channelId).pipe(
|
|
switchMap((c) => of$(c?.type)),
|
|
);
|
|
|
|
return {
|
|
channelType,
|
|
};
|
|
});
|
|
|
|
export default withDatabase(enhanced(ChannelActions));
|