#219 ReadOnly flag (#231)

* Implement read-only flag logic

* Test new functionality
This commit is contained in:
Alexander Krivonosov 2021-03-11 12:00:46 +03:00 committed by GitHub
parent e02dd84491
commit 1188ce9bc2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 208 additions and 78 deletions

View file

@ -17,6 +17,7 @@ const ClusterWidget: React.FC<ClusterWidgetProps> = ({
bytesInPerSec, bytesInPerSec,
bytesOutPerSec, bytesOutPerSec,
onlinePartitionCount, onlinePartitionCount,
readOnly,
}, },
}) => ( }) => (
<div className="column is-full-modile is-6"> <div className="column is-full-modile is-6">
@ -29,6 +30,9 @@ const ClusterWidget: React.FC<ClusterWidgetProps> = ({
> >
{status} {status}
</div> </div>
{readOnly && (
<div className="tag has-margin-right is-info is-light">readonly</div>
)}
{name} {name}
</div> </div>

View file

@ -70,4 +70,17 @@ describe('ClusterWidget', () => {
).toMatchSnapshot(); ).toMatchSnapshot();
}); });
}); });
describe('when cluster is read-only', () => {
it('renders the tag', () => {
expect(
shallow(
<ClusterWidget cluster={{ ...onlineCluster, readOnly: true }} />
)
.find('.title')
.childAt(1)
.text()
).toEqual('readonly');
});
});
}); });

View file

@ -2,6 +2,7 @@ import React from 'react';
import { SchemaSubject } from 'generated-sources'; import { SchemaSubject } from 'generated-sources';
import { ClusterName, SchemaName } from 'redux/interfaces'; import { ClusterName, SchemaName } from 'redux/interfaces';
import { clusterSchemasPath } from 'lib/paths'; import { clusterSchemasPath } from 'lib/paths';
import ClusterContext from 'components/contexts/ClusterContext';
import Breadcrumb from '../../common/Breadcrumb/Breadcrumb'; import Breadcrumb from '../../common/Breadcrumb/Breadcrumb';
import SchemaVersion from './SchemaVersion'; import SchemaVersion from './SchemaVersion';
import LatestVersionItem from './LatestVersionItem'; import LatestVersionItem from './LatestVersionItem';
@ -25,6 +26,7 @@ const Details: React.FC<DetailsProps> = ({
versions, versions,
isFetched, isFetched,
}) => { }) => {
const { isReadOnly } = React.useContext(ClusterContext);
React.useEffect(() => { React.useEffect(() => {
fetchSchemaVersions(clusterName, schema.subject as SchemaName); fetchSchemaVersions(clusterName, schema.subject as SchemaName);
}, [fetchSchemaVersions, clusterName]); }, [fetchSchemaVersions, clusterName]);
@ -54,24 +56,26 @@ const Details: React.FC<DetailsProps> = ({
</div> </div>
</div> </div>
</div> </div>
<div className="level-right"> {!isReadOnly && (
<button <div className="level-right">
className="button is-warning is-small level-item" <button
type="button" className="button is-warning is-small level-item"
title="in development" type="button"
disabled title="in development"
> disabled
Update Schema >
</button> Update Schema
<button </button>
className="button is-danger is-small level-item" <button
type="button" className="button is-danger is-small level-item"
title="in development" type="button"
disabled title="in development"
> disabled
Delete >
</button> Delete
</div> </button>
</div>
)}
</div> </div>
<LatestVersionItem schema={schema} /> <LatestVersionItem schema={schema} />
</div> </div>

View file

@ -1,7 +1,9 @@
import React from 'react'; import React from 'react';
import { Provider } from 'react-redux'; import { Provider } from 'react-redux';
import { shallow } from 'enzyme'; import { shallow, mount } from 'enzyme';
import configureStore from 'redux/store/configureStore'; import configureStore from 'redux/store/configureStore';
import { StaticRouter } from 'react-router';
import ClusterContext from 'components/contexts/ClusterContext';
import DetailsContainer from '../DetailsContainer'; import DetailsContainer from '../DetailsContainer';
import Details, { DetailsProps } from '../Details'; import Details, { DetailsProps } from '../Details';
import { schema, versions } from './fixtures'; import { schema, versions } from './fixtures';
@ -101,6 +103,20 @@ describe('Details', () => {
expect(shallow(setupWrapper({ versions }))).toMatchSnapshot(); expect(shallow(setupWrapper({ versions }))).toMatchSnapshot();
}); });
}); });
describe('when the readonly flag is set', () => {
it('does not render update & delete buttons', () => {
expect(
mount(
<StaticRouter>
<ClusterContext.Provider value={{ isReadOnly: true }}>
{setupWrapper({ versions })}
</ClusterContext.Provider>
</StaticRouter>
).exists('.level-right')
).toBeFalsy();
});
});
}); });
}); });
}); });

