Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(graphCardSelectors): improve sync for multiple api calls #215

Merged
merged 1 commit into from
Mar 4, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ exports[`GraphCard Component should render a non-connected component: non-connec
]
}
placeholder="t(curiosity-graph.dropdownPlaceholder)"
selectedOptions={null}
selectedOptions="daily"
variant="single"
/>
</CardActions>
Expand Down Expand Up @@ -144,7 +144,7 @@ exports[`GraphCard Component should render multiple states: error with 403 statu
]
}
placeholder="t(curiosity-graph.dropdownPlaceholder)"
selectedOptions={null}
selectedOptions="daily"
variant="single"
/>
</CardActions>
Expand Down Expand Up @@ -247,7 +247,7 @@ exports[`GraphCard Component should render multiple states: error with 500 statu
]
}
placeholder="t(curiosity-graph.dropdownPlaceholder)"
selectedOptions={null}
selectedOptions="daily"
variant="single"
/>
</CardActions>
Expand Down Expand Up @@ -350,7 +350,7 @@ exports[`GraphCard Component should render multiple states: fulfilled 1`] = `
]
}
placeholder="t(curiosity-graph.dropdownPlaceholder)"
selectedOptions={null}
selectedOptions="daily"
variant="single"
/>
</CardActions>
Expand Down Expand Up @@ -453,7 +453,7 @@ exports[`GraphCard Component should render multiple states: pending 1`] = `
]
}
placeholder="t(curiosity-graph.dropdownPlaceholder)"
selectedOptions={null}
selectedOptions="daily"
variant="single"
/>
</CardActions>
Expand Down
6 changes: 3 additions & 3 deletions src/components/graphCard/__tests__/graphCard.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@ import React from 'react';
import { shallow } from 'enzyme';
import { ChartArea } from '../../chartArea/chartArea';
import { GraphCard } from '../graphCard';
import { RHSM_API_QUERY_GRANULARITY_TYPES as GRANULARITY_TYPES } from '../../../types/rhsmApiTypes';

describe('GraphCard Component', () => {
it('should render a non-connected component', () => {
const props = { productId: 'lorem' };
const props = { graphGranularity: GRANULARITY_TYPES.DAILY, productId: 'lorem' };
const component = shallow(<GraphCard {...props} />);

expect(component).toMatchSnapshot('non-connected');
});

it('should render multiple states', () => {
const props = {
graphGranularity: GRANULARITY_TYPES.DAILY,
productId: 'lorem',
startDate: new Date('2019-06-01T00:00:00Z'),
endDate: new Date('2019-06-30T23:59:59Z'),
graphData: {
physicalSockets: [
{
Expand Down
32 changes: 12 additions & 20 deletions src/components/graphCard/graphCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,23 +17,20 @@ class GraphCard extends React.Component {
}

componentDidUpdate(prevProps) {
const { graphGranularity } = this.props;
const { graphGranularity, productId } = this.props;

if (graphGranularity !== prevProps.graphGranularity) {
if (graphGranularity !== prevProps.graphGranularity || productId !== prevProps.productId) {
this.onUpdateGraphData();
}
}

onUpdateGraphData = () => {
const { getGraphReportsCapacity, graphGranularity, productId, selectOptionsType } = this.props;
const { getGraphReportsCapacity, graphGranularity, productId } = this.props;

if (productId) {
const { selected } = graphCardTypes.getGranularityOptions(selectOptionsType);
const updatedGranularity = graphGranularity || selected;

const { startDate, endDate } = dateHelpers.getRangedDateTime(updatedGranularity);
if (graphGranularity && productId) {
const { startDate, endDate } = dateHelpers.getRangedDateTime(graphGranularity);
const query = {
[rhsmApiTypes.RHSM_API_QUERY_GRANULARITY]: updatedGranularity,
[rhsmApiTypes.RHSM_API_QUERY_GRANULARITY]: graphGranularity,
[rhsmApiTypes.RHSM_API_QUERY_START_DATE]: startDate.toISOString(),
[rhsmApiTypes.RHSM_API_QUERY_END_DATE]: endDate.toISOString()
};
Expand All @@ -42,17 +39,13 @@ class GraphCard extends React.Component {
}
};

onSelect = event => {
const { graphGranularity, viewId } = this.props;
onSelect = (event = {}) => {
const { value } = event;

if (graphGranularity !== value) {
store.dispatch({
type: reduxTypes.rhsm.SET_GRAPH_GRANULARITY_RHSM,
graphGranularity: value,
viewId
});
}
store.dispatch({
type: reduxTypes.rhsm.SET_GRAPH_GRANULARITY_RHSM,
granularity: value
});
};

/**
Expand Down Expand Up @@ -177,7 +170,7 @@ GraphCard.propTypes = {
),
getGraphReportsCapacity: PropTypes.func,
graphData: PropTypes.object,
graphGranularity: PropTypes.oneOf([...Object.values(GRANULARITY_TYPES)]),
graphGranularity: PropTypes.oneOf([...Object.values(GRANULARITY_TYPES)]).isRequired,
pending: PropTypes.bool,
productId: PropTypes.string.isRequired,
selectOptionsType: PropTypes.oneOf(['default']),
Expand All @@ -193,7 +186,6 @@ GraphCard.defaultProps = {
filterGraphData: [],
getGraphReportsCapacity: helpers.noop,
graphData: {},
graphGranularity: null,
pending: false,
selectOptionsType: 'default',
t: helpers.noopTranslate,
Expand Down
10 changes: 5 additions & 5 deletions src/components/i18n/__tests__/__snapshots__/i18n.test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ exports[`I18n Component should generate a predictable pot output snapshot: pot o
msgstr \\"\\"
\\"Content-Type: text/plain; charset=UTF-8\\\\n\\"

