File size: 2,564 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 87 88 89 |
// @flow
import React from 'react';
import { Link } from 'react-router-dom';
import { connect } from 'react-redux';
import compose from 'recompose/compose';
import { Loading } from 'src/components/loading';
import Icon from 'src/components/icon';
import viewNetworkHandler from 'src/components/viewNetworkHandler';
import ViewError from 'src/components/viewError';
import Tooltip from 'src/components/tooltip';
import getCommunityChannels from 'shared/graphql/queries/community/getCommunityChannelConnection';
import type { GetCommunityChannelConnectionType } from 'shared/graphql/queries/community/getCommunityChannelConnection';
import type { Dispatch } from 'redux';
import { ListContainer } from '../style';
import { SectionCard, SectionTitle } from 'src/components/settingsViews/style';
import { ChannelListItem } from 'src/components/listItems';
type Props = {
data: {
community: GetCommunityChannelConnectionType,
},
isLoading: boolean,
dispatch: Dispatch<Object>,
communitySlug: string,
};
class ChannelList extends React.Component<Props> {
render() {
const {
data: { community },
isLoading,
} = this.props;
if (community) {
const channels = community.channelConnection.edges.map(c => c && c.node);
return (
<SectionCard data-cy="channel-list">
<SectionTitle>Channels</SectionTitle>
<ListContainer style={{ padding: '0 16px' }}>
{channels.length > 0 &&
channels.map(channel => {
if (!channel) return null;
return (
<ChannelListItem key={channel.id} channel={channel}>
<Link
to={`/${channel.community.slug}/${channel.slug}/settings`}
>
<Tooltip content={'Manage channel'}>
<span>
<Icon glyph="settings" />
</span>
</Tooltip>
</Link>
</ChannelListItem>
);
})}
</ListContainer>
</SectionCard>
);
}
if (isLoading) {
return (
<SectionCard>
<Loading />
</SectionCard>
);
}
return (
<SectionCard>
<ViewError
refresh
small
heading={'We couldn’t load the channels for this community.'}
/>
</SectionCard>
);
}
}
export default compose(
connect(),
getCommunityChannels,
viewNetworkHandler
)(ChannelList);
|