feat(instances): CI - Responsive behavior for tags #1121

This commit is contained in:
Fábio Moreira 2018-05-30 14:30:11 +01:00 committed by Sérgio Ramos
parent c268d88a4d
commit 2f9d135319
2 changed files with 259 additions and 267 deletions

View File

@ -10,7 +10,7 @@ import { reset } from 'redux-form';
import { destroy } from 'redux-form'; import { destroy } from 'redux-form';
import get from 'lodash.get'; import get from 'lodash.get';
import remcalc from 'remcalc'; import remcalc from 'remcalc';
import styled from 'styled-components'; import styled, { withTheme } from 'styled-components';
import Step, { import Step, {
Header as StepHeader, Header as StepHeader,
@ -55,7 +55,8 @@ const Tag = ({ name, value, onRemoveClick }) => (
</Margin> </Margin>
); );
const TagsContainer = ({ const TagsContainer = withTheme(
({
handleValidate, handleValidate,
handleGetValue, handleGetValue,
preview = [], preview = [],
@ -67,8 +68,11 @@ const TagsContainer = ({
handleChangeAddOpen, handleChangeAddOpen,
handleRemoveTag, handleRemoveTag,
handleCancelEdit, handleCancelEdit,
theme = {},
...props ...props
}) => ( }) => {
const mobile = theme.screen === 'mobile';
return (
<Step name="tags" getValue={handleGetValue} {...props}> <Step name="tags" getValue={handleGetValue} {...props}>
<StepHeader icon={<TagsIcon />}>Tags</StepHeader> <StepHeader icon={<TagsIcon />}>Tags</StepHeader>
<StepDescription href="https://docs.joyent.com/public-cloud/tags-metadata/tags"> <StepDescription href="https://docs.joyent.com/public-cloud/tags-metadata/tags">
@ -133,14 +137,15 @@ const TagsContainer = ({
</Fragment> </Fragment>
) : ( ) : (
<Margin top="5"> <Margin top="5">
<Flex> <Flex column={mobile}>
<FlexItem> <FlexItem>
<Margin right="1"> <Margin right={mobile ? '0' : '1'}>
<Button <Button
id="add-tag-button" id="add-tag-button"
type="button" type="button"
onClick={() => handleChangeAddOpen(true)} onClick={() => handleChangeAddOpen(true)}
secondary secondary
fluid={mobile}
> >
Add Tag Add Tag
</Button> </Button>
@ -152,6 +157,7 @@ const TagsContainer = ({
type="button" type="button"
component={Link} component={Link}
to={next} to={next}
fluid={mobile}
> >
Next Next
</Button> </Button>
@ -163,6 +169,8 @@ const TagsContainer = ({
)} )}
</StepOutlet> </StepOutlet>
</Step> </Step>
);
}
); );
export default compose( export default compose(

View File

@ -1,7 +1,7 @@
import React, { Fragment } from 'react'; import React, { Fragment } from 'react';
import { Margin, Padding } from 'styled-components-spacing'; import { Margin, Padding } from 'styled-components-spacing';
import PropTypes from 'prop-types'; import PropTypes from 'prop-types';
import styled from 'styled-components'; import styled, { withTheme } from 'styled-components';
import { Row, Col as BaseCol } from 'joyent-react-styled-flexboxgrid'; import { Row, Col as BaseCol } from 'joyent-react-styled-flexboxgrid';
import { Field } from 'redux-form'; import { Field } from 'redux-form';
import remcalc from 'remcalc'; import remcalc from 'remcalc';
@ -198,7 +198,8 @@ const InputKeyValue = ({
</Flex> </Flex>
); );
export const KeyValue = ({ export const KeyValue = withTheme(
({
id = null, id = null,
disabled = false, disabled = false,
input = 'input', input = 'input',
@ -223,8 +224,9 @@ export const KeyValue = ({
shadow = true, shadow = true,
customHeader, customHeader,
headless = false, headless = false,
noActions = false noActions = false,
}) => { theme = {}
}) => {
const handleHeaderClick = method === 'edit' && onToggleExpanded; const handleHeaderClick = method === 'edit' && onToggleExpanded;
const mobile = theme.screen === 'mobile'; const mobile = theme.screen === 'mobile';
@ -346,25 +348,6 @@ export const KeyValue = ({
<span>{method === 'add' ? 'Create' : 'Save'}</span> <span>{method === 'add' ? 'Create' : 'Save'}</span>
</Button> </Button>
</Col> </Col>
{!noRemove && (
<Col xs={method === 'add' ? false : '5'}>
<Button
type="button"
onClick={onCancel}
disabled={disabled || submitting}
secondary
>
<span>Cancel</span>
</MarginalButton>
<Button
id={id ? 'kv-submit-button-' + id : null}
type="submit"
disabled={pristine || invalid}
loading={submitting && !removing}
>
<span>{method === 'add' ? 'Create' : 'Save'}</span>
</Button>
</Col>
{!noRemove && ( {!noRemove && (
<Col xs={method === 'add' ? false : '5'}> <Col xs={method === 'add' ? false : '5'}>
<Button <Button
@ -378,7 +361,7 @@ export const KeyValue = ({
error error
id={id ? 'kv-remove-button-' + id : null} id={id ? 'kv-remove-button-' + id : null}
> >
<Margin right="2"> <Margin right={2}>
<DeleteIcon <DeleteIcon
disabled={disabled || submitting} disabled={disabled || submitting}
fill={disabled || submitting ? undefined : 'red'} fill={disabled || submitting ? undefined : 'red'}
@ -396,7 +379,8 @@ export const KeyValue = ({
) : null} ) : null}
</Card> </Card>
); );
}; }
);
KeyValue.propTypes = { KeyValue.propTypes = {
input: PropTypes.oneOf(['input', 'textarea']).isRequired, input: PropTypes.oneOf(['input', 'textarea']).isRequired,