| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552 |
- /*
- Copyright (C) 2017 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 { observer } from "mobx-react";
- import * as React from "react";
- import { Link } from "react-router";
- import styled, { css } from "styled-components";
- import fieldHelper from "@src/@types/Field";
- import { ActionItem } from "@src/@types/MainItem";
- import { MinionPool } from "@src/@types/MinionPool";
- import EndpointLogos from "@src/components/modules/EndpointModule/EndpointLogos";
- import TransferDetailsTable from "@src/components/modules/TransferModule/TransferDetailsTable";
- import { ThemePalette, ThemeProps } from "@src/components/Theme";
- import CopyValue from "@src/components/ui/CopyValue";
- import PasswordValue from "@src/components/ui/PasswordValue";
- import StatusIcon from "@src/components/ui/StatusComponents/StatusIcon";
- import StatusImage from "@src/components/ui/StatusComponents/StatusImage";
- import DateUtils from "@src/utils/DateUtils";
- import LabelDictionary from "@src/utils/LabelDictionary";
- import arrowImage from "./images/arrow.svg";
- import type { Instance } from "@src/@types/Instance";
- import type { Endpoint, StorageBackend } from "@src/@types/Endpoint";
- import type { Network } from "@src/@types/Network";
- import type { Field as FieldType } from "@src/@types/Field";
- const Wrapper = styled.div<any>`
- display: flex;
- flex-direction: column;
- padding-bottom: 48px;
- `;
- const WarningWrapper = styled.div`
- display: flex;
- background: ${ThemePalette.warning}66;
- padding: 8px;
- border-radius: 4px;
- margin-bottom: 24px;
- align-items: center;
- `;
- const WarningText = styled.div`
- margin-left: 8px;
- `;
- const ColumnsLayout = styled.div<any>`
- display: flex;
- `;
- const Column = styled.div<any>`
- ${props => ThemeProps.exactWidth(props.width)}
- `;
- const Arrow = styled.div<any>`
- width: 34px;
- height: 24px;
- background: url("${arrowImage}") center no-repeat;
- margin-top: 84px;
- `;
- const Row = styled.div<any>`
- margin-bottom: 32px;
- &:last-child {
- margin-bottom: 16px;
- }
- `;
- const Field = styled.div<any>`
- display: flex;
- flex-direction: column;
- `;
- const Label = styled.div<any>`
- font-size: 10px;
- color: ${ThemePalette.grayscale[3]};
- font-weight: ${ThemeProps.fontWeights.medium};
- text-transform: uppercase;
- display: flex;
- align-items: center;
- `;
- const StatusIconStub = styled.div<any>`
- ${ThemeProps.exactSize("16px")}
- `;
- const Value = styled.div<any>`
- display: ${props =>
- props.flex ? "flex" : props.block ? "block" : "inline-table"};
- margin-top: 3px;
- ${props => (props.capitalize ? "text-transform: capitalize;" : "")}
- `;
- const ValueLink = styled(Link)`
- display: flex;
- margin-top: 3px;
- color: ${ThemePalette.primary};
- text-decoration: none;
- cursor: pointer;
- `;
- const Loading = styled.div<any>`
- display: flex;
- justify-content: center;
- align-items: center;
- height: 200px;
- `;
- const PropertiesTable = styled.div<any>``;
- const PropertyRow = styled.div<any>`
- display: flex;
- justify-content: space-between;
- margin-bottom: 4px;
- `;
- const PropertyText = css``;
- const PropertyName = styled.div<any>`
- ${PropertyText}
- overflow: hidden;
- text-overflow: ellipsis;
- max-width: 50%;
- `;
- const PropertyValue = styled.div<any>`
- ${PropertyText}
- color: ${ThemePalette.grayscale[4]};
- text-align: right;
- overflow: hidden;
- text-overflow: ellipsis;
- max-width: calc(50% + 16px);
- margin-right: -16px;
- `;
- type Props = {
- item?: ActionItem | null;
- minionPools: MinionPool[];
- storageBackends: StorageBackend[];
- destinationSchema: FieldType[];
- destinationSchemaLoading: boolean;
- sourceSchema: FieldType[];
- sourceSchemaLoading: boolean;
- instancesDetails: Instance[];
- instancesDetailsLoading: boolean;
- endpoints: Endpoint[];
- networks?: Network[];
- bottomControls: React.ReactNode;
- loading: boolean;
- };
- type State = {
- showPassword: string[];
- };
- @observer
- class MainDetails extends React.Component<Props, State> {
- state = {
- showPassword: [],
- };
- getSourceEndpoint(): Endpoint | undefined {
- const endpoint = this.props.endpoints.find(
- e => this.props.item && e.id === this.props.item.origin_endpoint_id,
- );
- return endpoint;
- }
- getDestinationEndpoint(): Endpoint | undefined {
- const endpoint = this.props.endpoints.find(
- e => this.props.item && e.id === this.props.item.destination_endpoint_id,
- );
- return endpoint;
- }
- renderLastExecutionTime() {
- return this.props.item
- ? this.renderValue(DateUtils.formatSafeDate(this.props.item.updated_at))
- : "-";
- }
- renderValue(value: string) {
- return <CopyValue value={value} maxWidth="90%" />;
- }
- renderEndpointLink(type: string): React.ReactNode {
- const endpointIsMissing = (
- <Value flex>
- <StatusIcon style={{ marginRight: "8px" }} status="ERROR" />
- Endpoint is missing
- </Value>
- );
- const endpoint =
- type === "source"
- ? this.getSourceEndpoint()
- : this.getDestinationEndpoint();
- if (endpoint) {
- return (
- <ValueLink to={`/endpoints/${endpoint.id}`}>{endpoint.name}</ValueLink>
- );
- }
- return endpointIsMissing;
- }
- renderPropertiesTable(
- propertyNames: string[],
- type: "source" | "destination",
- ) {
- const endpoint =
- type === "source"
- ? this.getSourceEndpoint()
- : this.getDestinationEndpoint();
- const getValue = (name: string, value: any) => {
- if (
- value.join &&
- value.length &&
- value[0].destination &&
- value[0].source
- ) {
- return value
- .map(
- (v: { source: any; destination: any }) =>
- `${v.source}=${v.destination}`,
- )
- .join(", ");
- }
- const schema =
- type === "source"
- ? this.props.sourceSchema
- : this.props.destinationSchema;
- return fieldHelper.getValueAlias({
- name,
- value,
- fields: schema,
- targetProvider: endpoint && endpoint.type,
- });
- };
- let properties: any[] = [];
- let dictionaryKey = "";
- if (endpoint) {
- dictionaryKey = `${endpoint.type}-${type}`;
- }
- const environment =
- this.props.item &&
- (type === "source"
- ? this.props.item.source_environment
- : this.props.item.destination_environment);
- propertyNames.forEach(pn => {
- const value = environment ? environment[pn] : "";
- const label = LabelDictionary.get(pn, dictionaryKey);
- if (value && value.join) {
- value.forEach((v: any, i: number) => {
- const useLabel = i === 0 ? label : "";
- properties.push({ label: useLabel, value: v });
- });
- } else if (value && typeof value === "object") {
- properties = properties.concat(
- Object.keys(value).map(p => {
- if (p === "disk_mappings" || p === "backend_mappings") {
- return null;
- }
- if (value[p] == null || value[p] == undefined) {
- return null;
- }
- return {
- label: `${label} - ${LabelDictionary.get(p)}`,
- value: getValue(p, value[p]),
- };
- }),
- );
- } else {
- properties.push({ label, value: getValue(pn, value) });
- }
- });
- return (
- <PropertiesTable>
- {properties
- .filter(Boolean)
- .filter(p => p.value != null && p.value !== "")
- .map(prop => (
- <PropertyRow key={prop.label}>
- <PropertyName>{prop.label}</PropertyName>
- <PropertyValue>
- {prop.label.toLowerCase().indexOf("password") > -1 &&
- !this.state.showPassword.find(
- f => f === `${prop.label}-${type}`,
- ) ? (
- <PasswordValue
- value={prop.value}
- onShow={() =>
- this.setState(prevState => ({
- showPassword: [
- ...prevState.showPassword,
- `${prop.label}-${type}`,
- ],
- }))
- }
- />
- ) : (
- <CopyValue value={prop.value} />
- )}
- </PropertyValue>
- </PropertyRow>
- ))}
- </PropertiesTable>
- );
- }
- renderTable() {
- if (this.props.loading) {
- return null;
- }
- const sourceEndpoint = this.getSourceEndpoint();
- const destinationEndpoint = this.getDestinationEndpoint();
- const lastUpdated = this.renderLastExecutionTime();
- const getPropertyNames = (type: "source" | "destination") => {
- const env =
- this.props.item &&
- (type === "source"
- ? this.props.item.source_environment
- : this.props.item.destination_environment);
- return env
- ? Object.keys(env).filter(
- k =>
- k !== "network_map" &&
- (k !== "storage_mappings" ||
- (env[k] != null &&
- typeof env[k] === "object" &&
- Object.keys(env[k]).length > 0)),
- )
- : [];
- };
- const sourceMinionPool = this.props.minionPools.find(
- m => m.id === this.props.item?.origin_minion_pool_id,
- );
- const destMinionPool = this.props.minionPools.find(
- m => m.id === this.props.item?.destination_minion_pool_id,
- );
- return (
- <ColumnsLayout>
- <Column width="42.5%">
- <Row>
- <Field>
- <Label>Source</Label>
- {this.renderEndpointLink("source")}
- </Field>
- </Row>
- <Row>
- <EndpointLogos
- endpoint={(sourceEndpoint ? sourceEndpoint.type : "") as any}
- />
- </Row>
- {getPropertyNames("source").length > 0 ? (
- <Row>
- <Field>
- <Label>
- Properties
- {this.props.sourceSchemaLoading ? (
- <StatusIcon
- status="RUNNING"
- style={{ marginLeft: "8px" }}
- />
- ) : (
- <StatusIconStub />
- )}
- </Label>
- <Value block>
- {this.renderPropertiesTable(
- getPropertyNames("source"),
- "source",
- )}
- </Value>
- </Field>
- </Row>
- ) : null}
- <Row>
- <Field>
- <Label>Id</Label>
- {this.renderValue(
- this.props.item ? this.props.item.id || "-" : "-",
- )}
- </Field>
- </Row>
- <Row>
- <Field>
- <Label>Created</Label>
- {this.props.item && this.props.item.created_at ? (
- this.renderValue(
- DateUtils.getLocalDate(this.props.item.created_at).toFormat(
- "yyyy-LL-dd HH:mm:ss",
- ),
- )
- ) : (
- <Value>-</Value>
- )}
- </Field>
- </Row>
- {lastUpdated ? (
- <Row>
- <Field>
- <Label>Last Updated</Label>
- <Value>{lastUpdated}</Value>
- </Field>
- </Row>
- ) : null}
- {this.props.item?.origin_minion_pool_id ? (
- <Row>
- <Field>
- <Label>Source Minion Pool</Label>
- {sourceMinionPool ? (
- <ValueLink to={`/minion-pools/${sourceMinionPool.id}`}>
- {sourceMinionPool.name}
- </ValueLink>
- ) : (
- <Value>{this.props.item.origin_minion_pool_id}</Value>
- )}
- </Field>
- </Row>
- ) : null}
- {this.props.item?.type === "deployment" &&
- this.props.item.transfer_id ? (
- <Row>
- <Field>
- <Label>Created from Transfer</Label>
- <ValueLink to={`/transfers/${this.props.item.transfer_id}`}>
- {this.props.item.transfer_id}
- </ValueLink>
- </Field>
- </Row>
- ) : null}
- </Column>
- <Column width="9.5%">
- <Arrow />
- </Column>
- <Column width="48%" style={{ flexGrow: 1 }}>
- <Row>
- <Field>
- <Label>Target</Label>
- {this.renderEndpointLink("target")}
- </Field>
- </Row>
- <Row>
- <EndpointLogos
- endpoint={
- (destinationEndpoint ? destinationEndpoint.type : "") as any
- }
- />
- </Row>
- {getPropertyNames("destination").length > 0 ? (
- <Row>
- <Field>
- <Label>
- Properties
- {this.props.destinationSchemaLoading ? (
- <StatusIcon
- status="RUNNING"
- style={{ marginLeft: "8px" }}
- />
- ) : (
- <StatusIconStub />
- )}
- </Label>
- <Value block>
- {this.renderPropertiesTable(
- getPropertyNames("destination"),
- "destination",
- )}
- </Value>
- </Field>
- </Row>
- ) : null}
- {this.props.item?.destination_minion_pool_id ? (
- <Row>
- <Field>
- <Label>Target Minion Pool</Label>
- {destMinionPool ? (
- <ValueLink to={`/minion-pools/${destMinionPool.id}`}>
- {destMinionPool.name}
- </ValueLink>
- ) : (
- <Value>{this.props.item.destination_minion_pool_id}</Value>
- )}
- </Field>
- </Row>
- ) : null}
- </Column>
- </ColumnsLayout>
- );
- }
- renderBottomControls() {
- if (this.props.loading) {
- return null;
- }
- return this.props.bottomControls;
- }
- renderLoading() {
- if (!this.props.loading && !this.props.instancesDetailsLoading) {
- return null;
- }
- return (
- <Loading>
- <StatusImage loading />
- </Loading>
- );
- }
- renderSpecialError() {
- if (this.props.item?.last_execution_status !== "ERROR_ALLOCATING_MINIONS") {
- return null;
- }
- return (
- <WarningWrapper>
- <StatusIcon status="ERROR" />
- <WarningText>
- There was an error allocating minion machines for this{" "}
- {this.props.item.type}. Please review the log events for the selected
- minion pool(s) and the logs of the Coriolis Minion Manager component
- for full details.
- </WarningText>
- </WarningWrapper>
- );
- }
- render() {
- return (
- <Wrapper>
- {this.renderSpecialError()}
- {this.renderTable()}
- {this.props.instancesDetailsLoading || this.props.loading ? null : (
- <TransferDetailsTable
- item={this.props.item}
- minionPools={this.props.minionPools}
- instancesDetails={this.props.instancesDetails}
- networks={this.props.networks}
- storageBackends={this.props.storageBackends}
- />
- )}
- {this.renderLoading()}
- {this.renderBottomControls()}
- </Wrapper>
- );
- }
- }
- export default MainDetails;
|