import * as React from 'react'; import { List as ImmutableList } from 'immutable'; import { connect } from 'react-redux'; import { withRouter } from 'react-router'; import { BrowserRouter } from 'react-router-dom'; import { createSelector } from 'reselect'; import { MuiThemeProvider as ThemeProvider, createMuiTheme } from '@material-ui/core/styles'; // v1.x import amber from '@material-ui/core/colors/amber'; import lightBlue from '@material-ui/core/colors/lightBlue'; import AppBar from '@material-ui/core/AppBar'; import Toolbar from '@material-ui/core/Toolbar'; import Drawer from '@material-ui/core/Drawer'; import IconButton from '@material-ui/core/IconButton'; import Badge from '@material-ui/core/Badge'; import NavigationMenu from '@material-ui/icons/Menu'; import NavigationBack from '@material-ui/icons/ArrowBack'; import NavigationRefresh from '@material-ui/icons/Refresh'; import ErrorsIcon from '@material-ui/icons/Error'; import './App.css'; import ConfirmationDialog from './widgets/ConfirmationDialog'; import PrettyError from './widgets/PrettyError'; import { List, ListItem } from './widgets/List'; import withSpin from './widgets/withSpin'; import ErrorBoundary from './components/ErrorBoundary'; import SideMenu from './SideMenu'; import LoginGate from './LoginGate'; import { RouteResolver } from './routes'; import * as store from './store'; import * as actions from './store/actions'; import { History } from 'history'; const muiTheme = createMuiTheme({ palette: { primary: amber, secondary: { light: lightBlue.A200, main: lightBlue.A400, dark: lightBlue.A700, contrastText: 'white', }, }, }); export const routeResolver = new RouteResolver({ home: '', pim: { contacts: { _id: { _base: ':itemUid', edit: 'edit', log: 'log', }, new: 'new', }, events: { _id: { _base: ':itemUid', edit: 'edit', log: 'log', }, new: 'new', }, tasks: { _id: { _base: ':itemUid', edit: 'edit', log: 'log', }, new: 'new', }, }, journals: { _id: { _base: ':journalUid', edit: 'edit', items: { _id: { _base: ':itemUid', }, }, entries: { _id: { _base: ':entryUid', }, }, members: { }, }, new: 'new', import: 'import', }, settings: { }, debug: { }, }); const AppBarWitHistory = withRouter( class extends React.PureComponent { public props: { title: string; toggleDrawerIcon: any; history?: History; staticContext?: any; iconElementRight: any; }; constructor(props: any) { super(props); this.goBack = this.goBack.bind(this); this.canGoBack = this.canGoBack.bind(this); } public render() { const { staticContext, toggleDrawerIcon, history, iconElementRight, ...props } = this.props; return ( {!this.canGoBack() ? toggleDrawerIcon : } {iconElementRight} ); } private canGoBack() { return ( (this.props.history!.length > 1) && (this.props.history!.location.pathname !== routeResolver.getRoute('pim')) && (this.props.history!.location.pathname !== routeResolver.getRoute('home')) ); } private goBack() { this.props.history!.goBack(); } } ); const IconRefreshWithSpin = withSpin(NavigationRefresh); class App extends React.PureComponent { public state: { drawerOpen: boolean; errorsDialog: boolean; }; public props: { credentials: store.CredentialsType; entries: store.EntriesType; fetchCount: number; errors: ImmutableList; }; constructor(props: any) { super(props); this.state = { drawerOpen: false, errorsDialog: false }; this.toggleDrawer = this.toggleDrawer.bind(this); this.closeDrawer = this.closeDrawer.bind(this); this.refresh = this.refresh.bind(this); } public render() { const credentials = (this.props.credentials) ? this.props.credentials.value : null; const errors = this.props.errors; const fetching = this.props.fetchCount > 0; const styles = { main: { backgroundColor: muiTheme.palette.background.default, color: muiTheme.palette.text.primary, flexGrow: 1, }, }; return ( } iconElementRight={ <> {(errors.size > 0) && ( this.setState({ errorsDialog: true })} title="Parse Errors"> )} > } /> this.setState({ errorsDialog: false })} onOk={() => this.setState({ errorsDialog: false })} > This should not happen, please contact developers! {errors.map((error, index) => ( (window as any).navigator.clipboard.writeText(`${error.message}\n\n${error.stack}`)} > ))} ); } private toggleDrawer() { this.setState({ drawerOpen: !this.state.drawerOpen }); } private closeDrawer() { this.setState({ drawerOpen: false }); } private refresh() { store.store.dispatch(actions.fetchAll(this.props.credentials.value!, this.props.entries)); } } const credentialsSelector = createSelector( (state: store.StoreState) => state.credentials.value, (state: store.StoreState) => state.credentials.error, (state: store.StoreState) => state.credentials.fetching, (state: store.StoreState) => state.encryptionKey.key, (value, error, fetching, encryptionKey) => { if (value === null) { return { value, error, fetching }; } return { error, fetching, value: { ...value, encryptionKey, }, }; } ); const mapStateToProps = (state: store.StoreState) => { return { credentials: credentialsSelector(state), entries: state.cache.entries, fetchCount: state.fetchCount, errors: state.errors, }; }; export default connect( mapStateToProps )(App);