View file

@ -3,6 +3,7 @@ import { SchemaSubject } from 'generated-sources';
import { NavLink, useParams } from 'react-router-dom'; import { NavLink, useParams } from 'react-router-dom';
import { clusterSchemaNewPath } from 'lib/paths'; import { clusterSchemaNewPath } from 'lib/paths';
import Breadcrumb from 'components/common/Breadcrumb/Breadcrumb'; import Breadcrumb from 'components/common/Breadcrumb/Breadcrumb';
import ClusterContext from 'components/contexts/ClusterContext';
import ListItem from './ListItem'; import ListItem from './ListItem';
export interface ListProps { export interface ListProps {
@ -10,6 +11,7 @@ export interface ListProps {
} }
const List: React.FC<ListProps> = ({ schemas }) => { const List: React.FC<ListProps> = ({ schemas }) => {
const { isReadOnly } = React.useContext(ClusterContext);
const { clusterName } = useParams<{ clusterName: string }>(); const { clusterName } = useParams<{ clusterName: string }>();
return ( return (
@ -17,14 +19,16 @@ const List: React.FC<ListProps> = ({ schemas }) => {
<Breadcrumb>Schema Registry</Breadcrumb> <Breadcrumb>Schema Registry</Breadcrumb>
<div className="box"> <div className="box">
<div className="level"> <div className="level">
<div className="level-item level-right"> {!isReadOnly && (
<NavLink <div className="level-item level-right">
className="button is-primary" <NavLink
to={clusterSchemaNewPath(clusterName)} className="button is-primary"
> to={clusterSchemaNewPath(clusterName)}
Create Schema >
</NavLink> Create Schema
</div> </NavLink>
</div>
)}
</div> </div>
</div> </div>

View file

@ -3,6 +3,7 @@ import { mount, shallow } from 'enzyme';
import { Provider } from 'react-redux'; import { Provider } from 'react-redux';
import { StaticRouter } from 'react-router'; import { StaticRouter } from 'react-router';
import configureStore from 'redux/store/configureStore'; import configureStore from 'redux/store/configureStore';
import ClusterContext from 'components/contexts/ClusterContext';
import ListContainer from '../ListContainer'; import ListContainer from '../ListContainer';
import List, { ListProps } from '../List'; import List, { ListProps } from '../List';
import { schemas } from './fixtures'; import { schemas } from './fixtures';
@ -49,5 +50,18 @@ describe('List', () => {
expect(wrapper.find('ListItem').length).toEqual(3); expect(wrapper.find('ListItem').length).toEqual(3);
}); });
}); });
describe('with readonly cluster', () => {
const wrapper = mount(
<StaticRouter>
<ClusterContext.Provider value={{ isReadOnly: true }}>
{setupWrapper({ schemas: [] })}
</ClusterContext.Provider>
</StaticRouter>
);
it('does not render Create Schema button', () => {
expect(wrapper.exists('NavLink')).toBeFalsy();
});
});
}); });
}); });

View file

