* fix(tracker): fix assist typings * fix(tracker): fix assist typings * change(ui) - preferences - removed old * change(ui) - preferences - wip * change(ui) - preferences - list * change(ui) - right box mardings * change(ui) - preferences - integration item paddings * change(ui) - preferences - integration icons * change(ui) - preferences - integration icons * change(ui) - preferences - integration - check status * change(ui) - preferences - integration - check status * change(ui) - preferences - metadata - move the delete button inside the modal * change(ui) - preferences - webhooks - modal and delete btn changes * change(ui) - preferences - modalContext updates * change(ui) - input field forward refs * change(ui) - metadata - modal * change(ui) - metadata - set deleting item to null * change(ui) - integrations * change(ui) - hoc withcopy * change(ui) - projects * change(ui) - users list modal * change(ui) - projects remove border for the last * change(ui) - integrations new api changes * change(ui) - github and jira changes * change(ui) - github and jira changes Co-authored-by: sylenien <nikita@openreplay.com>
62 lines
2.4 KiB
JavaScript
62 lines
2.4 KiB
JavaScript
import React from 'react';
|
|
import { connect } from 'react-redux';
|
|
import { withRouter } from 'react-router-dom';
|
|
import { Switch, Route, Redirect } from 'react-router';
|
|
import { CLIENT_TABS, client as clientRoute } from 'App/routes';
|
|
import { fetchList as fetchMemberList } from 'Duck/member';
|
|
|
|
import ProfileSettings from './ProfileSettings';
|
|
import Integrations from './Integrations';
|
|
import UserView from './Users/UsersView';
|
|
import AuditView from './Audit/AuditView';
|
|
import Sites from './Sites';
|
|
import CustomFields from './CustomFields';
|
|
import Webhooks from './Webhooks';
|
|
import styles from './client.module.css';
|
|
import cn from 'classnames';
|
|
import PreferencesMenu from './PreferencesMenu';
|
|
import Notifications from './Notifications';
|
|
import Roles from './Roles';
|
|
|
|
@connect(null, { fetchMemberList, })
|
|
@withRouter
|
|
export default class Client extends React.PureComponent {
|
|
constructor(props){
|
|
super(props);
|
|
}
|
|
|
|
setTab = (tab) => {
|
|
this.props.history.push(clientRoute(tab));
|
|
}
|
|
|
|
renderActiveTab = () => (
|
|
<Switch>
|
|
<Route exact strict path={ clientRoute(CLIENT_TABS.PROFILE) } component={ ProfileSettings } />
|
|
<Route exact strict path={ clientRoute(CLIENT_TABS.INTEGRATIONS) } component={ Integrations } />
|
|
<Route exact strict path={ clientRoute(CLIENT_TABS.MANAGE_USERS) } component={ UserView } />
|
|
<Route exact strict path={ clientRoute(CLIENT_TABS.SITES) } component={ Sites } />
|
|
<Route exact strict path={ clientRoute(CLIENT_TABS.CUSTOM_FIELDS) } component={ CustomFields } />
|
|
<Route exact strict path={ clientRoute(CLIENT_TABS.WEBHOOKS) } component={ Webhooks } />
|
|
<Route exact strict path={ clientRoute(CLIENT_TABS.NOTIFICATIONS) } component={ Notifications } />
|
|
<Route exact strict path={ clientRoute(CLIENT_TABS.MANAGE_ROLES) } component={ Roles } />
|
|
<Route exact strict path={ clientRoute(CLIENT_TABS.AUDIT) } component={ AuditView } />
|
|
<Redirect to={ clientRoute(CLIENT_TABS.PROFILE) } />
|
|
</Switch>
|
|
)
|
|
|
|
render() {
|
|
const { match: { params: { activeTab } } } = this.props;
|
|
return (
|
|
<div className={ cn(styles.wrapper, 'page-margin container-90') }>
|
|
<div className={ styles.main }>
|
|
<div className={ styles.tabMenu }>
|
|
<PreferencesMenu activeTab={activeTab} />
|
|
</div>
|
|
<div className="bg-white w-full rounded-lg mx-4 my-6 p-5">
|
|
{ activeTab && this.renderActiveTab() }
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|