* [gekidou] feat: MM-39716 Added + Button Bottom sheet layout * feat: Added on click to the channel header listener * chore: Ran i18n command and did the requested changes * chore: updated test snapshot * Refactor PlusMenu & fix Browse Channels * Fix snapshot tests * feedback review Co-authored-by: Elias Nahum <nahumhbl@gmail.com>
58 lines
2.4 KiB
TypeScript
58 lines
2.4 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 {catchError, combineLatest, of as of$, from as from$} from 'rxjs';
|
|
import {switchMap} from 'rxjs/operators';
|
|
|
|
import {Permissions} from '@constants';
|
|
import {MM_TABLES, SYSTEM_IDENTIFIERS} from '@constants/database';
|
|
import {hasPermissionForTeam} from '@utils/role';
|
|
|
|
import ChannelListHeader from './header';
|
|
|
|
import type {WithDatabaseArgs} from '@typings/database/database';
|
|
import type SystemModel from '@typings/database/models/servers/system';
|
|
import type TeamModel from '@typings/database/models/servers/team';
|
|
import type UserModel from '@typings/database/models/servers/user';
|
|
|
|
const {SERVER: {SYSTEM, TEAM, USER}} = MM_TABLES;
|
|
const {CURRENT_TEAM_ID, CURRENT_USER_ID} = SYSTEM_IDENTIFIERS;
|
|
|
|
const enhanced = withObservables([], ({database}: WithDatabaseArgs) => {
|
|
const team = database.get<SystemModel>(SYSTEM).findAndObserve(CURRENT_TEAM_ID).pipe(
|
|
switchMap((id) => database.get<TeamModel>(TEAM).findAndObserve(id.value)),
|
|
catchError(() => of$({displayName: ''})),
|
|
);
|
|
|
|
const currentUser = database.get<SystemModel>(SYSTEM).findAndObserve(CURRENT_USER_ID).pipe(
|
|
switchMap(({value}) => database.get<UserModel>(USER).findAndObserve(value)),
|
|
);
|
|
|
|
const canJoinChannels = combineLatest([currentUser, team]).pipe(
|
|
switchMap(([u, t]) => (('id' in t) ? from$(hasPermissionForTeam(t, u, Permissions.JOIN_PUBLIC_CHANNELS, true)) : of$(false))),
|
|
);
|
|
|
|
const canCreatePublicChannels = combineLatest([currentUser, team]).pipe(
|
|
switchMap(([u, t]) => (('id' in t) ? from$(hasPermissionForTeam(t, u, Permissions.CREATE_PUBLIC_CHANNEL, true)) : of$(false))),
|
|
);
|
|
|
|
const canCreatePrivateChannels = combineLatest([currentUser, team]).pipe(
|
|
switchMap(([u, t]) => (('id' in t) ? 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));
|