1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-04-06 01:15:28 +02:00

Fix/variants (#278)

* fix: use autocomplete for legal values

* fix: use flag to toggle overrides

* fix: use legalvalues directly

* fix: tests

* Update src/component/feature/variant/__tests__/update-variant-component-test.jsx

Co-authored-by: Christopher Kolstad <chriswk@getunleash.ai>

* Update src/component/feature/variant/AddVariant/AddVariant.jsx

Co-authored-by: Christopher Kolstad <chriswk@getunleash.ai>

* fix: tests

* fix: remove flag for overrides

Co-authored-by: Christopher Kolstad <chriswk@getunleash.ai>
This commit is contained in:
Fredrik Strand Oseberg 2021-04-28 14:58:53 +02:00 committed by GitHub
parent f8e34d53ff
commit 8d003da400
4 changed files with 105 additions and 73 deletions

View File

@ -16,6 +16,7 @@ import { modalStyles, trim } from '../../../common/util';
import { weightTypes } from '../enums'; import { weightTypes } from '../enums';
import OverrideConfig from './OverrideConfig/OverrideConfig'; import OverrideConfig from './OverrideConfig/OverrideConfig';
import { useCommonStyles } from '../../../../common.styles'; import { useCommonStyles } from '../../../../common.styles';
import ConditionallyRender from '../../../common/ConditionallyRender';
const payloadOptions = [ const payloadOptions = [
{ key: 'string', label: 'string' }, { key: 'string', label: 'string' },
@ -137,6 +138,7 @@ const AddVariant = ({
if (i === index) { if (i === index) {
o[e.target.name] = e.target.value; o[e.target.name] = e.target.value;
} }
return o; return o;
}) })
); );
@ -264,16 +266,18 @@ const AddVariant = ({
/> />
</Grid> </Grid>
</Grid> </Grid>
{overrides.length > 0 && ( <ConditionallyRender
condition={overrides.length > 0}
show={
<p style={{ marginBottom: '.5rem' }}> <p style={{ marginBottom: '.5rem' }}>
<strong>Overrides </strong> <strong>Overrides </strong>
<Icon <Icon
name="info" name="info"
title="Here you can specify which users that should get this variant." title="Here you can specify which users should get this variant."
/> />
</p> </p>
)} }
/>
<OverrideConfig <OverrideConfig
overrides={overrides} overrides={overrides}
removeOverride={removeOverride} removeOverride={removeOverride}
@ -281,7 +285,7 @@ const AddVariant = ({
updateOverrideValues={updateOverrideValues} updateOverrideValues={updateOverrideValues}
updateValues={updateOverrideValues} updateValues={updateOverrideValues}
/> />
<Button onClick={onAddOverride}>Add override</Button> <Button onClick={onAddOverride}>Add override</Button>{' '}
</form> </form>
</Dialog> </Dialog>
); );
@ -294,6 +298,7 @@ AddVariant.propTypes = {
validateName: PropTypes.func.isRequired, validateName: PropTypes.func.isRequired,
editVariant: PropTypes.object, editVariant: PropTypes.object,
title: PropTypes.string, title: PropTypes.string,
uiConfig: PropTypes.object,
}; };
export default AddVariant; export default AddVariant;

View File

@ -2,13 +2,13 @@ import { connect } from 'react-redux';
import classnames from 'classnames'; import classnames from 'classnames';
import PropTypes from 'prop-types'; import PropTypes from 'prop-types';
import { Grid, IconButton, Icon } from '@material-ui/core'; import { Grid, IconButton, Icon, TextField } from '@material-ui/core';
import MySelect from '../../../../common/select'; import MySelect from '../../../../common/select';
import InputListField from '../../../../common/input-list-field'; import InputListField from '../../../../common/input-list-field';
import { selectStyles } from '../../../../common';
import ConditionallyRender from '../../../../common/ConditionallyRender/ConditionallyRender'; import ConditionallyRender from '../../../../common/ConditionallyRender/ConditionallyRender';
import { useCommonStyles } from '../../../../../common.styles'; import { useCommonStyles } from '../../../../../common.styles';
import { useStyles } from './OverrideConfig.styles.js'; import { useStyles } from './OverrideConfig.styles.js';
import { Autocomplete } from '@material-ui/lab';
const OverrideConfig = ({ const OverrideConfig = ({
overrides, overrides,
@ -28,18 +28,14 @@ const OverrideConfig = ({
updateOverrideValues(i, values); updateOverrideValues(i, values);
}; };
const updateSelectValues = i => values => { const updateSelectValues = i => (e, options) => {
updateOverrideValues(i, values ? values.map(v => v.value) : undefined); updateOverrideValues(i, options ? options : []);
}; };
const mapSelectValues = (values = []) =>
values.map(v => ({ label: v, value: v }));
return overrides.map((o, i) => { return overrides.map((o, i) => {
const legalValues = const legalValues =
contextDefinitions.find(c => c.name === o.contextName) contextDefinitions.find(c => c.name === o.contextName)
.legalValues || []; .legalValues || [];
const options = legalValues.map(v => ({ value: v, label: v, key: v }));
return ( return (
<Grid container key={`override=${i}`} alignItems="center"> <Grid container key={`override=${i}`} alignItems="center">
@ -59,16 +55,27 @@ const OverrideConfig = ({
<ConditionallyRender <ConditionallyRender
condition={legalValues && legalValues.length > 0} condition={legalValues && legalValues.length > 0}
show={ show={
<div style={{ paddingTop: '12px' }}> <Autocomplete
<MySelect multiple
key={`override-select=${i}`} id={`override-select-${i}`}
className={selectStyles} getOptionSelected={(option, value) => {
classes={{ root: commonStyles.fullWidth }} return option === value;
value={mapSelectValues(o.values)} }}
options={options} options={legalValues}
onChange={updateSelectValues(i)} onChange={updateSelectValues(i)}
getOptionLabel={option => option}
defaultValue={o.values}
value={o.values}
filterSelectedOptions
size="small"
renderInput={params => (
<TextField
{...params}
variant="outlined"
label="Legal values"
/>
)}
/> />
</div>
} }
elseShow={ elseShow={
<InputListField <InputListField

View File

@ -568,7 +568,7 @@ exports[`renders correctly with without variants 1`] = `
</section> </section>
`; `;
exports[`renders correctly with without variants and no permissions 1`] = ` exports[`renders correctly without variants and no permissions 1`] = `
<section <section
style={ style={
Object { Object {

View File

@ -5,14 +5,29 @@ import UpdateVariant from './../update-variant-component';
import renderer from 'react-test-renderer'; import renderer from 'react-test-renderer';
import { weightTypes } from '../enums'; import { weightTypes } from '../enums';
import theme from '../../../../themes/main-theme'; import theme from '../../../../themes/main-theme';
import { Provider } from 'react-redux';
import { createStore } from 'redux';
jest.mock( jest.mock(
'../AddVariant/OverrideConfig/OverrideConfig.jsx', '../AddVariant/OverrideConfig/OverrideConfig.jsx',
() => 'OverrideConfig' () => 'OverrideConfig'
); );
const mockStore = {
uiConfig: {
toJS: () => ({
flags: {
P: true,
},
}),
},
};
const mockReducer = state => state;
test('renders correctly with without variants', () => { test('renders correctly with without variants', () => {
const tree = renderer.create( const tree = renderer.create(
<Provider store={createStore(mockReducer, mockStore)}>
<ThemeProvider theme={theme}> <ThemeProvider theme={theme}>
<MemoryRouter> <MemoryRouter>
<UpdateVariant <UpdateVariant
@ -27,13 +42,15 @@ test('renders correctly with without variants', () => {
/> />
</MemoryRouter> </MemoryRouter>
</ThemeProvider> </ThemeProvider>
</Provider>
); );
expect(tree).toMatchSnapshot(); expect(tree).toMatchSnapshot();
}); });
test('renders correctly with without variants and no permissions', () => { test('renders correctly without variants and no permissions', () => {
const tree = renderer.create( const tree = renderer.create(
<Provider store={createStore(mockReducer, mockStore)}>
<ThemeProvider theme={theme}> <ThemeProvider theme={theme}>
<MemoryRouter> <MemoryRouter>
<UpdateVariant <UpdateVariant
@ -48,6 +65,7 @@ test('renders correctly with without variants and no permissions', () => {
/> />
</MemoryRouter> </MemoryRouter>
</ThemeProvider> </ThemeProvider>
</Provider>
); );
expect(tree).toMatchSnapshot(); expect(tree).toMatchSnapshot();
@ -94,6 +112,7 @@ test('renders correctly with with variants', () => {
createdAt: '2018-02-04T20:27:52.127Z', createdAt: '2018-02-04T20:27:52.127Z',
}; };
const tree = renderer.create( const tree = renderer.create(
<Provider store={createStore(mockReducer, mockStore)}>
<ThemeProvider theme={theme}> <ThemeProvider theme={theme}>
<MemoryRouter> <MemoryRouter>
<UpdateVariant <UpdateVariant
@ -108,6 +127,7 @@ test('renders correctly with with variants', () => {
/> />
</MemoryRouter> </MemoryRouter>
</ThemeProvider> </ThemeProvider>
</Provider>
); );
expect(tree).toMatchSnapshot(); expect(tree).toMatchSnapshot();