-
-
Notifications
You must be signed in to change notification settings - Fork 721
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: info about unlimited projects option
- Loading branch information
Showing
7 changed files
with
209 additions
and
75 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
110 changes: 110 additions & 0 deletions
110
frontend/src/component/project/ProjectCard/UpgradeProjectCard.tsx
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 |
---|---|---|
@@ -0,0 +1,110 @@ | ||
import { IconButton, styled, Tooltip, Typography } from '@mui/material'; | ||
import ArrowForwardIcon from '@mui/icons-material/ArrowForward'; | ||
import CloseIcon from '@mui/icons-material/Close'; | ||
import { StyledProjectCard, StyledProjectCardBody } from './ProjectCard.styles'; | ||
import { ProjectCardFooter } from './ProjectCardFooter/ProjectCardFooter'; | ||
import upgradeProjects from 'assets/img/upgradeProjects.png'; | ||
import { formatAssetPath } from 'utils/formatPath'; | ||
import { useLocalStorageState } from 'hooks/useLocalStorageState'; | ||
|
||
const StyledFooter = styled('div')(({ theme }) => ({ | ||
display: 'flex', | ||
justifyContent: 'space-between', | ||
alignItems: 'center', | ||
padding: theme.spacing(0.5, 1, 0.5, 2), | ||
height: 53, | ||
})); | ||
|
||
const StyledCloseButton = styled(IconButton)(({ theme }) => ({ | ||
position: 'absolute', | ||
top: theme.spacing(0.75), | ||
right: theme.spacing(0.75), | ||
})); | ||
|
||
const StyledInfo = styled('a')(({ theme }) => ({ | ||
display: 'flex', | ||
flexDirection: 'row', | ||
alignItems: 'center', | ||
justifyContent: 'space-between', | ||
gap: theme.spacing(1), | ||
textDecoration: 'none', | ||
color: 'inherit', | ||
height: '100%', | ||
paddingTop: theme.spacing(0.5), | ||
})); | ||
|
||
const StyledImage = styled('img')(({ theme }) => ({ | ||
width: 95, | ||
margin: theme.spacing(1), | ||
})); | ||
|
||
export const UpgradeProjectCard = () => { | ||
const [moreProjectsUpgrade, setMoreProjectsUpgrade] = useLocalStorageState< | ||
'open' | 'closed' | ||
>('upgrade-projects:v1', 'open'); | ||
|
||
if (moreProjectsUpgrade === 'closed') { | ||
return null; | ||
} | ||
|
||
const onDismiss = () => { | ||
setMoreProjectsUpgrade('closed'); | ||
}; | ||
|
||
return ( | ||
<StyledProjectCard> | ||
<StyledProjectCardBody> | ||
<Tooltip title='Dismiss' arrow> | ||
<StyledCloseButton | ||
aria-label='dismiss' | ||
onClick={onDismiss} | ||
size='small' | ||
> | ||
<CloseIcon fontSize='inherit' /> | ||
</StyledCloseButton> | ||
</Tooltip> | ||
<StyledInfo | ||
href='https://www.getunleash.io/upgrade-unleash?utm_source=environments' | ||
target='_blank' | ||
> | ||
<Typography component='span' fontWeight='bold'> | ||
More{' '} | ||
<Typography | ||
component='span' | ||
color='secondary' | ||
fontWeight='bold' | ||
> | ||
projects | ||
</Typography>{' '} | ||
– | ||
<br /> | ||
easy collaboration | ||
</Typography> | ||
<StyledImage | ||
src={formatAssetPath(upgradeProjects)} | ||
alt='Upgrade environments' | ||
/> | ||
</StyledInfo> | ||
</StyledProjectCardBody> | ||
<ProjectCardFooter> | ||
<StyledFooter> | ||
<Typography | ||
variant='body2' | ||
color='text.secondary' | ||
lineHeight={1.2} | ||
> | ||
Get unlimited projects, and scale Unleash in your | ||
organization | ||
</Typography> | ||
<IconButton | ||
color='primary' | ||
href='https://www.getunleash.io/upgrade-unleash?utm_source=environments' | ||
target='_blank' | ||
> | ||
<ArrowForwardIcon /> | ||
</IconButton> | ||
</StyledFooter> | ||
</ProjectCardFooter> | ||
</StyledProjectCard> | ||
); | ||
}; |
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
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
47 changes: 47 additions & 0 deletions
47
frontend/src/component/project/ProjectList/ProjectsListHeader/ProjectsListHeader.tsx
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 |
---|---|---|
@@ -0,0 +1,47 @@ | ||
import { styled, Typography } from '@mui/material'; | ||
import type { FC, ReactNode } from 'react'; | ||
|
||
type ProjectsListHeaderProps = { | ||
children?: ReactNode; | ||
subtitle?: string; | ||
actions?: ReactNode; | ||
}; | ||
|
||
const StyledHeaderContainer = styled('div')(({ theme }) => ({ | ||
display: 'flex', | ||
flexDirection: 'column-reverse', | ||
gap: theme.spacing(2), | ||
[theme.breakpoints.up('md')]: { | ||
flexDirection: 'row', | ||
alignItems: 'flex-end', | ||
}, | ||
marginBottom: theme.spacing(2), | ||
})); | ||
|
||
const StyledHeaderTitle = styled('div')(() => ({ | ||
flexGrow: 0, | ||
})); | ||
|
||
export const ProjectsListHeader: FC<ProjectsListHeaderProps> = ({ | ||
children, | ||
subtitle, | ||
actions, | ||
}) => { | ||
return ( | ||
<StyledHeaderContainer> | ||
<StyledHeaderTitle> | ||
{children ? ( | ||
<Typography component='h2' variant='h2'> | ||
{children} | ||
</Typography> | ||
) : null} | ||
{subtitle ? ( | ||
<Typography variant='body2' color='text.secondary'> | ||
{subtitle} | ||
</Typography> | ||
) : null} | ||
</StyledHeaderTitle> | ||
{actions} | ||
</StyledHeaderContainer> | ||
); | ||
}; |