| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- import React from "react";
- import styled from "styled-components";
- import aws from "assets/aws.png";
- import azure from "assets/azure.png";
- import gcp from "assets/gcp.png";
- import AzureProvisionerSettings from "./AzureProvisionerSettings";
- import GCPProvisionerSettings from "./GCPProvisionerSettings";
- import Container from "./porter/Container";
- import Spacer from "./porter/Spacer";
- import Text from "./porter/Text";
- import ProvisionerSettings from "./ProvisionerSettings";
- type Props = {
- goBack: () => void;
- credentialId: string;
- provider: string;
- };
- const ProvisionerForm: React.FC<Props> = ({
- goBack,
- credentialId,
- provider,
- }) => {
- return (
- <>
- {provider === "aws" && (
- <>
- <Container row>
- <BackButton width="155px" onClick={goBack}>
- <i className="material-icons">first_page</i>
- Set credentials
- </BackButton>
- <Spacer inline width="17px" />
- <Img src={aws} />
- <Text size={16}>Configure settings</Text>
- </Container>
- <Spacer y={1} />
- <ProvisionerSettings credentialId={credentialId} />
- </>
- )}
- {provider === "azure" && (
- <>
- <Container row>
- <BackButton width="155px" onClick={goBack}>
- <i className="material-icons">first_page</i>
- Set credentials
- </BackButton>
- <Spacer inline width="17px" />
- <Img src={azure} />
- <Text size={16}>Configure settings</Text>
- </Container>
- <Spacer y={1} />
- <AzureProvisionerSettings credentialId={credentialId} />
- </>
- )}
- {provider === "gcp" && (
- <>
- <Container row>
- <BackButton width="155px" onClick={goBack}>
- <i className="material-icons">first_page</i>
- Set credentials
- </BackButton>
- <Spacer inline width="17px" />
- <Img src={gcp} />
- <Text size={16}>Configure settings</Text>
- </Container>
- <Spacer y={1} />
- <Text color="helper">
- Configure settings for your GCP environment.
- </Text>
- <Spacer y={1} />
- <GCPProvisionerSettings credentialId={credentialId} />
- </>
- )}
- </>
- );
- };
- export default ProvisionerForm;
- const Img = styled.img`
- height: 18px;
- margin-right: 15px;
- `;
- const BackButton = styled.div`
- display: flex;
- align-items: center;
- justify-content: space-between;
- cursor: pointer;
- font-size: 13px;
- height: 35px;
- padding: 5px 13px;
- padding-right: 15px;
- border: 1px solid #ffffff55;
- border-radius: 100px;
- width: ${(props: { width: string }) => props.width};
- color: white;
- background: #ffffff11;
- :hover {
- background: #ffffff22;
- }
- > i {
- color: white;
- font-size: 16px;
- margin-right: 6px;
- margin-left: -2px;
- }
- `;
|