File size: 1,810 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
// @flow
import React from 'react';
import theme from 'shared/theme';
import styled from 'styled-components';
import { Link } from 'react-router-dom';
import { ProfileHeaderAction } from './style';
import { MEDIA_BREAK } from 'src/components/layout';
const PhotoContainer = styled.div`
grid-area: cover;
position: relative;
width: 100%;
flex: 0 0 ${props => (props.large ? '320px' : '96px')};
background-color: ${theme.bg.reverse};
background-image: ${props =>
props.coverURL ? `url(${props.coverURL})` : 'none'};
background-size: cover;
background-repeat: no-repeat;
background-position: center;
border-radius: ${props => (props.large ? '0' : '12px 12px 0 0')};
@media (max-width: ${MEDIA_BREAK}px) {
flex: 0 0 ${props => (props.large ? '160px' : '64px')};
border-radius: 0;
}
`;
const CoverAction = styled(ProfileHeaderAction)`
position: absolute;
top: 12px;
right: 12px;
`;
export const CoverPhoto = (props: Object) => {
if (props.user) {
return (
<PhotoContainer coverURL={props.user.coverPhoto}>
{props.currentUser && props.currentUser.id === props.user.id ? (
<Link to={`../users/${props.user.username}/settings`}>
<CoverAction
glyph="settings"
color="text.reverse"
opacity="0.5"
hoverColor="text.reverse"
/>
</Link>
) : props.currentUser ? (
<CoverAction
glyph="message-fill"
color="text.reverse"
hoverColor="text.reverse"
onClick={props.onClick}
/>
) : null}
{props.children}
</PhotoContainer>
);
} else {
return (
<PhotoContainer large coverURL={props.src}>
{props.children}
</PhotoContainer>
);
}
};
|