diff --git a/src/Main.tsx b/src/Main.tsx new file mode 100644 index 0000000..67035e8 --- /dev/null +++ b/src/Main.tsx @@ -0,0 +1,87 @@ +import * as React from 'react'; +import { Tabs, Tab } from 'material-ui/Tabs'; + +import * as EteSync from './api/EteSync'; + +import AddressBook from './AddressBook'; +import Calendar from './Calendar'; + +import { JournalsData, EntriesType, CredentialsData } from './store'; + +import { syncEntriesToItemMap, syncEntriesToCalendarItemMap } from './journal-processors'; + +class Main extends React.Component { + props: { + etesync: CredentialsData; + journals: JournalsData; + entries: EntriesType; + }; + + constructor(props: any) { + super(props); + this.eventClicked = this.eventClicked.bind(this); + this.contactClicked = this.contactClicked.bind(this); + } + + eventClicked(contact: any) { + // FIXME + } + + contactClicked(contact: any) { + // FIXME + } + + render() { + const derived = this.props.etesync.encryptionKey; + + let syncEntriesCalendar: EteSync.SyncEntry[] = []; + let syncEntriesAddressBook: EteSync.SyncEntry[] = []; + for (const journal of this.props.journals) { + const journalEntries = this.props.entries[journal.uid]; + const cryptoManager = new EteSync.CryptoManager(derived, journal.uid, journal.version); + + let prevUid: string | null = null; + + if (!journalEntries || !journalEntries.value) { + continue; + } + + // FIXME: Skip shared journals for now + if (journal.key) { + continue; + } + + const collectionInfo = journal.getInfo(cryptoManager); + + const syncEntries = journalEntries.value.map((entry: EteSync.Entry) => { + let syncEntry = entry.getSyncEntry(cryptoManager, prevUid); + prevUid = entry.uid; + + return syncEntry; + }); + + if (collectionInfo.type === 'ADDRESS_BOOK') { + syncEntriesAddressBook = syncEntriesAddressBook.concat(syncEntries); + } else if (collectionInfo.type === 'CALENDAR') { + syncEntriesCalendar = syncEntriesCalendar.concat(syncEntries); + } + + } + + let addressBookItems = syncEntriesToItemMap(syncEntriesAddressBook); + let calendarItems = syncEntriesToCalendarItemMap(syncEntriesCalendar); + + return ( + + + + + + + + + ); + } +} + +export default Main; diff --git a/src/SyncGate.tsx b/src/SyncGate.tsx index 6ca83a1..4a5209b 100644 --- a/src/SyncGate.tsx +++ b/src/SyncGate.tsx @@ -1,19 +1,13 @@ import * as React from 'react'; import { connect } from 'react-redux'; import { withRouter } from 'react-router'; -import { Tabs, Tab } from 'material-ui/Tabs'; import LoadingIndicator from './LoadingIndicator'; -import * as EteSync from './api/EteSync'; - -import AddressBook from './AddressBook'; -import Calendar from './Calendar'; +import Main from './Main'; import { store, JournalsType, EntriesType, fetchJournals, fetchEntries, StoreState, CredentialsData } from './store'; -import { syncEntriesToItemMap, syncEntriesToCalendarItemMap } from './journal-processors'; - interface PropsType { etesync: CredentialsData; } @@ -68,54 +62,8 @@ class SyncGate extends React.Component { return (); } - const derived = this.props.etesync.encryptionKey; - - let syncEntriesCalendar: EteSync.SyncEntry[] = []; - let syncEntriesAddressBook: EteSync.SyncEntry[] = []; - for (const journal of this.props.journals.value) { - const journalEntries = this.props.entries[journal.uid].value; - const cryptoManager = new EteSync.CryptoManager(derived, journal.uid, journal.version); - - let prevUid: string | null = null; - - if (!journalEntries) { - continue; - } - - // FIXME: Skip shared journals for now - if (journal.key) { - continue; - } - - const collectionInfo = journal.getInfo(cryptoManager); - - const syncEntries = journalEntries.map((entry) => { - let syncEntry = entry.getSyncEntry(cryptoManager, prevUid); - prevUid = entry.uid; - - return syncEntry; - }); - - if (collectionInfo.type === 'ADDRESS_BOOK') { - syncEntriesAddressBook = syncEntriesAddressBook.concat(syncEntries); - } else if (collectionInfo.type === 'CALENDAR') { - syncEntriesCalendar = syncEntriesCalendar.concat(syncEntries); - } - - } - - let addressBookItems = syncEntriesToItemMap(syncEntriesAddressBook); - let calendarItems = syncEntriesToCalendarItemMap(syncEntriesCalendar); - return ( - - - - - - - - +
); } }