@ -5,15 +5,18 @@ import PageLoader from 'components/common/PageLoader/PageLoader';
import ListContainer from './List/ListContainer'; import ListContainer from './List/ListContainer';
import DetailsContainer from './Details/DetailsContainer'; import DetailsContainer from './Details/DetailsContainer';
import NewContainer from './New/NewContainer'; import NewContainer from './New/NewContainer';
import ClusterContext from '../contexts/ClusterContext';
export interface SchemasProps { export interface SchemasProps {
isFetching: boolean; isFetching: boolean;
fetchSchemasByClusterName: (clusterName: ClusterName) => void; fetchSchemasByClusterName: (clusterName: ClusterName) => void;
isReadOnly: boolean;
} }
const Schemas: React.FC<SchemasProps> = ({ const Schemas: React.FC<SchemasProps> = ({
isFetching, isFetching,
fetchSchemasByClusterName, fetchSchemasByClusterName,
isReadOnly,
}) => { }) => {
const { clusterName } = useParams<{ clusterName: string }>(); const { clusterName } = useParams<{ clusterName: string }>();
@ -26,23 +29,25 @@ const Schemas: React.FC<SchemasProps> = ({
} }
return ( return (
<Switch> <ClusterContext.Provider value={{ isReadOnly }}>
<Route <Switch>
exact <Route
path="/ui/clusters/:clusterName/schemas" exact
component={ListContainer} path="/ui/clusters/:clusterName/schemas"
/> component={ListContainer}
<Route />
exact <Route
path="/ui/clusters/:clusterName/schemas/new" exact
component={NewContainer} path="/ui/clusters/:clusterName/schemas/new"
/> component={NewContainer}
<Route />
exact <Route
path="/ui/clusters/:clusterName/schemas/:subject/latest" exact
component={DetailsContainer} path="/ui/clusters/:clusterName/schemas/:subject/latest"
/> component={DetailsContainer}
</Switch> />
</Switch>
</ClusterContext.Provider>
); );
}; };

View file

@ -1,15 +1,33 @@
import { connect } from 'react-redux'; import { connect } from 'react-redux';
import { RootState } from 'redux/interfaces'; import { RootState, ClusterName } from 'redux/interfaces';
import { fetchSchemasByClusterName } from 'redux/actions'; import { fetchSchemasByClusterName } from 'redux/actions';
import { getIsSchemaListFetching } from 'redux/reducers/schemas/selectors'; import { getIsSchemaListFetching } from 'redux/reducers/schemas/selectors';
import { getClustersReadonlyStatus } from 'redux/reducers/clusters/selectors';
import { RouteComponentProps, withRouter } from 'react-router-dom';
import Schemas from './Schemas'; import Schemas from './Schemas';
const mapStateToProps = (state: RootState) => ({ interface RouteProps {
clusterName: ClusterName;
}
type OwnProps = RouteComponentProps<RouteProps>;
const mapStateToProps = (
state: RootState,
{
match: {
params: { clusterName },
},
}: OwnProps
) => ({
isFetching: getIsSchemaListFetching(state), isFetching: getIsSchemaListFetching(state),
isReadOnly: getClustersReadonlyStatus(clusterName)(state),
}); });
const mapDispatchToProps = { const mapDispatchToProps = {
fetchSchemasByClusterName, fetchSchemasByClusterName,
}; };
export default connect(mapStateToProps, mapDispatchToProps)(Schemas); export default withRouter(
connect(mapStateToProps, mapDispatchToProps)(Schemas)
);

View file

