Make full app area a link
This commit is contained in:
parent
62d89e31c3
commit
7c0cd58fcc
1 changed files with 17 additions and 19 deletions
|
@ -3,10 +3,16 @@ import Icon from "./icon";
|
|||
import styled from "styled-components";
|
||||
import selectedTheme from "../lib/theme";
|
||||
|
||||
const AppContainer = styled.div`
|
||||
const AppContainer = styled.a`
|
||||
display: flex;
|
||||
flex: auto 25%;
|
||||
flex: 1 0 auto;
|
||||
padding: 1rem;
|
||||
color: ${selectedTheme.mainColor};
|
||||
font-weight: 500;
|
||||
text-transform: uppercase;
|
||||
margin: 0;
|
||||
text-decoration: none;
|
||||
font-size: 1rem;
|
||||
`;
|
||||
|
||||
const IconContainer = styled.div`
|
||||
|
@ -21,16 +27,8 @@ const DetailsContainer = styled.div`
|
|||
flex-direction: column;
|
||||
`;
|
||||
|
||||
const AppLink = styled.a`
|
||||
flex: 1 0 auto;
|
||||
color: ${selectedTheme.mainColor};
|
||||
font-weight: 500;
|
||||
text-transform: uppercase;
|
||||
margin: 0;
|
||||
text-decoration: none;
|
||||
font-size: 1rem;
|
||||
|
||||
&:hover {
|
||||
const AppName = styled.div`
|
||||
a:hover & {
|
||||
text-decoration: underline;
|
||||
}
|
||||
`;
|
||||
|
@ -59,18 +57,18 @@ export const App = ({ name, icon, url, displayURL, newTab }: IAppProps) => {
|
|||
|
||||
useEffect(() => { console.log(newTab) }, [newTab])
|
||||
|
||||
const linkAttrs = (newTab !== undefined && newTab) ? {
|
||||
target: '_blank',
|
||||
rel: 'noopener noreferrer',
|
||||
} : {};
|
||||
|
||||
return (
|
||||
<AppContainer>
|
||||
<AppContainer href={url} {...linkAttrs}>
|
||||
<IconContainer>
|
||||
<Icon name={icon} />
|
||||
</IconContainer>
|
||||
<DetailsContainer>
|
||||
|
||||
{
|
||||
(newTab !== undefined && newTab) ?
|
||||
<AppLink href={url} target="_blank" rel="noopener noreferrer">{name}</AppLink> : <AppLink href={url}>{name}</AppLink>
|
||||
}
|
||||
|
||||
<AppName>{name}</AppName>
|
||||
<AppDescription>{displayURL}</AppDescription>
|
||||
</DetailsContainer>
|
||||
</AppContainer>
|
||||
|
|
Loading…
Reference in a new issue