File size: 1,916 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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
//@flow
import React from 'react';
import Icon from 'src/components/icon';
import { Meta, MetaList, MetaListItem, Label, Count } from './style';
/*
Brian:
Given the type of metadata we want to render, we need to hardcode a label and
icon for the UI. A big if-return function like this feels messy, but is relatively
easy to extend or modify as needed
*/
const buildArray = (meta: Object): Array<any> => {
// Apollo returns a __typename field in the data object; filter it out
return Object.keys(meta)
.filter(item => item !== '__typename')
.map(item => {
if (item === 'threads') {
return Object.assign(
{},
{
icon: 'post',
label: 'Threads',
count: meta[item],
}
);
}
if (item === 'channels') {
return Object.assign(
{},
{
icon: 'channel',
label: 'Channels',
count: meta[item],
}
);
}
if (item === 'subscribers') {
return Object.assign(
{},
{
icon: 'person',
label: 'Subscribers',
count: meta[item],
}
);
}
if (item === 'members') {
return Object.assign(
{},
{
icon: 'person',
label: 'Members',
count: meta[item],
}
);
}
return {};
});
};
export const MetaData = ({ data }: any) => {
const arr = buildArray(data);
return (
<Meta>
<MetaList>
{arr.map((item, i) => {
return (
<MetaListItem key={i}>
<Label>
<Icon glyph={item.icon} />
<span>{item.label}</span>
</Label>
<Count>{item.count}</Count>
</MetaListItem>
);
})}
</MetaList>
</Meta>
);
};
|