@ -30,6 +30,7 @@ describe('Schemas', () => {
<Schemas <Schemas
isFetching isFetching
fetchSchemasByClusterName={jest.fn()} fetchSchemasByClusterName={jest.fn()}
isReadOnly={false}
{...props} {...props}
/> />
</StaticRouter> </StaticRouter>

View file

@ -10,6 +10,7 @@ import {
clusterTopicMessagesPath, clusterTopicMessagesPath,
clusterTopicsTopicEditPath, clusterTopicsTopicEditPath,
} from 'lib/paths'; } from 'lib/paths';
import ClusterContext from 'components/contexts/ClusterContext';
import OverviewContainer from './Overview/OverviewContainer'; import OverviewContainer from './Overview/OverviewContainer';
import MessagesContainer from './Messages/MessagesContainer'; import MessagesContainer from './Messages/MessagesContainer';
import SettingsContainer from './Settings/SettingsContainer'; import SettingsContainer from './Settings/SettingsContainer';
@ -21,6 +22,7 @@ interface Props extends Topic, TopicDetails {
} }
const Details: React.FC<Props> = ({ clusterName, topicName }) => { const Details: React.FC<Props> = ({ clusterName, topicName }) => {
const { isReadOnly } = React.useContext(ClusterContext);
return ( return (
<div className="section"> <div className="section">
<div className="level"> <div className="level">
@ -33,9 +35,11 @@ const Details: React.FC<Props> = ({ clusterName, topicName }) => {
{topicName} {topicName}
</Breadcrumb> </Breadcrumb>
</div> </div>
<SettingsEditButton {!isReadOnly && (
to={clusterTopicsTopicEditPath(clusterName, topicName)} <SettingsEditButton
/> to={clusterTopicsTopicEditPath(clusterName, topicName)}
/>
)}
</div> </div>
<div className="box"> <div className="box">

View file

@ -3,6 +3,7 @@ import { TopicWithDetailedInfo, ClusterName } from 'redux/interfaces';
import Breadcrumb from 'components/common/Breadcrumb/Breadcrumb'; import Breadcrumb from 'components/common/Breadcrumb/Breadcrumb';
import { NavLink } from 'react-router-dom'; import { NavLink } from 'react-router-dom';
import { clusterTopicNewPath } from 'lib/paths'; import { clusterTopicNewPath } from 'lib/paths';
import ClusterContext from 'components/contexts/ClusterContext';
import ListItem from './ListItem'; import ListItem from './ListItem';
interface Props { interface Props {
@ -15,7 +16,7 @@ const List: React.FC<Props> = ({ clusterName, topics, externalTopics }) => {
const [showInternal, setShowInternal] = React.useState<boolean>(true); const [showInternal, setShowInternal] = React.useState<boolean>(true);
const handleSwitch = () => setShowInternal(!showInternal); const handleSwitch = () => setShowInternal(!showInternal);
const { isReadOnly } = React.useContext(ClusterContext);
const items = showInternal ? topics : externalTopics; const items = showInternal ? topics : externalTopics;
return ( return (
@ -38,12 +39,14 @@ const List: React.FC<Props> = ({ clusterName, topics, externalTopics }) => {
</div> </div>
</div> </div>
<div className="level-item level-right"> <div className="level-item level-right">
<NavLink {!isReadOnly && (
className="button is-primary" <NavLink
to={clusterTopicNewPath(clusterName)} className="button is-primary"
> to={clusterTopicNewPath(clusterName)}
Add a Topic >
</NavLink> Add a Topic
</NavLink>
)}
</div> </div>
</div> </div>
</div> </div>

View file

@ -0,0 +1,22 @@
import { mount } from 'enzyme';
import React from 'react';
import ClusterContext from 'components/contexts/ClusterContext';
import List from '../List';
describe('List', () => {
describe('when it has readonly flag', () => {
it('does not render the Add a Topic button', () => {
const props = {
clusterName: 'Cluster',
topics: [],
externalTopics: [],
};
const component = mount(
<ClusterContext.Provider value={{ isReadOnly: true }}>
<List {...props} />
</ClusterContext.Provider>
);
expect(component.exists('NavLink')).toBeFalsy();
});
});
});

View file

@ -6,18 +6,21 @@ import EditContainer from 'components/Topics/Edit/EditContainer';
import ListContainer from './List/ListContainer'; import ListContainer from './List/ListContainer';
import DetailsContainer from './Details/DetailsContainer'; import DetailsContainer from './Details/DetailsContainer';
import NewContainer from './New/NewContainer'; import NewContainer from './New/NewContainer';
import ClusterContext from '../contexts/ClusterContext';
interface Props { interface Props {
clusterName: ClusterName; clusterName: ClusterName;
isFetched: boolean; isFetched: boolean;
fetchBrokers: (clusterName: ClusterName) => void; fetchBrokers: (clusterName: ClusterName) => void;
fetchTopicsList: (clusterName: ClusterName) => void; fetchTopicsList: (clusterName: ClusterName) => void;
isReadOnly: boolean;
} }
const Topics: React.FC<Props> = ({ const Topics: React.FC<Props> = ({
clusterName, clusterName,
isFetched, isFetched,
fetchTopicsList, fetchTopicsList,
isReadOnly,
}) => { }) => {
React.useEffect(() => { React.useEffect(() => {
fetchTopicsList(clusterName); fetchTopicsList(clusterName);
@ -25,27 +28,29 @@ const Topics: React.FC<Props> = ({
if (isFetched) { if (isFetched) {
return ( return (
<Switch> <ClusterContext.Provider value={{ isReadOnly }}>
<Route <Switch>
exact <Route
path="/ui/clusters/:clusterName/topics" exact
component={ListContainer} path="/ui/clusters/:clusterName/topics"
/> component={ListContainer}
<Route />
exact <Route
path="/ui/clusters/:clusterName/topics/new" exact
component={NewContainer} path="/ui/clusters/:clusterName/topics/new"
/> component={NewContainer}
<Route />
exact <Route
path="/ui/clusters/:clusterName/topics/:topicName/edit" exact
component={EditContainer} path="/ui/clusters/:clusterName/topics/:topicName/edit"
/> component={EditContainer}
<Route />
path="/ui/clusters/:clusterName/topics/:topicName" <Route
component={DetailsContainer} path="/ui/clusters/:clusterName/topics/:topicName"
/> component={DetailsContainer}
</Switch> />
</Switch>
</ClusterContext.Provider>
); );
} }

View file

@ -3,6 +3,7 @@ import { fetchTopicsList } from 'redux/actions';
import { getIsTopicListFetched } from 'redux/reducers/topics/selectors'; import { getIsTopicListFetched } from 'redux/reducers/topics/selectors';
import { RootState, ClusterName } from 'redux/interfaces'; import { RootState, ClusterName } from 'redux/interfaces';
import { RouteComponentProps } from 'react-router-dom'; import { RouteComponentProps } from 'react-router-dom';
import { getClustersReadonlyStatus } from 'redux/reducers/clusters/selectors';
import Topics from './Topics'; import Topics from './Topics';
interface RouteProps { interface RouteProps {
@ -21,6 +22,7 @@ const mapStateToProps = (
) => ({ ) => ({
isFetched: getIsTopicListFetched(state), isFetched: getIsTopicListFetched(state),
clusterName, clusterName,
isReadOnly: getClustersReadonlyStatus(clusterName)(state),
}); });
const mapDispatchToProps = { const mapDispatchToProps = {

View file

@ -0,0 +1,8 @@
import React from 'react';
const initialValue: { isReadOnly: boolean } = {
isReadOnly: false,
};
const ClusterContext = React.createContext(initialValue);
export default ClusterContext;

View file

@ -24,3 +24,10 @@ export const getOnlineClusters = createSelector(getClusterList, (clusters) =>
export const getOfflineClusters = createSelector(getClusterList, (clusters) => export const getOfflineClusters = createSelector(getClusterList, (clusters) =>
clusters.filter(({ status }) => status === ServerStatus.OFFLINE) clusters.filter(({ status }) => status === ServerStatus.OFFLINE)
); );
export const getClustersReadonlyStatus = (clusterName: string) =>
createSelector(
getClusterList,
(clusters): boolean =>
clusters.find(({ name }) => name === clusterName)?.readOnly || false
);