@amityco/ts-sdk-react-native
Version:
Amity Social Cloud Typescript SDK
39 lines (29 loc) • 1.11 kB
text/typescript
import { getActiveClient } from '~/client/api/activeClient';
import { createEventSubscriber } from '~/core/events';
import { ingestInCache } from '~/cache/api/ingestInCache';
import { prepareChannelPayload } from '../utils';
type CallbackFn = (channel: Amity.StaticInternalChannel) => void;
const callbacks: CallbackFn[] = [];
let mainDisposer: (() => void) | null = null;
const dispose = (cb: CallbackFn) => {
const index = callbacks.indexOf(cb);
if (index > -1) {
callbacks.splice(index, 1);
}
if (callbacks.length === 0) {
mainDisposer?.();
}
};
export const onChannelCreated = (callback: Amity.Listener<Amity.StaticInternalChannel>) => {
if (callbacks.length === 0) {
const client = getActiveClient();
const filter = async (payload: Amity.ChannelPayload) => {
const data = await prepareChannelPayload(payload);
ingestInCache(data);
callbacks.forEach(cb => cb(data.channels[0]));
};
mainDisposer = createEventSubscriber(client, 'onChannelCreated', 'channel.created', filter);
}
callbacks.push(callback);
return () => dispose(callback);
};