* WIP * Actions updated to fetch remote first, and local on error * Groups fetch and save * PR Feedback: prepare vs store and undefined fix * Forgot to add file * Groups Mention WIP * Groups highlight! * Merge, PR Feedback * PR Feedback * PR Feedback: Try/Catch blocks * PR Feedback * Rebased with PR feedback * Exclusion fix, plus id order * Tidies up iterations * Loops updated * Update app/database/operator/server_data_operator/handlers/group.ts Co-authored-by: Avinash Lingaloo <avinashlng1080@gmail.com> * PR Feedback: Remove unnecessary prepare/store methods * Newline ESLint error * Extracts out id generation for group-associations * Batches if not fetchOnly Co-authored-by: Avinash Lingaloo <avinashlng1080@gmail.com>
34 lines
1.4 KiB
TypeScript
34 lines
1.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 {switchMap} from 'rxjs/operators';
|
|
|
|
import {queryGroupsByName, queryGroupMembershipForMember} from '@queries/servers/group';
|
|
import {observeCurrentUserId} from '@queries/servers/system';
|
|
import {observeTeammateNameDisplay, queryUsersLike} from '@queries/servers/user';
|
|
|
|
import AtMention from './at_mention';
|
|
|
|
import type {WithDatabaseArgs} from '@typings/database/database';
|
|
|
|
const enhance = withObservables(['mentionName'], ({database, mentionName}: {mentionName: string} & WithDatabaseArgs) => {
|
|
const currentUserId = observeCurrentUserId(database);
|
|
const teammateNameDisplay = observeTeammateNameDisplay(database);
|
|
|
|
let mn = mentionName.toLowerCase();
|
|
if ((/[._-]$/).test(mn)) {
|
|
mn = mn.substring(0, mn.length - 1);
|
|
}
|
|
|
|
return {
|
|
currentUserId,
|
|
teammateNameDisplay,
|
|
users: queryUsersLike(database, mn).observeWithColumns(['username']),
|
|
groups: queryGroupsByName(database, mn).observeWithColumns(['name']),
|
|
groupMemberships: currentUserId.pipe(switchMap((userId) => queryGroupMembershipForMember(database, userId).observe())),
|
|
};
|
|
});
|
|
|
|
export default withDatabase(enhance(AtMention));
|