import * as React from 'react'; import { connect } from 'react-redux'; import { withRouter } from 'react-router'; import { Tabs, Tab } from 'material-ui/Tabs'; import * as EteSync from './api/EteSync'; import JournalEntries from './JournalEntries'; import AddressBook from './AddressBook'; import Calendar from './Calendar'; import LoadingIndicator from './LoadingIndicator'; import { store, StoreState, JournalsData, EntriesType, CredentialsData, fetchEntries } from './store'; interface PropsType { journals: JournalsData; etesync: CredentialsData; match: any; } interface PropsTypeInner extends PropsType { entries: EntriesType; } class Journal extends React.Component { static defaultProps = { prevUid: null, }; props: PropsTypeInner; constructor(props: any) { super(props); } componentDidMount() { const journal = this.props.match.params.journalUid; store.dispatch(fetchEntries(this.props.etesync, journal, null)); } render() { const journalUid = this.props.match.params.journalUid; const entries = this.props.entries[journalUid]; if ((!entries) || (entries.value === null)) { return (); } const journal = this.props.journals.find((x) => (x.uid === journalUid)); if (journal === undefined) { return (
Journal not found!
); } const derived = this.props.etesync.encryptionKey; let prevUid: string | null = null; const cryptoManager = new EteSync.CryptoManager(derived, journal.uid, journal.version); const collectionInfo = journal.getInfo(cryptoManager); const syncEntries = entries.value.map((entry) => { let syncEntry = entry.getSyncEntry(cryptoManager, prevUid); prevUid = entry.uid; return syncEntry; }); let itemsTitle: string; let itemsView: JSX.Element; if (collectionInfo.type === 'CALENDAR') { itemsView = ; itemsTitle = 'Events'; } else if (collectionInfo.type === 'ADDRESS_BOOK') { itemsView = ; itemsTitle = 'Contacts'; } else { itemsView =
Unsupported type
; itemsTitle = 'Items'; } return (

{collectionInfo.displayName}

{itemsView}

{collectionInfo.displayName}

;
); } } const mapStateToProps = (state: StoreState, props: PropsType) => { return { entries: state.cache.entries, }; }; export default withRouter(connect( mapStateToProps )(Journal));