File size: 1,060 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
// @flow
import {
getCommunities,
getCommunitiesBySlug,
getCommunitiesChannelCounts,
getCommunitiesMemberCounts,
} from '../models/community';
import { getCommunitiesSettings } from '../models/communitySettings';
import createLoader from './create-loader';
export const __createCommunityLoader = createLoader(communities =>
getCommunities(communities)
);
export const __createCommunityBySlugLoader = createLoader(
communities => getCommunitiesBySlug(communities),
'slug'
);
export const __createCommunityMemberCountLoader = createLoader(
communityIds => getCommunitiesMemberCounts(communityIds),
'group'
);
export const __createCommunityChannelCountLoader = createLoader(
communityIds => getCommunitiesChannelCounts(communityIds),
'group'
);
export const __createCommunitySettingsLoader = createLoader(
communityIds => getCommunitiesSettings(communityIds),
key => key.communityId
);
export default () => {
throw new Error(
'⚠️ Do not import loaders directly, get them from the GraphQL context instead! ⚠️'
);
};
|