@amityco/ts-sdk-react-native
Version:
Amity Social Cloud Typescript SDK
117 lines (102 loc) • 4.39 kB
text/typescript
import hash from 'object-hash';
import { pullFromCache, pushToCache } from '~/cache/api';
import { RecommendedCommunitiesPaginationController } from './RecommendedCommunitiesPaginationController';
import { RecommendedCommunitiesQueryStreamController } from './RecommendedCommunitiesQueryStreamController';
import { LiveCollectionController } from '~/core/liveCollection/LiveCollectionController';
import { prepareCommunityPayload } from '~/communityRepository/utils';
import { EnumCommunityActions } from './enums';
import { EnumCommunityMemberActions } from '~/communityRepository/communityMembership/observers/getMembers/enums';
import { onCommunityDeleted, onCommunityUpdated } from '~/communityRepository/events';
import {
onCommunityJoined,
onCommunityLeft,
onLocalCommunityJoined,
onLocalCommunityLeft,
onCommunityUserChanged,
onLocalCommunityJoin,
} from '~/communityRepository/communityMembership';
import { isNonNullable } from '~/utils';
import { communityLinkedObject } from '~/utils/linkedObject/communityLinkedObject';
import { convertEventPayload } from '~/utils/event';
export class RecommendedCommunityLiveCollectionController extends LiveCollectionController<
'community',
Amity.RecommendedCommunityLiveCollection,
Amity.Community,
RecommendedCommunitiesPaginationController
> {
private queryStreamController: RecommendedCommunitiesQueryStreamController;
private query: Amity.RecommendedCommunityLiveCollection;
constructor(
query: Amity.RecommendedCommunityLiveCollection,
callback: Amity.LiveCollectionCallback<Amity.Community>,
) {
const queryStreamId = hash(query);
const cacheKey = ['community', 'collection', queryStreamId];
const paginationController = new RecommendedCommunitiesPaginationController(query);
super(paginationController, queryStreamId, cacheKey, callback);
this.query = query;
this.queryStreamController = new RecommendedCommunitiesQueryStreamController(
this.query,
this.cacheKey,
this.notifyChange.bind(this),
prepareCommunityPayload,
);
this.callback = callback.bind(this);
this.loadPage({ initial: true });
}
protected setup() {
const collection = pullFromCache<Amity.RecommendedCommunityLiveCollectionCache>(
this.cacheKey,
)?.data;
if (!collection) {
pushToCache(this.cacheKey, {
data: [],
params: {},
});
}
}
protected async persistModel(queryPayload: Amity.CommunityPayload & Amity.Pagination) {
await this.queryStreamController.saveToMainDB(queryPayload);
}
protected persistQueryStream({
response,
direction,
refresh,
}: Amity.LiveCollectionPersistQueryStreamParams<'community'>) {
this.queryStreamController.appendToQueryStream(response, direction, refresh);
}
startSubscription() {
return this.queryStreamController.subscribeRTE([
{ fn: onCommunityDeleted, action: EnumCommunityActions.OnCommunityDeleted },
{ fn: onCommunityUpdated, action: EnumCommunityActions.OnCommunityUpdated },
{ fn: onCommunityJoined, action: EnumCommunityMemberActions.OnCommunityJoined },
{ fn: onCommunityLeft, action: EnumCommunityMemberActions.OnCommunityLeft },
{ fn: onCommunityUserChanged, action: EnumCommunityMemberActions.OnMemberCountChanged },
{ fn: onLocalCommunityJoined, action: EnumCommunityMemberActions.OnCommunityJoined },
{ fn: onLocalCommunityLeft, action: EnumCommunityMemberActions.OnCommunityLeft },
{
fn: convertEventPayload(onLocalCommunityJoin, 'targetId', 'community'),
action: EnumCommunityActions.OnCommunityUpdated,
},
]);
}
notifyChange({ origin, loading, error }: Amity.LiveCollectionNotifyParams) {
const collection = pullFromCache<Amity.RecommendedCommunityLiveCollectionCache>(
this.cacheKey,
)?.data;
if (!collection) return;
const data =
collection.data
.map(id => pullFromCache<Amity.Community>(['community', 'get', id]))
.filter(isNonNullable)
.map(({ data }) => communityLinkedObject(data)) ?? [];
if (!this.shouldNotify(data) && origin === 'event') return;
this.callback({
onNextPage: () => this.loadPage({ direction: Amity.LiveCollectionPageDirection.NEXT }),
data,
hasNextPage: !!this.paginationController.getNextToken(),
loading,
error,
});
}
}