* Extract common observers to queries * Separate also queries and more agressive refactoring * Use query to avoid throws from findAndObserve * Fix minor error * Address feedback * Address feedback * Address feedback * Fix model types * Address feedback
48 lines
1.8 KiB
TypeScript
48 lines
1.8 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 as from$} from 'rxjs';
|
|
import {switchMap} from 'rxjs/operators';
|
|
|
|
import {Permissions} from '@constants';
|
|
import {observeCurrentTeam} from '@queries/servers/team';
|
|
import {observeCurrentUser} from '@queries/servers/user';
|
|
import {hasPermissionForTeam} from '@utils/role';
|
|
|
|
import ChannelListHeader from './header';
|
|
|
|
import type {WithDatabaseArgs} from '@typings/database/database';
|
|
|
|
const enhanced = withObservables([], ({database}: WithDatabaseArgs) => {
|
|
const team = observeCurrentTeam(database);
|
|
|
|
const currentUser = observeCurrentUser(database);
|
|
|
|
const canJoinChannels = combineLatest([currentUser, team]).pipe(
|
|
switchMap(([u, t]) => (t && u ? from$(hasPermissionForTeam(t, u, Permissions.JOIN_PUBLIC_CHANNELS, true)) : of$(false))),
|
|
);
|
|
|
|
const canCreatePublicChannels = combineLatest([currentUser, team]).pipe(
|
|
switchMap(([u, t]) => (t && u ? from$(hasPermissionForTeam(t, u, Permissions.CREATE_PUBLIC_CHANNEL, true)) : of$(false))),
|
|
);
|
|
|
|
const canCreatePrivateChannels = combineLatest([currentUser, team]).pipe(
|
|
switchMap(([u, t]) => (t && u ? from$(hasPermissionForTeam(t, u, Permissions.CREATE_PRIVATE_CHANNEL, false)) : of$(false))),
|
|
);
|
|
|
|
const canCreateChannels = combineLatest([canCreatePublicChannels, canCreatePrivateChannels]).pipe(
|
|
switchMap(([open, priv]) => of$(open || priv)),
|
|
);
|
|
|
|
return {
|
|
canCreateChannels,
|
|
canJoinChannels,
|
|
displayName: team.pipe(
|
|
switchMap((t) => of$(t?.displayName)),
|
|
),
|
|
};
|
|
});
|
|
|
|
export default withDatabase(enhanced(ChannelListHeader));
|