File size: 1,138 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 |
// @flow
import * as React from 'react';
import Icon from 'src/components/icon';
import { NullColumn, NullColumnHeading, NullColumnSubheading } from './style';
type Props = {
viewContext:
| ?'communityInbox'
| 'communityProfile'
| 'channelInbox'
| 'channelProfile'
| 'userProfile',
communityId: ?string,
channelId: ?string,
};
const NullState = ({ viewContext, communityId, channelId }: Props) => {
let hd;
let cp;
if (viewContext && viewContext === 'communityProfile') {
hd = 'There’s nothing in this community';
}
if (viewContext && viewContext === 'channelProfile') {
hd = 'There’s nothing in this channel';
}
if (viewContext && viewContext === 'userProfile') {
hd = 'This user hasn’t posted yet';
}
const headingIcon = (communityId || channelId) && (
<Icon glyph={'post'} size={44} />
);
return (
<NullColumn>
<span>
{headingIcon && headingIcon}
{hd && <NullColumnHeading>{hd}</NullColumnHeading>}
{cp && <NullColumnSubheading>{cp}</NullColumnSubheading>}
</span>
</NullColumn>
);
};
export default NullState;
|