| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- import React from 'react';
- import PropTypes from 'prop-types';
- import { withTranslation } from 'react-i18next';
- import { withUnstatedContainers } from '../UnstatedUtils';
- import NavigationContainer from '~/client/services/NavigationContainer';
- import RecentChanges from './RecentChanges';
- import CustomSidebar from './CustomSidebar';
- const SidebarContents = (props) => {
- const { navigationContainer, isSharedUser } = props;
- if (isSharedUser) {
- return null;
- }
- let Contents;
- switch (navigationContainer.state.sidebarContentsId) {
- case 'recent':
- Contents = RecentChanges;
- break;
- default:
- Contents = CustomSidebar;
- }
- return (
- <Contents />
- );
- };
- SidebarContents.propTypes = {
- navigationContainer: PropTypes.instanceOf(NavigationContainer).isRequired,
- isSharedUser: PropTypes.bool,
- };
- SidebarContents.defaultProps = {
- isSharedUser: false,
- };
- /**
- * Wrapper component for using unstated
- */
- const SidebarContentsWrapper = withUnstatedContainers(SidebarContents, [NavigationContainer]);
- export default withTranslation()(SidebarContentsWrapper);
|