|
|
|
|
|
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); |
|
|
|