2017-09-20 12:30:53 +03:00
|
|
|
import React from 'react';
|
2017-11-23 14:18:38 +02:00
|
|
|
import distanceInWordsToNow from 'date-fns/distance_in_words_to_now';
|
|
|
|
import remcalc from 'remcalc';
|
2018-02-01 12:38:12 +02:00
|
|
|
import styled from 'styled-components';
|
2017-10-31 12:29:15 +02:00
|
|
|
import titleCase from 'title-case';
|
2017-11-23 14:18:38 +02:00
|
|
|
import { Link } from 'react-router-dom';
|
|
|
|
import { Field } from 'redux-form';
|
2018-02-23 17:59:12 +02:00
|
|
|
import Flex from 'styled-flex-component';
|
2017-09-20 12:30:53 +03:00
|
|
|
|
2017-09-27 17:44:57 +03:00
|
|
|
import {
|
2017-11-23 14:18:38 +02:00
|
|
|
Anchor,
|
2017-09-27 17:44:57 +03:00
|
|
|
FormGroup,
|
2017-11-23 14:18:38 +02:00
|
|
|
Checkbox,
|
2017-10-31 12:29:15 +02:00
|
|
|
Table,
|
|
|
|
TableThead,
|
|
|
|
TableTr,
|
|
|
|
TableTh,
|
|
|
|
TableTd,
|
2017-11-23 14:18:38 +02:00
|
|
|
TableTbody,
|
|
|
|
StatusLoader,
|
|
|
|
Popover,
|
2017-10-31 12:29:15 +02:00
|
|
|
PopoverContainer,
|
|
|
|
PopoverTarget,
|
|
|
|
PopoverItem,
|
|
|
|
PopoverDivider,
|
2017-11-23 14:18:38 +02:00
|
|
|
DotIcon,
|
2018-02-01 17:33:58 +02:00
|
|
|
ActionsIcon
|
2017-09-27 17:44:57 +03:00
|
|
|
} from 'joyent-ui-toolkit';
|
|
|
|
|
2018-03-06 03:14:33 +02:00
|
|
|
import GLOBAL from '@state/global';
|
|
|
|
|
2017-10-31 12:29:15 +02:00
|
|
|
const stateColor = {
|
|
|
|
PROVISIONING: 'primary',
|
|
|
|
RUNNING: 'green',
|
|
|
|
STOPPING: 'grey',
|
|
|
|
STOPPED: 'grey',
|
|
|
|
DELETED: 'secondaryActive',
|
|
|
|
FAILED: 'red'
|
|
|
|
};
|
|
|
|
|
2018-02-01 12:38:12 +02:00
|
|
|
const A = styled(Anchor)`
|
|
|
|
color: ${props => props.theme.text};
|
|
|
|
text-decoration: none;
|
2018-02-01 17:33:58 +02:00
|
|
|
font-weight: ${props => props.theme.font.weight.semibold};
|
|
|
|
`;
|
2018-02-01 12:38:12 +02:00
|
|
|
|
2018-02-15 16:37:59 +02:00
|
|
|
const ItemAnchor = styled(Anchor)`
|
|
|
|
color: ${props => props.theme.text};
|
|
|
|
-webkit-text-fill-color: currentcolor;
|
|
|
|
text-decoration: none;
|
|
|
|
`;
|
|
|
|
|
2018-02-23 17:59:12 +02:00
|
|
|
const Actions = styled(Flex)`
|
|
|
|
width: ${remcalc(48)};
|
|
|
|
height: ${remcalc(48)};
|
|
|
|
min-width: ${remcalc(48)};
|
|
|
|
`;
|
|
|
|
|
2017-11-23 14:18:38 +02:00
|
|
|
export const Item = ({
|
|
|
|
id = '',
|
2017-10-31 12:29:15 +02:00
|
|
|
name,
|
2017-12-21 02:12:42 +02:00
|
|
|
state = 'RUNNING',
|
2017-11-23 14:18:38 +02:00
|
|
|
created,
|
|
|
|
allowedActions = {},
|
2017-12-21 02:12:42 +02:00
|
|
|
mutating = false,
|
2018-02-15 16:37:59 +02:00
|
|
|
onCreateImage,
|
2017-10-31 12:29:15 +02:00
|
|
|
onStart,
|
2017-11-23 14:18:38 +02:00
|
|
|
onStop,
|
2017-10-31 12:29:15 +02:00
|
|
|
onReboot,
|
2018-02-23 17:59:12 +02:00
|
|
|
onRemove,
|
|
|
|
onClick
|
2017-10-31 12:29:15 +02:00
|
|
|
}) => (
|
|
|
|
<TableTr>
|
2017-11-23 14:18:38 +02:00
|
|
|
<TableTd padding="0" paddingLeft={remcalc(12)} middle left>
|
2017-11-23 14:18:38 +02:00
|
|
|
<FormGroup name={id} paddingTop={remcalc(4)} field={Field}>
|
|
|
|
<Checkbox noMargin />
|
2017-10-31 12:29:15 +02:00
|
|
|
</FormGroup>
|
|
|
|
</TableTd>
|
2017-11-23 14:18:38 +02:00
|
|
|
<TableTd middle left>
|
2018-03-06 03:14:33 +02:00
|
|
|
<A to={`/instances/${name}`} component={Link}>
|
2017-11-23 14:18:38 +02:00
|
|
|
{name}
|
2018-02-01 17:33:58 +02:00
|
|
|
</A>
|
2017-10-31 12:29:15 +02:00
|
|
|
</TableTd>
|
2017-11-23 14:18:38 +02:00
|
|
|
<TableTd middle left>
|
2017-12-21 02:12:42 +02:00
|
|
|
{mutating ? (
|
|
|
|
<StatusLoader small />
|
|
|
|
) : (
|
|
|
|
<span>
|
2018-02-01 17:33:58 +02:00
|
|
|
<DotIcon size={remcalc(12)} color={stateColor[state]} />{' '}
|
2017-12-21 02:12:42 +02:00
|
|
|
{titleCase(state)}
|
|
|
|
</span>
|
|
|
|
)}
|
2017-11-23 14:18:38 +02:00
|
|
|
</TableTd>
|
2017-12-04 20:24:24 +02:00
|
|
|
<TableTd xs="0" sm="160" middle left>
|
2017-11-23 14:18:38 +02:00
|
|
|
{distanceInWordsToNow(created)}
|
|
|
|
</TableTd>
|
2017-12-06 12:34:15 +02:00
|
|
|
<TableTd xs="0" sm="130" middle left>
|
2017-11-23 14:18:38 +02:00
|
|
|
<code>{id.substring(0, 7)}</code>
|
2017-10-31 12:29:15 +02:00
|
|
|
</TableTd>
|
2017-12-21 02:12:42 +02:00
|
|
|
{!mutating ? (
|
|
|
|
<PopoverContainer clickable>
|
|
|
|
<TableTd padding="0" hasBorder="left">
|
|
|
|
<PopoverTarget box>
|
2018-02-23 17:59:12 +02:00
|
|
|
<Actions alignCenter justifyCenter>
|
|
|
|
<ActionsIcon />
|
|
|
|
</Actions>
|
2017-12-21 02:12:42 +02:00
|
|
|
</PopoverTarget>
|
2018-01-08 17:13:05 +02:00
|
|
|
<Popover placement="bottom">
|
2017-12-21 02:12:42 +02:00
|
|
|
<PopoverItem disabled={!allowedActions.start} onClick={onStart}>
|
|
|
|
Start
|
|
|
|
</PopoverItem>
|
|
|
|
<PopoverItem disabled={!allowedActions.stop} onClick={onStop}>
|
|
|
|
Stop
|
|
|
|
</PopoverItem>
|
2018-01-04 13:05:22 +02:00
|
|
|
<PopoverItem disabled={!allowedActions.reboot} onClick={onReboot}>
|
|
|
|
Reboot
|
|
|
|
</PopoverItem>
|
2017-12-21 02:12:42 +02:00
|
|
|
<PopoverDivider />
|
2018-02-15 16:37:59 +02:00
|
|
|
<PopoverItem disabled={false} onClick={onCreateImage}>
|
|
|
|
<ItemAnchor
|
2018-03-06 03:14:33 +02:00
|
|
|
href={`${GLOBAL.origin}/images/~create/${name}`}
|
2018-02-15 16:37:59 +02:00
|
|
|
target="__blank"
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
>
|
|
|
|
Create Image
|
|
|
|
</ItemAnchor>
|
|
|
|
</PopoverItem>
|
|
|
|
<PopoverDivider />
|
2018-01-04 13:05:22 +02:00
|
|
|
<PopoverItem disabled={!allowedActions.remove} onClick={onRemove}>
|
|
|
|
Remove
|
|
|
|
</PopoverItem>
|
2017-12-21 02:12:42 +02:00
|
|
|
</Popover>
|
|
|
|
</TableTd>
|
|
|
|
</PopoverContainer>
|
|
|
|
) : (
|
|
|
|
<TableTd padding="0" hasBorder="left" center middle>
|
|
|
|
<ActionsIcon disabled />
|
2017-11-23 14:18:38 +02:00
|
|
|
</TableTd>
|
2017-12-21 02:12:42 +02:00
|
|
|
)}
|
2017-10-31 12:29:15 +02:00
|
|
|
</TableTr>
|
|
|
|
);
|
2017-10-13 22:51:18 +03:00
|
|
|
|
2017-09-27 17:44:57 +03:00
|
|
|
export default ({
|
2017-11-23 14:18:38 +02:00
|
|
|
sortBy = 'name',
|
|
|
|
sortOrder = 'desc',
|
2017-10-13 22:51:18 +03:00
|
|
|
submitting = false,
|
2017-11-23 14:18:38 +02:00
|
|
|
allSelected = false,
|
|
|
|
toggleSelectAll = () => null,
|
2017-12-21 02:12:42 +02:00
|
|
|
onSortBy = () => null,
|
2018-02-23 17:59:12 +02:00
|
|
|
children,
|
|
|
|
noInstances
|
2017-11-23 14:18:38 +02:00
|
|
|
}) => (
|
|
|
|
<form>
|
2017-10-31 12:29:15 +02:00
|
|
|
<Table>
|
|
|
|
<TableThead>
|
|
|
|
<TableTr>
|
2017-11-23 14:18:38 +02:00
|
|
|
<TableTh xs="32" padding="0" paddingLeft={remcalc(12)} middle left>
|
|
|
|
<FormGroup paddingTop={remcalc(4)}>
|
|
|
|
<Checkbox
|
|
|
|
checked={allSelected}
|
2018-02-23 17:59:12 +02:00
|
|
|
disabled={submitting || noInstances}
|
2017-11-23 14:18:38 +02:00
|
|
|
onChange={toggleSelectAll}
|
2017-11-23 14:18:38 +02:00
|
|
|
noMargin
|
2017-11-23 14:18:38 +02:00
|
|
|
/>
|
|
|
|
</FormGroup>
|
2017-10-31 12:29:15 +02:00
|
|
|
</TableTh>
|
2017-12-06 12:34:15 +02:00
|
|
|
<TableTh
|
|
|
|
onClick={() => onSortBy('name')}
|
|
|
|
sortOrder={sortOrder}
|
|
|
|
showSort={sortBy === 'name'}
|
|
|
|
left
|
|
|
|
middle
|
|
|
|
actionable
|
|
|
|
>
|
2017-11-23 14:18:38 +02:00
|
|
|
<span>Name </span>
|
2017-10-31 12:29:15 +02:00
|
|
|
</TableTh>
|
2017-11-23 14:18:38 +02:00
|
|
|
<TableTh
|
2017-12-04 20:24:24 +02:00
|
|
|
xs="150"
|
2017-11-23 14:18:38 +02:00
|
|
|
onClick={() => onSortBy('state')}
|
2017-12-06 12:34:15 +02:00
|
|
|
sortOrder={sortOrder}
|
|
|
|
showSort={sortBy === 'state'}
|
2017-11-23 14:18:38 +02:00
|
|
|
left
|
|
|
|
middle
|
|
|
|
actionable
|
|
|
|
>
|
|
|
|
<span>Status </span>
|
2017-10-31 12:29:15 +02:00
|
|
|
</TableTh>
|
2017-11-23 14:18:38 +02:00
|
|
|
<TableTh
|
|
|
|
xs="0"
|
2017-12-04 20:24:24 +02:00
|
|
|
sm="160"
|
2017-11-23 14:18:38 +02:00
|
|
|
onClick={() => onSortBy('created')}
|
2017-12-06 12:34:15 +02:00
|
|
|
sortOrder={sortOrder}
|
|
|
|
showSort={sortBy === 'created'}
|
2017-11-23 14:18:38 +02:00
|
|
|
left
|
|
|
|
middle
|
|
|
|
actionable
|
|
|
|
>
|
|
|
|
<span>Created </span>
|
|
|
|
</TableTh>
|
|
|
|
<TableTh
|
|
|
|
xs="0"
|
2017-12-06 12:34:15 +02:00
|
|
|
sm="130"
|
2017-11-23 14:18:38 +02:00
|
|
|
onClick={() => onSortBy('id')}
|
2017-12-06 12:34:15 +02:00
|
|
|
sortOrder={sortOrder}
|
|
|
|
showSort={sortBy === 'id'}
|
2017-11-23 14:18:38 +02:00
|
|
|
left
|
|
|
|
middle
|
|
|
|
actionable
|
|
|
|
>
|
|
|
|
<span>Short ID </span>
|
|
|
|
</TableTh>
|
2017-12-04 20:24:24 +02:00
|
|
|
<TableTh xs="60" padding="0" />
|
2017-10-31 12:29:15 +02:00
|
|
|
</TableTr>
|
|
|
|
</TableThead>
|
2017-12-21 02:12:42 +02:00
|
|
|
<TableTbody>{children}</TableTbody>
|
2017-10-31 12:29:15 +02:00
|
|
|
</Table>
|
2017-11-23 14:18:38 +02:00
|
|
|
</form>
|
|
|
|
);
|