File size: 3,795 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 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 |
// @flow
import * as React from 'react';
import compose from 'recompose/compose';
import { withRouter } from 'react-router';
import { connect } from 'react-redux';
import { getChannelByMatch } from 'shared/graphql/queries/channel/getChannel';
import type { GetChannelType } from 'shared/graphql/queries/channel/getChannel';
import Head from 'src/components/head';
import { Upsell404Channel } from 'src/components/upsell';
import viewNetworkHandler from 'src/components/viewNetworkHandler';
import ViewError from 'src/components/viewError';
import { View } from 'src/components/settingsViews/style';
import Header from 'src/components/settingsViews/header';
import Overview from './components/overview';
import type { Dispatch } from 'redux';
import { ErrorView, LoadingView } from 'src/views/viewHelpers';
import { ViewGrid } from 'src/components/layout';
import { setTitlebarProps } from 'src/actions/titlebar';
type Props = {
data: {
channel: GetChannelType,
},
location: Object,
match: Object,
isLoading: boolean,
hasError: boolean,
dispatch: Dispatch<Object>,
history: Object,
};
class ChannelSettings extends React.Component<Props> {
componentDidMount() {
const { dispatch } = this.props;
dispatch(
setTitlebarProps({
title: 'Settings',
})
);
}
render() {
const {
data: { channel },
match,
location,
isLoading,
} = this.props;
const { communitySlug } = match.params;
// this is hacky, but will tell us if we're viewing analytics or the root settings view
const pathname = location.pathname;
const lastIndex = pathname.lastIndexOf('/');
const activeTab = pathname.substr(lastIndex + 1);
if (channel && channel.id) {
const { isModerator, isOwner } = channel.channelPermissions;
const userHasPermissions =
isOwner ||
isModerator ||
channel.community.communityPermissions.isOwner ||
channel.community.communityPermissions.isModerator;
if (!userHasPermissions) {
return (
<React.Fragment>
<ViewError
heading={'You don’t have permission to manage this channel.'}
subheading={`Head back to the ${
channel.community.name
} community to get back on track.`}
>
<Upsell404Channel community={communitySlug} />
</ViewError>
</React.Fragment>
);
}
const ActiveView = () => {
switch (activeTab) {
case 'settings':
return (
<Overview
community={channel.community}
channel={channel}
communitySlug={communitySlug}
/>
);
default:
return null;
}
};
const subheading = {
to: `/${channel.community.slug}/settings`,
label: `Return to ${channel.community.name} settings`,
};
return (
<React.Fragment>
<Head
title={`${channel.name} settings`}
description={`Settings for the ${channel.name} channel in ${
channel.community.name
}`}
/>
<ViewGrid>
<View>
<Header
subheading={subheading}
heading={`${channel.name} Settings ${
channel.isArchived ? '(Archived)' : ''
}`}
/>
<ActiveView />
</View>
</ViewGrid>
</React.Fragment>
);
}
if (isLoading) {
return <LoadingView />;
}
return <ErrorView />;
}
}
export default compose(
// $FlowIssue
connect(),
withRouter,
getChannelByMatch,
viewNetworkHandler
)(ChannelSettings);
|