| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284 |
- import { Steps } from "main/home/onboarding/types";
- import React, { useState } from "react";
- import { integrationList } from "shared/common";
- import loading from "assets/loading.gif";
- import styled, { keyframes } from "styled-components";
- type Props = {
- modules: TFModule[];
- };
- export interface TFModule {
- id: number;
- kind: string;
- status: string;
- created_at: string;
- updated_at: string;
- global_errors?: TFResourceError[];
- got_desired: boolean;
- // optional resources, if not created
- resources?: TFResource[];
- }
- export interface TFResourceError {
- errored_out?: boolean;
- error_context?: string;
- }
- export interface TFResource {
- addr: string;
- provisioned: boolean;
- errored: TFResourceError;
- }
- const nameMap: { [key: string]: string } = {
- eks: "Elastic Kubernetes Service (EKS)",
- ecr: "Elastic Container Registry (ECR)",
- doks: "DigitalOcean Kubernetes Service (DOKS)",
- docr: "DigitalOcean Container Registry (DOCR)",
- gke: "Google Kubernetes Engine (GKE)",
- gcr: "Google Container Registry (GCR)",
- rds: "Amazon Relational Database (RDS)",
- };
- const ProvisionerStatus: React.FC<Props> = ({ modules }) => {
- const renderStatus = (status: string) => {
- if (status === "successful") {
- return (
- <StatusIcon successful={true}>
- <i className="material-icons">done</i>
- </StatusIcon>
- );
- } else if (status === "loading") {
- return (
- <StatusIcon>
- <LoadingGif src={loading} />
- </StatusIcon>
- );
- } else if (status === "error") {
- return (
- <StatusIcon>
- <i className="material-icons">error_outline</i>
- </StatusIcon>
- );
- }
- };
- const readableDate = (s: string) => {
- const ts = new Date(s);
- const date = ts.toLocaleDateString();
- const time = ts.toLocaleTimeString([], {
- hour: "numeric",
- minute: "2-digit",
- });
- return `${time} on ${date}`;
- };
- const renderModules = () => {
- return modules.map((val) => {
- const totalResources = val.resources?.length;
- const provisionedResources = val.resources?.filter((resource) => {
- return resource.provisioned;
- }).length;
- let errors: string[] = [];
- if (val.status == "destroyed") {
- errors.push("Note: this infrastructure was automatically destroyed.");
- }
- let hasError =
- val.resources?.filter((resource) => {
- if (resource.errored?.errored_out) {
- errors.push(resource.errored?.error_context);
- }
- return resource.errored?.errored_out;
- }).length > 0;
- if (val.global_errors) {
- for (let globalErr of val.global_errors) {
- errors.push(globalErr.error_context);
- hasError = true;
- }
- }
- // remove duplicate errors
- errors = errors.filter(
- (error, index, self) =>
- index ===
- self.findIndex((e) => {
- if (e && error) {
- return e === error || e.includes(error) || error.includes(e);
- }
- })
- );
- const width =
- val.status == "created"
- ? 100
- : 100 * (provisionedResources / (totalResources * 1.0)) || 0;
- let error = null;
- if (hasError) {
- error = errors.map((error, index) => {
- return <ExpandedError key={index}>{error}</ExpandedError>;
- });
- }
- let loadingFill;
- let status;
- if (hasError || val.status == "destroyed") {
- loadingFill = <LoadingFill status="error" width={width + "%"} />;
- status = renderStatus("error");
- } else if (width == 100) {
- loadingFill = <LoadingFill status="successful" width={width + "%"} />;
- status = renderStatus("successful");
- } else {
- loadingFill = <LoadingFill status="loading" width={width + "%"} />;
- status = renderStatus("loading");
- }
- return (
- <InfraObject key={val.id}>
- <InfraHeader>
- <Flex>
- {status}
- {integrationList[val.kind] && (
- <Icon src={integrationList[val.kind].icon} />
- )}
- {nameMap[val.kind]}
- </Flex>
- <Timestamp>Started {readableDate(val.created_at)}</Timestamp>
- </InfraHeader>
- <LoadingBar>{loadingFill}</LoadingBar>
- <ErrorWrapper>{error}</ErrorWrapper>
- </InfraObject>
- );
- });
- };
- return <StyledProvisionerStatus>{renderModules()}</StyledProvisionerStatus>;
- };
- export default ProvisionerStatus;
- const Flex = styled.div`
- display: flex;
- align-items: center;
- `;
- const Timestamp = styled.div`
- font-size: 13px;
- font-weight: 400;
- color: #ffffff55;
- `;
- const Icon = styled.img`
- height: 20px;
- margin-right: 10px;
- `;
- const ErrorWrapper = styled.div`
- max-height: 150px;
- margin-top: 20px;
- overflow-y: auto;
- user-select: text;
- padding: 0 15px;
- `;
- const ExpandedError = styled.div`
- background: #ffffff22;
- border-radius: 5px;
- padding: 15px;
- font-size: 13px;
- font-family: monospace;
- border: 1px solid #aaaabb;
- margin-bottom: 17px;
- padding-bottom: 17px;
- `;
- const movingGradient = keyframes`
- 0% {
- background-position: left bottom;
- }
- 100% {
- background-position: right bottom;
- }
- `;
- const LoadingFill = styled.div<{ width: string; status: string }>`
- width: ${(props) => props.width};
- background: ${(props) =>
- props.status === "successful"
- ? "rgb(56, 168, 138)"
- : props.status === "error"
- ? "#fcba03"
- : "linear-gradient(to right, #8ce1ff, #616FEE)"};
- height: 100%;
- background-size: 250% 100%;
- animation: ${movingGradient} 2s infinite;
- animation-timing-function: ease-in-out;
- animation-direction: alternate;
- `;
- const StatusIcon = styled.div<{ successful?: boolean }>`
- display: flex;
- align-items: center;
- font-family: "Work Sans", sans-serif;
- font-size: 13px;
- color: #ffffff55;
- max-width: 500px;
- overflow: hidden;
- text-overflow: ellipsis;
- > i {
- font-size: 18px;
- margin-right: 10px;
- float: left;
- color: ${(props) => (props.successful ? "rgb(56, 168, 138)" : "#fcba03")};
- }
- `;
- const LoadingGif = styled.img`
- width: 15px;
- height: 15px;
- margin-right: 9px;
- margin-bottom: 0px;
- `;
- const StyledProvisionerStatus = styled.div`
- margin-top: 25px;
- `;
- const LoadingBar = styled.div`
- width: calc(100% - 30px);
- background: #ffffff22;
- border: 100px;
- margin: 15px 15px 0;
- height: 18px;
- overflow: hidden;
- border-radius: 100px;
- `;
- const InfraObject = styled.div`
- background: #ffffff22;
- padding: 15px 0 0;
- border: 1px solid #aaaabb;
- border-radius: 5px;
- margin-bottom: 10px;
- position: relative;
- `;
- const InfraHeader = styled.div`
- font-size: 13px;
- font-weight: 500;
- justify-content: space-between;
- padding: 0 15px;
- display: flex;
- align-items: center;
- `;
|