#: src/components/openshiftView/openshiftView.js:64
#: src/components/rhelView/rhelView.js:31
#: src/components/openshiftView/openshiftView.js:66
#: src/components/rhelView/rhelView.js:33
msgid \\"curiosity-graph.cardHeading\\"
msgstr \\"\\"

Expand All @@ -31,8 +31,8 @@ msgstr \\"\\"
msgid \\"curiosity-graph.dropdownMonthly\\"
msgstr \\"\\"

#: src/components/graphCard/graphCard.js:141
#: src/components/graphCard/graphCard.js:145
#: src/components/graphCard/graphCard.js:134
#: src/components/graphCard/graphCard.js:138
msgid \\"curiosity-graph.dropdownPlaceholder\\"
msgstr \\"\\"

Expand All @@ -48,7 +48,7 @@ msgstr \\"\\"
msgid \\"curiosity-graph.noDataLabel\\"
msgstr \\"\\"

#: src/components/graphCard/graphCard.js:112
#: src/components/graphCard/graphCard.js:105
#: src/components/graphCard/graphCardHelpers.js:81
msgid \\"curiosity-graph.thresholdLabel\\"
msgstr \\"\\"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ exports[`OpenshiftView Component should have a fallback title: title 1`] = `
},
]
}
graphGranularity="daily"
key="lorem ipsum"
productId="lorem ipsum"
productShortLabel="OpenShift"
Expand Down Expand Up @@ -73,6 +74,7 @@ exports[`OpenshiftView Component should render a non-connected component: non-co
},
]
}
graphGranularity="daily"
key="lorem ipsum"
productId="lorem ipsum"
productShortLabel="OpenShift"
Expand Down
14 changes: 10 additions & 4 deletions src/components/openshiftView/openshiftView.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import React from 'react';
import PropTypes from 'prop-types';
import { withTranslation } from 'react-i18next';
import {
chart_color_blue_100 as chartColorBlueLight,
chart_color_blue_300 as chartColorBlueDark
} from '@patternfly/react-tokens';
import { PageLayout, PageHeader, PageSection } from '../pageLayout/pageLayout';
import { RHSM_API_QUERY_GRANULARITY_TYPES as GRANULARITY_TYPES } from '../../types/rhsmApiTypes';
import { connectTranslate } from '../../redux';
import GraphCard from '../graphCard/graphCard';
import { Select } from '../select/select';
import { helpers } from '../../common';
Expand Down Expand Up @@ -48,7 +49,7 @@ class OpenshiftView extends React.Component {

render() {
const { filters } = this.state;
const { routeDetail, t } = this.props;
const { granularity, routeDetail, t } = this.props;

return (
<PageLayout>
Expand All @@ -59,6 +60,7 @@ class OpenshiftView extends React.Component {
<GraphCard
key={routeDetail.pathParameter}
filterGraphData={filters}
graphGranularity={granularity}
productId={routeDetail.pathParameter}
viewId={routeDetail.pathId}
cardTitle={t('curiosity-graph.cardHeading')}
Expand All @@ -73,6 +75,7 @@ class OpenshiftView extends React.Component {
}

OpenshiftView.propTypes = {
granularity: PropTypes.oneOf([...Object.values(GRANULARITY_TYPES)]),
initialOption: PropTypes.oneOf(['cores', 'sockets']),
initialFilters: PropTypes.array,
routeDetail: PropTypes.shape({
Expand All @@ -86,6 +89,7 @@ OpenshiftView.propTypes = {
};

OpenshiftView.defaultProps = {
granularity: GRANULARITY_TYPES.DAILY,
initialOption: 'cores',
initialFilters: [
{ id: 'cores', fill: chartColorBlueLight.value, stroke: chartColorBlueDark.value },
Expand All @@ -96,6 +100,8 @@ OpenshiftView.defaultProps = {
t: helpers.noopTranslate
};

const TranslatedOpenshiftView = withTranslation()(OpenshiftView);
const mapStateToProps = state => ({ ...state.view });

export { TranslatedOpenshiftView as default, TranslatedOpenshiftView, OpenshiftView };
const ConnectedOpenshiftView = connectTranslate(mapStateToProps)(OpenshiftView);

export { ConnectedOpenshiftView as default, ConnectedOpenshiftView, OpenshiftView };
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ exports[`RhelView Component should have a fallback title: title 1`] = `
},
]
}
graphGranularity="daily"
key="lorem ipsum"
productId="lorem ipsum"
productShortLabel="RHEL"
Expand Down Expand Up @@ -59,6 +60,7 @@ exports[`RhelView Component should render a non-connected component: non-connect
},
]
}
graphGranularity="daily"
key="lorem ipsum"
productId="lorem ipsum"
productShortLabel="RHEL"
Expand Down
14 changes: 10 additions & 4 deletions src/components/rhelView/rhelView.js
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
import React from 'react';
import PropTypes from 'prop-types';
import { withTranslation } from 'react-i18next';
import {
chart_color_blue_100 as chartColorBlueLight,
chart_color_blue_300 as chartColorBlueDark,
chart_color_cyan_100 as chartColorCyanLight,
chart_color_cyan_300 as chartColorCyanDark
} from '@patternfly/react-tokens';
import { PageLayout, PageHeader, PageSection } from '../pageLayout/pageLayout';
import { RHSM_API_QUERY_GRANULARITY_TYPES as GRANULARITY_TYPES } from '../../types/rhsmApiTypes';
import { connectTranslate } from '../../redux';
import GraphCard from '../graphCard/graphCard';
import { helpers } from '../../common';

class RhelView extends React.Component {
componentDidMount() {}

render() {
const { initialFilters, routeDetail, t } = this.props;
const { granularity, initialFilters, routeDetail, t } = this.props;

return (
<PageLayout>
Expand All @@ -26,6 +27,7 @@ class RhelView extends React.Component {
<GraphCard
key={routeDetail.pathParameter}
filterGraphData={initialFilters}
graphGranularity={granularity}
productId={routeDetail.pathParameter}
viewId={routeDetail.pathId}
cardTitle={t('curiosity-graph.cardHeading')}
Expand All @@ -38,6 +40,7 @@ class RhelView extends React.Component {
}

RhelView.propTypes = {
granularity: PropTypes.oneOf([...Object.values(GRANULARITY_TYPES)]),
initialFilters: PropTypes.array,
routeDetail: PropTypes.shape({
pathParameter: PropTypes.string.isRequired,
Expand All @@ -50,6 +53,7 @@ RhelView.propTypes = {
};

RhelView.defaultProps = {
granularity: GRANULARITY_TYPES.DAILY,
initialFilters: [
{ id: 'physicalSockets', fill: chartColorBlueLight.value, stroke: chartColorBlueDark.value },
{ id: 'hypervisorSockets', fill: chartColorCyanLight.value, stroke: chartColorCyanDark.value },
Expand All @@ -58,6 +62,8 @@ RhelView.defaultProps = {
t: helpers.noopTranslate
};

const TranslatedRhelView = withTranslation()(RhelView);
const mapStateToProps = state => ({ ...state.view });

export { TranslatedRhelView as default, TranslatedRhelView, RhelView };
const ConnectedRhelView = connectTranslate(mapStateToProps)(RhelView);

export { ConnectedRhelView as default, ConnectedRhelView, RhelView };
Loading