@amityco/ts-sdk-react-native
Version:
Amity Social Cloud Typescript SDK
86 lines (72 loc) • 3.11 kB
text/typescript
import { QueryStreamController } from '~/core/liveCollection/QueryStreamController';
import { pullFromCache, pushToCache } from '~/cache/api';
import { ingestInCache } from '~/cache/api/ingestInCache';
import { getResolver } from '~/core/model';
import { getActiveClient } from '~/client';
import { saveCommunityUsers } from '~/communityRepository/utils/saveCommunityUsers';
import { EnumCommunityActions } from './enums';
import { EnumCommunityMemberActions } from '~/communityRepository/communityMembership/observers/getMembers/enums';
export class CommunitiesQueryStreamController extends QueryStreamController<
Amity.CommunityPayload,
Amity.CommunityLiveCollection
> {
private notifyChange: (params: Amity.LiveCollectionNotifyParams) => void;
private preparePayload: (response: Amity.CommunityPayload) => Amity.ProcessedCommunityPayload;
constructor(
query: Amity.CommunityLiveCollection,
cacheKey: string[],
notifyChange: (params: Amity.LiveCollectionNotifyParams) => void,
preparePayload: (response: Amity.CommunityPayload) => Amity.ProcessedCommunityPayload,
) {
super(query, cacheKey);
this.notifyChange = notifyChange;
this.preparePayload = preparePayload;
}
async saveToMainDB(response: Amity.CommunityPayload) {
const processedPayload = await this.preparePayload(response);
const client = getActiveClient();
const cachedAt = client.cache && Date.now();
if (client.cache) {
ingestInCache(processedPayload, { cachedAt });
saveCommunityUsers(response.communities, response.communityUsers);
}
}
appendToQueryStream(
response: Amity.CommunityPayload & Partial<Amity.Pagination>,
direction: Amity.LiveCollectionPageDirection,
refresh = false,
) {
if (refresh) {
pushToCache(this.cacheKey, {
data: response.communities.map(getResolver('community')),
});
} else {
const collection = pullFromCache<Amity.CommunityLiveCollectionCache>(this.cacheKey)?.data;
const communities = collection?.data ?? [];
pushToCache(this.cacheKey, {
...collection,
data: [...new Set([...communities, ...response.communities.map(getResolver('community'))])],
});
}
}
reactor(action: EnumCommunityActions | EnumCommunityMemberActions) {
return (community: Amity.InternalCommunity) => {
const collection = pullFromCache<Amity.CommunityLiveCollectionCache>(this.cacheKey)?.data;
if (!collection) return;
/*
* Simply update a collection and let responder decide what to do with data
*/
collection.data = [...new Set([community.communityId, ...collection.data])];
pushToCache(this.cacheKey, collection);
this.notifyChange({ origin: Amity.LiveDataOrigin.EVENT, loading: false });
};
}
subscribeRTE(
createSubscriber: {
fn: (reactor: (channel: Amity.InternalCommunity) => void) => Amity.Unsubscriber;
action: EnumCommunityActions | EnumCommunityMemberActions;
}[],
) {
return createSubscriber.map(subscriber => subscriber.fn(this.reactor(subscriber.action)));
}
}