joyent-portal/packages/resource-widgets/src/firewall/index.js

216 lines
5.2 KiB
JavaScript

/* eslint-disable camelcase */
import React, { Fragment } from 'react';
import { Field } from 'redux-form';
import { Margin, Padding } from 'styled-components-spacing';
import Flex, { FlexItem } from 'styled-flex-component';
import { Row, Col } from 'joyent-react-styled-flexboxgrid';
import styled from 'styled-components';
import {
H3,
FormGroup,
FormLabel,
Toggle,
TagList,
TagItem,
P,
Checkbox,
Strong,
Card
} from 'joyent-ui-toolkit';
const Form = styled.form`
margin-bottom: 0 !important;
`;
const capitalizeFirstLetter = string =>
string.charAt(0).toUpperCase() + string.slice(1);
const Wildcards = {
vmall: 'All VMs in DC',
any: 'Any'
};
const parsePartial = (p, index, style) => {
if (p[0] === 'wildcard') {
return <P style={style}>{Wildcards[p[1]]}</P>;
}
if (p[0] === 'tag') {
const value = Array.isArray(p[1]) ? p[1][1] : '';
const name = Array.isArray(p[1]) ? p[1][0] : p[1];
return (
<Margin left={0.5}>
<TagList>
<TagItem
style={style}
norMargin
key={index}
name={name}
value={value}
/>
</TagList>
</Margin>
);
}
return (
<Margin key={index} top={0.5} bottom={0.5}>
<P style={style}>{p[1]}</P>
</Margin>
);
};
const Rule = ({ enabled, rule_obj }) => {
const { action, protocol } = rule_obj;
const style = {
color: enabled ? null : '#D8D8D8'
};
const froms = rule_obj.from.map((p, index) => parsePartial(p, index, style));
const tos = rule_obj.to.map((p, index) => parsePartial(p, index, style));
return (
<Card disabled={!enabled}>
<Padding left={3} right={3} top={2} bottom={2}>
<Row>
<Col xs={3}>
<Flex justifyStart alignCenter contentStretch>
<Margin right={0.5}>
<FlexItem>
<Strong style={style}>From: </Strong>
</FlexItem>
</Margin>
<Flex alignCenter>{froms}</Flex>
</Flex>
</Col>
<Col xs={3}>
<Flex justifyStart alignCenter contentStretch>
<Margin right={0.5}>
<FlexItem>
<Strong style={style}>To: </Strong>
</FlexItem>
</Margin>
<Flex alignCenter>{tos}</Flex>
</Flex>
</Col>
<Col xs={2}>
<Flex justifyStart alignCenter contentStretch>
<Margin right={0.5}>
<FlexItem>
<Strong style={style}>Protocol: </Strong>
</FlexItem>
</Margin>
<Flex alignCenter>
<P style={style}>{protocol.name}</P>
</Flex>
</Flex>
</Col>
<Col xs={2}>
<Flex justifyStart alignCenter contentStretch>
<Margin right={0.5}>
<FlexItem>
<Strong style={style}>Ports: </Strong>
</FlexItem>
</Margin>
<Flex alignCenter>
<P style={style}>{protocol.targets.join(';')}</P>
</Flex>
</Flex>
</Col>
<Col xs={2}>
<Flex justifyStart alignCenter contentStretch>
<Margin right={0.5}>
<FlexItem>
<Strong style={style}>Action: </Strong>
</FlexItem>
</Margin>
<Flex alignCenter>
<P style={style}>{capitalizeFirstLetter(action)}</P>
</Flex>
</Flex>
</Col>
</Row>
</Padding>
</Card>
);
};
export const Rules = ({ rules = [] }) => (
<Fragment>
{rules.map((rule, index) => (
<Margin key={rule.id} bottom={index === rules.length - 1 ? 0 : 2}>
<Rule {...rule} />
</Margin>
))}
</Fragment>
);
export const DefaultRules = ({ rules = [] }) => (
<Fragment>
<H3 noMargin>Default firewall rules</H3>
<Margin top={3}>
<Rules rules={rules} />
</Margin>
</Fragment>
);
export const TagRules = ({ rules = [] }) => (
<Fragment>
<H3 noMargin>Firewall rules from instance tags</H3>
<Margin top={3}>
<Rules rules={rules} />
</Margin>
</Fragment>
);
export const ToggleFirewallForm = ({
handleSubmit = () => null,
submitOnChange = false,
submitting = false,
left = false
}) => {
const onChange = submitOnChange
? (...args) => setTimeout(() => handleSubmit(...args), 16)
: undefined;
return (
<Form onChange={onChange}>
<FormGroup
id={'fw-toggle-firewall'}
type="checkbox"
name="enabled"
field={Field}
>
<Checkbox disabled={submitting}>
<FormLabel noMargin actionable>
<Margin left={2} right={2}>
Enable Firewall
</Margin>
</FormLabel>
</Checkbox>
</FormGroup>
</Form>
);
};
export const ToggleInactiveForm = () => (
<Form>
<FormGroup
id={'fw-toggle-inactive'}
type="checkbox"
name="inactive"
field={Field}
>
<Checkbox>
<FormLabel noMargin actionable>
<Margin left={2} right={2}>
Show inactive rules
</Margin>
</FormLabel>
</Checkbox>
</FormGroup>
</Form>
);