12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- import { createSelector } from 'reselect';
- import {
- RootState,
- TopicName,
- FetchStatus,
- TopicsState,
- TopicConfigByName,
- } from 'redux/interfaces';
- import { createFetchingSelector } from 'redux/reducers/loader/selectors';
- const topicsState = ({ topics }: RootState): TopicsState => topics;
- const getAllNames = (state: RootState) => topicsState(state).allNames;
- const getTopicMap = (state: RootState) => topicsState(state).byName;
- const getTopicListFetchingStatus = createFetchingSelector('GET_TOPICS');
- const getTopicDetailsFetchingStatus = createFetchingSelector(
- 'GET_TOPIC_DETAILS'
- );
- const getTopicConfigFetchingStatus = createFetchingSelector('GET_TOPIC_CONFIG');
- const getTopicCreationStatus = createFetchingSelector('POST_TOPIC');
- const getTopicUpdateStatus = createFetchingSelector('PATCH_TOPIC');
- export const getIsTopicListFetched = createSelector(
- getTopicListFetchingStatus,
- (status) => status === FetchStatus.fetched
- );
- export const getIsTopicDetailsFetched = createSelector(
- getTopicDetailsFetchingStatus,
- (status) => status === FetchStatus.fetched
- );
- export const getTopicConfigFetched = createSelector(
- getTopicConfigFetchingStatus,
- (status) => status === FetchStatus.fetched
- );
- export const getTopicCreated = createSelector(
- getTopicCreationStatus,
- (status) => status === FetchStatus.fetched
- );
- export const getTopicUpdated = createSelector(
- getTopicUpdateStatus,
- (status) => status === FetchStatus.fetched
- );
- export const getTopicList = createSelector(
- getIsTopicListFetched,
- getAllNames,
- getTopicMap,
- (isFetched, allNames, byName) => {
- if (!isFetched) {
- return [];
- }
- return allNames.map((name) => byName[name]);
- }
- );
- export const getExternalTopicList = createSelector(getTopicList, (topics) =>
- topics.filter(({ internal }) => !internal)
- );
- const getTopicName = (_: RootState, topicName: TopicName) => topicName;
- export const getTopicByName = createSelector(
- getTopicMap,
- getTopicName,
- (topics, topicName) => topics[topicName]
- );
- export const getFullTopic = createSelector(getTopicByName, (topic) =>
- topic && topic.config && !!topic.partitionCount ? topic : undefined
- );
- export const getTopicConfig = createSelector(
- getTopicByName,
- ({ config }) => config
- );
- export const getTopicConfigByParamName = createSelector(
- getTopicConfig,
- (config) => {
- const byParamName: TopicConfigByName = {
- byName: {},
- };
- if (config) {
- config.forEach((param) => {
- byParamName.byName[param.name] = param;
- });
- }
- return byParamName;
- }
- );
|