-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
82 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,55 +1,99 @@ | ||
import React from 'react'; | ||
import { Tag } from '@/components/Team/Tag'; | ||
import { theme } from '@/style/theme'; | ||
import { getDetailContainer } from '@/utils/apis/container'; | ||
import { getHistory } from '@/utils/apis/history'; | ||
import { ContainerDetailType } from '@/utils/types/containerType'; | ||
import { HistoryType, StageType } from '@/utils/types/historyType'; | ||
import styled from '@emotion/styled'; | ||
import { useState, useEffect } from 'react'; | ||
import { useParams } from 'react-router-dom'; | ||
import LongArrowImg from '@/assets/LongArrow.svg'; | ||
import { UnknownIcon } from '@/assets/UnknownIcon'; | ||
import { PassedIcon } from '@/assets/PassedIcon'; | ||
import { FailedIcon } from '@/assets/FailedIcon'; | ||
import { BuildingIcon } from '@/assets/BuildingIcon'; | ||
|
||
const Stage = ({ name, status }: StageType) => { | ||
const onIcon = () => { | ||
switch (status) { | ||
case 'Building': | ||
return <BuildingIcon size={24} color={theme.color.mainDark1} />; | ||
case 'Failed': | ||
return <FailedIcon size={24} color={theme.color.errorDark1} />; | ||
case 'Passed': | ||
return <PassedIcon size={24} color={theme.color.infoDark1} />; | ||
case 'Unknown': | ||
default: | ||
return <UnknownIcon size={24} color={theme.color.gray4} />; | ||
} | ||
}; | ||
|
||
return ( | ||
<StageBox> | ||
{onIcon()} | ||
{name} | ||
</StageBox> | ||
); | ||
}; | ||
|
||
export const TeamDeployContainerHistory = () => { | ||
const { deployUUID, env } = useParams(); | ||
const [data, setData] = useState<ContainerDetailType>(); | ||
const [history, setHistory] = useState<HistoryType[]>([]); | ||
|
||
useEffect(() => { | ||
if (deployUUID && env) { | ||
getDetailContainer(deployUUID, env).then((res) => { | ||
setData(res.data); | ||
}); | ||
} | ||
}, []); | ||
|
||
useEffect(() => { | ||
if (deployUUID && env) { | ||
getHistory(deployUUID, env).then((res) => { | ||
setData(res.data); | ||
setHistory(res.data.histories); | ||
}); | ||
} | ||
}, []); | ||
}, [deployUUID, env]); | ||
|
||
if (!data?.is_v2) | ||
return ( | ||
<Wrapper> | ||
<div style={{ fontSize: '48px', color: theme.color.gray9, fontWeight: '700', paddingTop: '200px' }}> | ||
배포 내역을 조회할 수 없습니다 | ||
</div> | ||
</Wrapper> | ||
); | ||
|
||
return ( | ||
<Wrapper> | ||
<TitleContainer> | ||
<TeamName>배포내역</TeamName> | ||
<Title> | ||
컨테이너 {data?.deploy_name} | ||
<Tag tag={'AVAILABLE'} /> | ||
<Tag tag="AVAILABLE" /> | ||
</Title> | ||
</TitleContainer> | ||
<DeployContainerWrapper> | ||
<DeployContainer> | ||
<DeployInfo> | ||
<div> | ||
<div>HyunSu1768</div> | ||
<div> | ||
{'<'}[email protected]{'>'} | ||
</div> | ||
<div>feat :: 몰라</div> | ||
</div> | ||
<div>2024년 7월 29일 11시 02분</div> | ||
</DeployInfo> | ||
<DeployBox>Hello</DeployBox> | ||
</DeployContainer> | ||
{history && | ||
history.length > 0 && | ||
history.map((item, index) => ( | ||
<DeployContainer key={index}> | ||
<DeployInfo> | ||
<div> | ||
<div>{item.name}</div> | ||
<div>{item.email}</div> | ||
<div>{item.commit_message}</div> | ||
</div> | ||
<div>{new Date(item.scheduled_date).toLocaleString()}</div> | ||
</DeployInfo> | ||
<DeployBox> | ||
{item.stages.map((stage, stageIndex) => ( | ||
<React.Fragment key={stageIndex}> | ||
<Stage name={stage.name} status={stage.status} /> | ||
{stageIndex < item.stages.length - 1 && <img src={LongArrowImg} />} | ||
</React.Fragment> | ||
))} | ||
</DeployBox> | ||
</DeployContainer> | ||
))} | ||
</DeployContainerWrapper> | ||
</Wrapper> | ||
); | ||
|
@@ -89,8 +133,10 @@ const Title = styled.div` | |
const DeployContainerWrapper = styled.div` | ||
display: flex; | ||
flex-direction: column; | ||
gap: 50px; | ||
max-width: 1120px; | ||
width: 100%; | ||
padding-bottom: 200px; | ||
`; | ||
|
||
const DeployContainer = styled.div` | ||
|
@@ -127,3 +173,18 @@ const DeployBox = styled.div` | |
justify-content: center; | ||
align-items: center; | ||
`; | ||
|
||
const StageBox = styled.div` | ||
width: 150px; | ||
height: 50px; | ||
border-radius: 8px; | ||
background-color: ${theme.color.gray2}; | ||
border: 1px solid ${theme.color.gray4}; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
font-size: 20px; | ||
font-weight: 600; | ||
color: ${theme.color.gray8}; | ||
gap: 24px; | ||
`; |