@amityco/ts-sdk-react-native
Version:
Amity Social Cloud Typescript SDK
169 lines (149 loc) • 6.23 kB
text/typescript
import hash from 'object-hash';
import { pullFromCache, pushToCache } from '~/cache/api';
import { CommunityMembersPaginationController } from './CommunityMembersPaginationController';
import { CommunityMembersQueryStreamController } from './CommunityMembersQueryStreamController';
import { LiveCollectionController } from '~/core/liveCollection/LiveCollectionController';
import {
onCommunityJoined,
onCommunityLeft,
onCommunityUserBanned,
onCommunityUserChanged,
onCommunityUserRoleAdded,
onCommunityUserRoleRemoved,
onCommunityUserUnbanned,
onLocalCommunityUserAdded,
onLocalCommunityUserRemoved,
onLocalCommunityLeft,
onLocalCommunityJoined,
} from '~/communityRepository/communityMembership/events';
import {
filterByPropIntersection,
filterBySearchTerm,
sortByFirstCreated,
sortByLastCreated,
} from '~/core/query';
import { prepareCommunityPayload } from '~/communityRepository/utils';
import { isNonNullable } from '~/utils';
import { EnumCommunityMemberActions } from './enums';
import { onLocalCommunityRoleRemoved } from '~/communityRepository/communityModeration/events/onLocalCommunityRoleRemoved';
import { onLocalCommunityRoleAdded } from '~/communityRepository/communityModeration/events/onLocalCommunityRoleAdded';
import { onUserDeleted } from '~/communityRepository/communityMembership/events/onUserDeleted';
export class CommunityMembersLiveCollectionController extends LiveCollectionController<
'communityUser',
Amity.CommunityMemberLiveCollection,
Amity.Membership<'community'>,
CommunityMembersPaginationController
> {
private queryStreamController: CommunityMembersQueryStreamController;
private query: Amity.CommunityMemberLiveCollection;
constructor(
query: Amity.CommunityMemberLiveCollection,
callback: Amity.LiveCollectionCallback<Amity.Membership<'community'>>,
) {
const queryStreamId = hash(query);
const cacheKey = ['communityUsers', 'collection', queryStreamId];
const paginationController = new CommunityMembersPaginationController(query);
super(paginationController, queryStreamId, cacheKey, callback);
this.query = query;
this.queryStreamController = new CommunityMembersQueryStreamController(
this.query,
this.cacheKey,
this.notifyChange.bind(this),
prepareCommunityPayload,
);
this.callback = callback.bind(this);
this.loadPage({ initial: true });
}
protected setup() {
const collection = pullFromCache<Amity.CommunityMemberLiveCollectionCache>(this.cacheKey)?.data;
if (!collection) {
pushToCache(this.cacheKey, {
data: [],
params: {},
});
}
}
protected async persistModel(queryPayload: Amity.CommunityMembershipPayload & Amity.Pagination) {
await this.queryStreamController.saveToMainDB(queryPayload);
}
protected persistQueryStream({
response,
direction,
refresh,
}: Amity.LiveCollectionPersistQueryStreamParams<'communityUser'>) {
this.queryStreamController.appendToQueryStream(response, direction, refresh);
}
startSubscription() {
return this.queryStreamController.subscribeRTE([
{ fn: onCommunityJoined, action: EnumCommunityMemberActions.OnCommunityJoined },
{ fn: onLocalCommunityJoined, action: EnumCommunityMemberActions.OnCommunityJoined },
{ fn: onCommunityLeft, action: EnumCommunityMemberActions.OnCommunityLeft },
{ fn: onLocalCommunityLeft, action: EnumCommunityMemberActions.OnCommunityLeft },
{ fn: onCommunityUserBanned, action: EnumCommunityMemberActions.OnCommunityUserBanned },
{ fn: onCommunityUserChanged, action: EnumCommunityMemberActions.OnCommunityUserChanged },
{ fn: onCommunityUserRoleAdded, action: EnumCommunityMemberActions.OnCommunityUserRoleAdded },
{
fn: onCommunityUserRoleRemoved,
action: EnumCommunityMemberActions.OnCommunityUserRoleRemoved,
},
{
fn: onLocalCommunityRoleAdded,
action: EnumCommunityMemberActions.OnCommunityUserRoleAdded,
},
{
fn: onLocalCommunityRoleRemoved,
action: EnumCommunityMemberActions.OnCommunityUserRoleRemoved,
},
{ fn: onCommunityUserUnbanned, action: EnumCommunityMemberActions.OnCommunityUserUnbanned },
{ fn: onLocalCommunityUserAdded, action: EnumCommunityMemberActions.OnCommunityUserAdded },
{
fn: onLocalCommunityUserRemoved,
action: EnumCommunityMemberActions.onCommunityUserRemoved,
},
{
fn: onUserDeleted(this.query.communityId),
action: EnumCommunityMemberActions.OnCommunityUserChanged,
},
]);
}
notifyChange({ origin, loading, error }: Amity.LiveCollectionNotifyParams) {
const collection = pullFromCache<Amity.CommunityMemberLiveCollectionCache>(this.cacheKey)?.data;
if (!collection) return;
const data = this.applyFilter(
collection.data
.map(id => pullFromCache<Amity.Membership<'community'>>(['communityUsers', 'get', id])!)
.filter(isNonNullable)
.map(({ data }) => data) ?? [],
);
if (!this.shouldNotify(data) && origin === 'event') return;
this.callback({
onNextPage: () => this.loadPage({ direction: Amity.LiveCollectionPageDirection.NEXT }),
data,
hasNextPage: !!this.paginationController.getNextToken(),
loading,
error,
});
}
applyFilter(data: Amity.Membership<'community'>[]) {
let communityMembers = filterByPropIntersection(data, 'roles', this.query.roles);
if (this.query.memberships) {
communityMembers = communityMembers.filter(({ communityMembership }) => {
const memberships: Amity.GroupMembership[] = this.query.memberships || [];
return memberships.includes(communityMembership);
});
}
if (this.query.includeDeleted === false) {
communityMembers = communityMembers.filter(({ user }) => user?.isDeleted !== true);
}
switch (this.query.sortBy) {
case 'firstCreated':
communityMembers = communityMembers.sort(sortByFirstCreated);
break;
case 'lastCreated':
default:
communityMembers = communityMembers.sort(sortByLastCreated);
break;
}
return communityMembers;
}
}