1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-23 20:07:40 +02:00
unleash.unleash/frontend/src/component/strategies/show-strategy-component.js

59 lines
1.9 KiB
JavaScript
Raw Normal View History

import React, { PureComponent } from 'react';
import PropTypes from 'prop-types';
2016-12-13 19:56:52 +01:00
import { Grid, Cell, List, ListItem, ListItemContent } from 'react-mdl';
2016-12-17 14:37:11 +01:00
import { AppsLinkList, TogglesLinkList } from '../common';
2016-12-05 22:37:11 +01:00
2016-12-17 14:37:11 +01:00
class ShowStrategyComponent extends PureComponent {
static propTypes = {
toggles: PropTypes.array,
applications: PropTypes.array,
strategy: PropTypes.object.isRequired,
};
2016-12-05 22:37:11 +01:00
renderParameters(params) {
2016-12-13 19:56:52 +01:00
if (params) {
return params.map(({ name, type, description, required }, i) => (
2017-08-28 21:40:44 +02:00
<ListItem twoLine key={`${name}-${i}`} title={required ? 'Required' : ''}>
<ListItemContent avatar={required ? 'add' : ' '} subtitle={description}>
2016-12-13 19:56:52 +01:00
{name} <small>({type})</small>
</ListItemContent>
</ListItem>
2016-12-05 22:37:11 +01:00
));
} else {
2016-12-13 19:56:52 +01:00
return <ListItem>(no params)</ListItem>;
2016-12-05 22:37:11 +01:00
}
}
render() {
const { strategy, applications, toggles } = this.props;
const { parameters = [] } = strategy;
2016-12-05 22:37:11 +01:00
return (
<div>
<Grid>
<Cell col={12}>
2016-12-05 22:37:11 +01:00
<h6>Parameters</h6>
<hr />
<List>{this.renderParameters(parameters)}</List>
2016-12-05 22:37:11 +01:00
</Cell>
2016-12-17 21:41:23 +01:00
<Cell col={6} tablet={12}>
2016-12-05 22:37:11 +01:00
<h6>Applications using this strategy</h6>
<hr />
<AppsLinkList apps={applications} />
2016-12-05 22:37:11 +01:00
</Cell>
2016-12-10 13:49:22 +01:00
2016-12-17 21:41:23 +01:00
<Cell col={6} tablet={12}>
2016-12-10 13:49:22 +01:00
<h6>Toggles using this strategy</h6>
<hr />
<TogglesLinkList toggles={toggles} />
</Cell>
2016-12-05 22:37:11 +01:00
</Grid>
</div>
);
}
}
export default ShowStrategyComponent;