| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370 |
- /*
- Copyright (C) 2020 Cloudbase Solutions SRL
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU Affero General Public License as
- published by the Free Software Foundation, either version 3 of the
- License, or (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Affero General Public License for more details.
- You should have received a copy of the GNU Affero General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- import * as React from "react";
- import { Collapse } from "react-collapse";
- import { Link } from "react-router-dom";
- import styled, { createGlobalStyle, css } from "styled-components";
- import { DeploymentItem, ReplicaItem, TransferItem } from "@src/@types/MainItem";
- import { MinionMachine, MinionPool } from "@src/@types/MinionPool";
- import { ThemePalette, ThemeProps } from "@src/components/Theme";
- import Arrow from "@src/components/ui/Arrow";
- import DropdownLink from "@src/components/ui/Dropdowns/DropdownLink";
- import { ItemReplicaBadge } from "@src/components/ui/Dropdowns/NotificationDropdown";
- import StatusPill from "@src/components/ui/StatusComponents/StatusPill";
- import DateUtils from "@src/utils/DateUtils";
- import networkImage from "./images/network.svg";
- const GlobalStyle = createGlobalStyle`
- .ReactCollapse--collapse {
- transition: height 0.4s ease-in-out;
- }
- `;
- const Wrapper = styled.div``;
- const NoMachines = styled.div`
- text-align: center;
- `;
- const Header = styled.div`
- display: flex;
- align-items: center;
- margin-bottom: 32px;
- margin-left: 20px;
- `;
- const ArrowStyled = styled(Arrow)`
- position: absolute;
- left: -24px;
- `;
- const Row = styled.div<any>`
- position: relative;
- padding: 8px 0;
- border-top: 1px solid white;
- transition: all ${ThemeProps.animations.swift};
- &:last-child {
- border-bottom: 0;
- border-bottom-left-radius: ${ThemeProps.borderRadius};
- border-bottom-right-radius: ${ThemeProps.borderRadius};
- }
- &:hover {
- background: ${ThemePalette.grayscale[0]};
- ${ArrowStyled} {
- opacity: 1;
- }
- }
- cursor: pointer;
- `;
- const RowHeader = styled.div<any>`
- display: flex;
- align-items: center;
- padding: 0 16px;
- `;
- const RowHeaderColumn = styled.div<any>`
- display: flex;
- align-items: center;
- ${ThemeProps.exactWidth("50%")}
- `;
- const HeaderName = styled.div<any>`
- overflow: hidden;
- text-overflow: ellipsis;
- ${props => ThemeProps.exactWidth(`calc(100% - ${props.source ? 120 : 8}px)`)}
- `;
- const HeaderIcon = styled.div<any>`
- min-width: 16px;
- min-height: 16px;
- background: url("${networkImage}") center no-repeat;
- margin-right: 16px;
- `;
- const HeaderFilter = styled.div``;
- const HeaderText = styled.div`
- margin-left: 16px;
- `;
- const RowBody = styled.div<any>`
- display: flex;
- color: ${ThemePalette.grayscale[5]};
- padding: 0 16px;
- margin-top: 4px;
- `;
- const RowBodyColumn = styled.div<any>`
- margin-top: 8px;
- &:first-child {
- ${ThemeProps.exactWidth("calc(50% - 70px)")}
- margin-right: 88px;
- }
- &:last-child {
- ${ThemeProps.exactWidth("calc(50% - 16px)")}
- }
- `;
- const RowBodyColumnValue = styled.div<any>`
- overflow-wrap: break-word;
- `;
- const MachinesWrapper = styled.div``;
- const MachineWrapper = styled.div`
- background: ${ThemePalette.grayscale[1]};
- border-radius: ${ThemeProps.borderRadius};
- `;
- const MachineTitle = styled.div`
- padding: 16px;
- border-bottom: 1px solid #7f8795;
- font-size: 16px;
- `;
- const MachineBody = styled.div`
- padding: 16px;
- `;
- const MachineRow = styled.div<{ secondary?: boolean }>`
- display: flex;
- margin-bottom: 8px;
- align-items: center;
- ${props =>
- props.secondary
- ? css`
- color: ${ThemePalette.grayscale[5]};
- margin-bottom: 4px;
- `
- : ""}
- `;
- const ValueLink = styled(Link)`
- display: flex;
- color: ${ThemePalette.primary};
- text-decoration: none;
- cursor: pointer;
- `;
- type FilterType = "all" | "allocated" | "not-allocated";
- type Props = {
- item?: MinionPool | null;
- replicas: ReplicaItem[];
- deployments: DeploymentItem[];
- };
- type State = {
- filterStatus: FilterType;
- openedRows: string[];
- };
- class MinionPoolMachines extends React.Component<Props, State> {
- state = {
- filterStatus: "all" as FilterType,
- openedRows: [],
- };
- get machines() {
- return this.props.item?.minion_machines || [];
- }
- get filteredMachines() {
- switch (this.state.filterStatus) {
- case "all":
- return this.machines;
- case "allocated":
- return this.machines.filter(
- m =>
- m.allocation_status === "ALLOCATED" ||
- m.allocation_status === "AVAILABLE"
- );
- default:
- return this.machines.filter(
- m =>
- m.allocation_status !== "ALLOCATED" &&
- m.allocation_status !== "AVAILABLE"
- );
- }
- }
- handleRowClick(id: string) {
- if (this.state.openedRows.find(i => i === id)) {
- this.setState(prevState => ({
- openedRows: prevState.openedRows.filter(i => i !== id),
- }));
- } else {
- this.setState(prevState => ({
- openedRows: [...prevState.openedRows, id],
- }));
- }
- }
- renderNoMachines() {
- return (
- <NoMachines>
- There are no Minion Machines allocated to this Minion Pool
- </NoMachines>
- );
- }
- renderHeader() {
- const plural = this.machines.length === 1 ? "" : "s";
- return (
- <Header>
- <HeaderFilter>
- <DropdownLink
- items={[
- { label: "All", value: "all" },
- { label: "Allocated", value: "allocated" },
- { label: "Not Allocated", value: "not-allocated" },
- ]}
- selectedItem={this.state.filterStatus}
- onChange={item => {
- this.setState({
- filterStatus: item.value as FilterType,
- });
- }}
- />
- </HeaderFilter>
- <HeaderText>
- {this.machines.length} minion machine{plural},{" "}
- {
- this.machines.filter(
- m =>
- m.allocation_status === "ALLOCATED" ||
- m.allocation_status === "AVAILABLE"
- ).length
- }{" "}
- allocated
- </HeaderText>
- </Header>
- );
- }
- renderConnectionInfo(machine: MinionMachine) {
- const isOpened = Boolean(this.state.openedRows.find(i => i === machine.id));
- return (
- <Row
- onClick={() => {
- this.handleRowClick(machine.id);
- }}
- >
- <ArrowStyled
- primary
- orientation={isOpened ? "up" : "down"}
- opacity={isOpened ? 1 : 0}
- thick
- />
- <RowHeader>
- <RowHeaderColumn>
- <HeaderIcon />
- <HeaderName>Connection Info</HeaderName>
- </RowHeaderColumn>
- </RowHeader>
- <Collapse isOpened={isOpened}>
- <RowBody>
- <RowBodyColumn>
- {Object.keys(machine.connection_info).map(prop => (
- <RowBodyColumnValue key={prop}>
- {prop}: {machine.connection_info[prop]}
- </RowBodyColumnValue>
- ))}
- </RowBodyColumn>
- </RowBody>
- </Collapse>
- </Row>
- );
- }
- renderMachines() {
- if (this.filteredMachines.length === 0) {
- return <NoMachines>No Minion Machines found</NoMachines>;
- }
- return (
- <MachinesWrapper>
- {this.filteredMachines.map(machine => {
- const findTransferItem = (transferItems: TransferItem[]) =>
- transferItems.find(i => i.id === machine.allocated_action);
- const allocatedAction = machine.allocated_action
- ? findTransferItem(this.props.replicas) ||
- findTransferItem(this.props.deployments)
- : null;
- return (
- <MachineWrapper key={machine.id}>
- <MachineTitle>ID: {machine.id}</MachineTitle>
- <MachineBody>
- <MachineRow>
- Allocation Status:{" "}
- <StatusPill
- style={{ marginLeft: "8px" }}
- status={machine.allocation_status}
- />
- </MachineRow>
- <MachineRow style={{ marginBottom: "16px" }}>
- <span style={{ width: "114px" }}>Power Status:</span>{" "}
- <StatusPill
- style={{ marginLeft: "8px" }}
- status={machine.power_status}
- />
- </MachineRow>
- <MachineRow secondary>
- Created At:{" "}
- {DateUtils.getLocalDate(machine.created_at).toFormat(
- "yyyy-LL-dd HH:mm:ss"
- )}
- </MachineRow>
- {machine.updated_at ? (
- <MachineRow secondary>
- Updated At:{" "}
- {DateUtils.getLocalDate(machine.updated_at).toFormat(
- "yyyy-LL-dd HH:mm:ss"
- )}
- </MachineRow>
- ) : null}
- {machine.last_used_at ? (
- <MachineRow secondary>
- Last Used At:{" "}
- {DateUtils.getLocalDate(machine.last_used_at).toFormat(
- "yyyy-LL-dd HH:mm:ss"
- )}
- </MachineRow>
- ) : null}
- {machine.allocated_action ? (
- <MachineRow secondary>
- Allocated Action:
- {allocatedAction ? (
- <>
- <ItemReplicaBadge style={{ margin: "0px 4px 0 5px" }}>
- {allocatedAction.type === "replica" ? "TR" : "DE"}
- </ItemReplicaBadge>
- <ValueLink
- to={`/${allocatedAction.type === "replica" ? "transfers" : "deployments"}/${allocatedAction.id}`}
- >
- {allocatedAction.instances[0]}
- </ValueLink>
- </>
- ) : (
- <span> {machine.allocated_action}</span>
- )}
- </MachineRow>
- ) : null}
- </MachineBody>
- {machine.connection_info
- ? this.renderConnectionInfo(machine)
- : null}
- </MachineWrapper>
- );
- })}
- <GlobalStyle />
- </MachinesWrapper>
- );
- }
- render() {
- return (
- <Wrapper>
- {this.props.item?.minion_machines.length
- ? this.renderHeader()
- : this.renderNoMachines()}
- {this.props.item?.minion_machines.length ? this.renderMachines() : null}
- </Wrapper>
- );
- }
- }
- export default MinionPoolMachines;
|