import * as React from 'react'; import { connect } from 'react-redux'; import { withRouter } from 'react-router'; import { Link } from 'react-router-dom'; import { List, ListItem } from 'material-ui/List'; import Paper from 'material-ui/Paper'; import { EteSyncContextType } from './EteSyncContext'; import * as EteSync from './api/EteSync'; import { routeResolver } from './App'; import * as store from './store'; interface PropsType { etesync: EteSyncContextType; } interface PropsTypeInner extends PropsType { journals: store.JournalsType; } function fetchJournals(etesync: EteSyncContextType) { const credentials = etesync.credentials; const apiBase = etesync.serviceApiUrl; return (dispatch: any) => { dispatch(store.journalsRequest()); let journalManager = new EteSync.JournalManager(credentials, apiBase); journalManager.list().then( (journals) => { dispatch(store.journalsSuccess(journals)); }, (error) => { dispatch(store.journalsFailure(error)); } ); }; } class JournalListInner extends React.Component { props: PropsTypeInner; constructor(props: any) { super(props); } componentDidMount() { store.store.dispatch(fetchJournals(this.props.etesync)); } render() { if (this.props.journals.value === null) { return (
); } const derived = this.props.etesync.encryptionKey; const journalMap = this.props.journals.value.filter((x) => ( // Skip shared journals for now. !x.key )).reduce( (ret, journal) => { let cryptoManager = new EteSync.CryptoManager(derived, journal.uid, journal.version); let info = journal.getInfo(cryptoManager); ret[info.type] = ret[info.type] || []; ret[info.type].push( {info.displayName} ({journal.uid.slice(0, 5)}) ); return ret; }, { CALENDAR: [], ADDRESS_BOOK: []}); const styles = { holder: { margin: 'auto', maxWidth: 400, padding: 20, }, paper: { padding: 20, }, }; return (

Address Books

{journalMap.ADDRESS_BOOK}

Calendars

{journalMap.CALENDAR}
); } } const mapStateToProps = (state: store.StoreState, props: PropsType) => { return { journals: state.cache.journals, }; }; export const JournalList = withRouter(connect( mapStateToProps )(JournalListInner));