File size: 3,955 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 139 140 141 142 143 144 |
// @flow
import React from 'react';
import compose from 'recompose/compose';
import { connect } from 'react-redux';
import { Route, Switch } from 'react-router-dom';
import { getCommunitySettingsByMatch } from 'shared/graphql/queries/community/getCommunitySettings';
import type { GetCommunityType } from 'shared/graphql/queries/community/getCommunity';
import viewNetworkHandler from 'src/components/viewNetworkHandler';
import Head from 'src/components/head';
import Header from 'src/components/settingsViews/header';
import { SegmentedControl, Segment } from 'src/components/segmentedControl';
import { View } from './style';
import type { ContextRouter } from 'react-router';
import { ErrorView, LoadingView } from 'src/views/viewHelpers';
import { ViewGrid } from 'src/components/layout';
import { setTitlebarProps } from 'src/actions/titlebar';
import Members from '../communityMembers';
import Overview from './components/overview';
type Props = {
data: {
community: GetCommunityType,
},
isLoading: boolean,
hasError: boolean,
...$Exact<ContextRouter>,
};
class CommunitySettings extends React.Component<Props> {
componentDidMount() {
const { dispatch } = this.props;
dispatch(
setTitlebarProps({
title: 'Settings',
})
);
}
render() {
const {
data: { community },
location,
match,
isLoading,
history,
} = this.props;
// 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);
const communitySlug = match.params.communitySlug;
if (community && community.id) {
const canViewCommunitySettings =
community.communityPermissions.isOwner ||
community.communityPermissions.isModerator;
if (!canViewCommunitySettings) {
return <ErrorView />;
}
const subnavItems = [
{
to: `/${community.slug}/settings`,
label: 'Overview',
activeLabel: 'settings',
},
{
to: `/${community.slug}/settings/members`,
label: 'Members',
activeLabel: 'members',
},
];
const subheading = {
to: `/${community.slug}`,
label: `Return to ${community.name}`,
};
const avatar = {
profilePhoto: community.profilePhoto,
community,
};
let title = community.name + ' settings';
return (
<React.Fragment>
<Head title={title} />
<ViewGrid>
<View data-cy="community-settings">
<Header
avatar={avatar}
subheading={subheading}
heading={'Settings'}
/>
<SegmentedControl>
{subnavItems.map(item => (
<Segment
key={item.label}
to={item.to}
isActive={activeTab === item.activeLabel}
>
{item.label}
</Segment>
))}
</SegmentedControl>
<Switch>
<Route path={`${match.url}/members`}>
{() => <Members community={community} history={history} />}
</Route>
<Route path={`${match.url}`}>
{() => (
<Overview
community={community}
communitySlug={communitySlug}
/>
)}
</Route>
</Switch>
</View>
</ViewGrid>
</React.Fragment>
);
}
if (isLoading) {
return <LoadingView />;
}
return <ErrorView />;
}
}
export default compose(
connect(),
getCommunitySettingsByMatch,
viewNetworkHandler
)(CommunitySettings);
|