12345678910111213141516171819202122232425262728293031323334 |
- import React from 'react';
- import { ClusterName } from 'redux/interfaces';
- import {
- Switch,
- Route,
- } from 'react-router-dom';
- import ListContainer from './List/ListContainer';
- import PageLoader from 'components/common/PageLoader/PageLoader';
- interface Props {
- clusterName: ClusterName;
- isFetched: boolean;
- fetchConsumerGroupsList: (clusterName: ClusterName) => void;
- }
- const ConsumerGroups: React.FC<Props> = ({
- clusterName,
- isFetched,
- fetchConsumerGroupsList,
- }) => {
- React.useEffect(() => { fetchConsumerGroupsList(clusterName); }, [fetchConsumerGroupsList, clusterName]);
- if (isFetched) {
- return (
- <Switch>
- <Route exact path="/clusters/:clusterName/consumer-groups" component={ListContainer} />
- </Switch>
- );
- }
- return (<PageLoader />);
- };
- export default ConsumerGroups;
|