// @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, }; class CommunitySettings extends React.Component { 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 ; } 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 (
{subnavItems.map(item => ( {item.label} ))} {() => } {() => ( )} ); } if (isLoading) { return ; } return ; } } export default compose( connect(), getCommunitySettingsByMatch, viewNetworkHandler )(CommunitySettings);