forked from Ivasoft/mattermost-mobile
* Init * i18 and types * Acknowledge button, api * Ack button + display ackd users * Saves priority on draft and addresses some comments * Addresses review comments round 2 * Moves fetching userprofiles upon opening ACKs * Adds metadata column in drafts table + Addresses some more review comments. * Small refactor according to review comments * Addresses some review comments * Addresses some review comments * Uses local action when ACKing * Fixes first time selecting priority and other * Updates snapshots * Fixes i18n * Fixes ts errors --------- Co-authored-by: Anurag Shivarathri <anurag6713@gmail.com> Co-authored-by: Mattermost Build <build@mattermost.com>
98 lines
3.7 KiB
TypeScript
98 lines
3.7 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 'rxjs';
|
|
import {switchMap} from 'rxjs/operators';
|
|
|
|
import {General, Permissions} from '@constants';
|
|
import {MAX_MESSAGE_LENGTH_FALLBACK} from '@constants/post_draft';
|
|
import {observeChannel, observeChannelInfo, observeCurrentChannel} from '@queries/servers/channel';
|
|
import {queryAllCustomEmojis} from '@queries/servers/custom_emoji';
|
|
import {observeFirstDraft, queryDraft} from '@queries/servers/drafts';
|
|
import {observePermissionForChannel} from '@queries/servers/role';
|
|
import {observeConfigBooleanValue, observeConfigIntValue, observeCurrentUserId} from '@queries/servers/system';
|
|
import {observeUser} from '@queries/servers/user';
|
|
|
|
import SendHandler, {INITIAL_PRIORITY} from './send_handler';
|
|
|
|
import type {WithDatabaseArgs} from '@typings/database/database';
|
|
|
|
type OwnProps = {
|
|
rootId: string;
|
|
channelId: string;
|
|
channelIsArchived?: boolean;
|
|
}
|
|
|
|
const enhanced = withObservables([], (ownProps: WithDatabaseArgs & OwnProps) => {
|
|
const database = ownProps.database;
|
|
const {rootId, channelId} = ownProps;
|
|
let channel;
|
|
if (rootId) {
|
|
channel = observeChannel(database, channelId);
|
|
} else {
|
|
channel = observeCurrentChannel(database);
|
|
}
|
|
|
|
const currentUserId = observeCurrentUserId(database);
|
|
const currentUser = currentUserId.pipe(
|
|
switchMap((id) => observeUser(database, id)),
|
|
);
|
|
const userIsOutOfOffice = currentUser.pipe(
|
|
switchMap((u) => of$(u?.status === General.OUT_OF_OFFICE)),
|
|
);
|
|
|
|
const postPriority = queryDraft(database, channelId, rootId).observeWithColumns(['metadata']).pipe(
|
|
switchMap(observeFirstDraft),
|
|
switchMap((d) => {
|
|
if (!d?.metadata?.priority) {
|
|
return of$(INITIAL_PRIORITY);
|
|
}
|
|
|
|
return of$(d.metadata.priority);
|
|
}),
|
|
);
|
|
|
|
const enableConfirmNotificationsToChannel = observeConfigBooleanValue(database, 'EnableConfirmNotificationsToChannel');
|
|
const isTimezoneEnabled = observeConfigBooleanValue(database, 'ExperimentalTimezone');
|
|
const maxMessageLength = observeConfigIntValue(database, 'MaxPostSize', MAX_MESSAGE_LENGTH_FALLBACK);
|
|
const persistentNotificationInterval = observeConfigIntValue(database, 'PersistentNotificationInterval');
|
|
const persistentNotificationMaxRecipients = observeConfigIntValue(database, 'PersistentNotificationMaxRecipients');
|
|
|
|
const useChannelMentions = combineLatest([channel, currentUser]).pipe(
|
|
switchMap(([c, u]) => {
|
|
if (!c) {
|
|
return of$(true);
|
|
}
|
|
|
|
return u ? observePermissionForChannel(database, c, u, Permissions.USE_CHANNEL_MENTIONS, false) : of$(false);
|
|
}),
|
|
);
|
|
|
|
const channelInfo = channel.pipe(switchMap((c) => (c ? observeChannelInfo(database, c.id) : of$(undefined))));
|
|
const channelType = channel.pipe(switchMap((c) => of$(c?.type)));
|
|
const membersCount = channelInfo.pipe(
|
|
switchMap((i) => (i ? of$(i.memberCount) : of$(0))),
|
|
);
|
|
|
|
const customEmojis = queryAllCustomEmojis(database).observe();
|
|
|
|
return {
|
|
channelType,
|
|
currentUserId,
|
|
enableConfirmNotificationsToChannel,
|
|
isTimezoneEnabled,
|
|
maxMessageLength,
|
|
membersCount,
|
|
userIsOutOfOffice,
|
|
useChannelMentions,
|
|
customEmojis,
|
|
persistentNotificationInterval,
|
|
persistentNotificationMaxRecipients,
|
|
postPriority,
|
|
};
|
|
});
|
|
|
|
export default withDatabase(enhanced(SendHandler));
|