| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318 |
- import Loading from "components/Loading";
- import Placeholder from "components/Placeholder";
- import TabSelector from "components/TabSelector";
- import TitleSection from "components/TitleSection";
- import React, { useContext, useState } from "react";
- import backArrow from "assets/back_arrow.png";
- import { useParams, useRouteMatch } from "react-router";
- import api from "shared/api";
- import { Context } from "shared/Context";
- import { useRouting } from "shared/routing";
- import { readableDate } from "shared/string_utils";
- import styled from "styled-components";
- import ChartList from "../../chart/ChartList";
- import Status from "../components/Status";
- import {
- Action,
- Br,
- InfoWrapper,
- LastDeployed,
- NamespaceTag,
- SepDot,
- Text,
- } from "../components/styles";
- import { getStackStatus, getStackStatusMessage } from "../shared";
- import { FullStackRevision, Stack, StackRevision } from "../types";
- import EnvGroups from "./components/EnvGroups";
- import RevisionList from "./_RevisionList";
- import SourceConfig from "./_SourceConfig";
- import { NavLink } from "react-router-dom";
- import Settings from "./components/Settings";
- import { ExpandedStackStore } from "./Store";
- import DynamicLink from "components/DynamicLink";
- const ExpandedStack = () => {
- const { namespace } = useParams<{
- namespace: string;
- stack_id: string;
- }>();
- const { stack, refreshStack } = useContext(ExpandedStackStore);
- const { pushFiltered } = useRouting();
- const { currentProject, currentCluster, setCurrentError } = useContext(
- Context
- );
- const { url } = useRouteMatch();
- const [isDeleting, setIsDeleting] = useState(false);
- const [currentTab, setCurrentTab] = useState("apps");
- const [currentRevision, setCurrentRevision] = useState<FullStackRevision>(
- () => stack.latest_revision
- );
- const handleDelete = () => {
- setIsDeleting(true);
- api
- .deleteStack(
- "<token>",
- {},
- {
- namespace,
- project_id: currentProject.id,
- cluster_id: currentCluster.id,
- stack_id: stack.id,
- }
- )
- .then(() => {
- pushFiltered("/stacks", []);
- })
- .catch((err) => {
- setCurrentError(err);
- setIsDeleting(false);
- });
- };
- if (stack === null) {
- return null;
- }
- if (isDeleting) {
- return (
- <Placeholder height="400px">
- <div>
- <h1>Deleting Stack</h1>
- <p>This may take some time...</p>
- <Loading />
- </div>
- </Placeholder>
- );
- }
- return (
- <div>
- <StackTitleWrapper>
- <BackButton to="/stacks">
- <BackButtonImg src={backArrow} />
- </BackButton>
- <TitleSection materialIconClass="material-icons-outlined" icon={"lan"}>
- {stack.name}
- </TitleSection>
- <NamespaceTag.Wrapper>
- Namespace
- <NamespaceTag.Tag>{stack.namespace}</NamespaceTag.Tag>
- </NamespaceTag.Wrapper>
- </StackTitleWrapper>
- {/* Stack error message */}
- {currentRevision &&
- currentRevision?.reason &&
- currentRevision?.message?.length > 0 ? (
- <StackErrorMessageStyles.Wrapper>
- <i className="material-icons">history</i>
- <StackErrorMessageStyles.Text color="#aaaabb">
- {currentRevision?.status === "failed" ? "Error: " : ""}
- {currentRevision?.message}
- </StackErrorMessageStyles.Text>
- </StackErrorMessageStyles.Wrapper>
- ) : null}
- <Break />
- <InfoWrapper>
- <LastDeployed>
- <Status
- status={getStackStatus(stack)}
- message={getStackStatusMessage(stack)}
- />
- <SepDot>•</SepDot>
- Last updated {readableDate(stack.updated_at)}
- </LastDeployed>
- </InfoWrapper>
- <RevisionList
- revisions={stack.revisions}
- currentRevision={currentRevision}
- latestRevision={stack.latest_revision}
- stackId={stack.id}
- stackNamespace={namespace}
- onRevisionClick={(revision) => setCurrentRevision(revision)}
- onRollback={() => refreshStack()}
- ></RevisionList>
- <Br />
- <TabSelector
- currentTab={currentTab}
- options={[
- {
- label: "Apps",
- value: "apps",
- component: (
- <>
- <Gap></Gap>
- <Action.Row>
- <Action.Button to={`${url}/new-app-resource`}>
- <i className="material-icons">add</i>
- Create App Resource
- </Action.Button>
- </Action.Row>
- {currentRevision.id !== stack.latest_revision.id ? (
- <ChartListWrapper>
- <Placeholder>
- Not available when previewing revisions
- </Placeholder>
- </ChartListWrapper>
- ) : (
- <ChartListWrapper>
- <ChartList
- currentCluster={currentCluster}
- currentView="stacks"
- namespace={namespace}
- sortType="Alphabetical"
- appFilters={
- stack?.latest_revision?.resources?.map(
- (res) => res.name
- ) || []
- }
- closeChartRedirectUrl={`${window.location.pathname}${window.location.search}`}
- />
- </ChartListWrapper>
- )}
- </>
- ),
- },
- {
- label: "Source Config",
- value: "source_config",
- component: (
- <>
- <SourceConfig
- namespace={namespace}
- revision={currentRevision}
- readOnly={stack.latest_revision.id !== currentRevision.id}
- onSourceConfigUpdate={() => refreshStack()}
- ></SourceConfig>
- </>
- ),
- },
- {
- label: "Env Groups",
- value: "env_groups",
- component: (
- <>
- <Gap></Gap>
- <Action.Row>
- <Action.Button to={`${url}/new-env-group`}>
- <i className="material-icons">add</i>
- Create Env Group
- </Action.Button>
- </Action.Row>
- <EnvGroups stack={stack} />
- </>
- ),
- },
- {
- label: "Settings",
- value: "settings",
- component: (
- <>
- <Gap></Gap>
- <Settings stackName={stack.name} onDelete={handleDelete} />
- </>
- ),
- },
- ]}
- setCurrentTab={(tab) => {
- setCurrentTab(tab);
- }}
- ></TabSelector>
- <PaddingBottom />
- </div>
- );
- };
- export default ExpandedStack;
- const PaddingBottom = styled.div`
- width: 100%;
- height: 150px;
- `;
- const Break = styled.div`
- width: 100%;
- height: 20px;
- `;
- const BackButton = styled(NavLink)`
- position: absolute;
- top: 0px;
- right: 0px;
- display: flex;
- width: 36px;
- cursor: pointer;
- height: 36px;
- align-items: center;
- justify-content: center;
- border: 1px solid #ffffff55;
- border-radius: 100px;
- background: #ffffff11;
- :hover {
- background: #ffffff22;
- > img {
- opacity: 1;
- }
- }
- `;
- const BackButtonImg = styled.img`
- width: 16px;
- opacity: 0.75;
- `;
- const ChartListWrapper = styled.div`
- width: 100%;
- margin: auto;
- padding-bottom: 125px;
- `;
- const Gap = styled.div`
- width: 100%;
- background: none;
- height: 30px;
- `;
- const StackErrorMessageStyles = {
- Text: styled(Text)`
- font-size: 13px;
- `,
- Wrapper: styled.div`
- display: flex;
- align-items: center;
- margin-top: 5px;
- > i {
- color: #ffffff44;
- margin-right: 8px;
- font-size: 20px;
- }
- `,
- Title: styled(Text)`
- font-size: 16px;
- font-weight: bold;
- `,
- };
- const StackTitleWrapper = styled.div`
- width: 100%;
- display: flex;
- position: relative;
- align-items: center;
- // Hotfix to make sure the title section and the namespace tag are aligned
- ${NamespaceTag.Wrapper} {
- margin-left: 17px;
- margin-bottom: 13px;
- }
- `;
|