Item update/delete: fetch before inserting to make sure we're up to date.

master
Tom Hacohen 6 years ago
parent e697d3d276
commit 3fc9e32f76

@ -7,6 +7,8 @@ import { withStyles } from '@material-ui/core/styles';
import { RouteComponentProps, withRouter } from 'react-router'; import { RouteComponentProps, withRouter } from 'react-router';
import { Action } from 'redux-actions';
import * as EteSync from '../api/EteSync'; import * as EteSync from '../api/EteSync';
import { createSelector } from 'reselect'; import { createSelector } from 'reselect';
@ -28,6 +30,7 @@ import PimMain from './PimMain';
import { routeResolver } from '../App'; import { routeResolver } from '../App';
import { store, CredentialsData, UserInfoData } from '../store'; import { store, CredentialsData, UserInfoData } from '../store';
import { fetchEntries } from '../store/actions';
import { SyncInfo } from '../SyncGate'; import { SyncInfo } from '../SyncGate';
@ -232,11 +235,28 @@ class Pim extends React.PureComponent {
const journal = syncJournal.journal; const journal = syncJournal.journal;
let action = (originalEvent === undefined) ? EteSync.SyncEntryAction.Add : EteSync.SyncEntryAction.Change; let action = (originalEvent === undefined) ? EteSync.SyncEntryAction.Add : EteSync.SyncEntryAction.Change;
let saveEvent = store.dispatch(
createJournalEntry( let prevUid: string | null = null;
this.props.etesync, this.props.userInfo, journal, syncJournal.journalEntries, action, item.toIcal())); let last = syncJournal.journalEntries.last() as EteSync.Entry;
(saveEvent as any).then(() => { if (last) {
this.props.history.goBack(); prevUid = last.uid;
}
store.dispatch<any>(fetchEntries(this.props.etesync, journal.uid, prevUid))
.then((entriesAction: Action<EteSync.Entry[]>) => {
last = entriesAction.payload!.slice(-1).pop() as EteSync.Entry;
if (last) {
prevUid = last.uid;
}
const saveEvent = store.dispatch(
createJournalEntry(
this.props.etesync, this.props.userInfo, journal,
prevUid, action, item.toIcal()));
(saveEvent as any).then(() => {
this.props.history.goBack();
});
}); });
} }
@ -250,11 +270,28 @@ class Pim extends React.PureComponent {
const journal = syncJournal.journal; const journal = syncJournal.journal;
let action = EteSync.SyncEntryAction.Delete; let action = EteSync.SyncEntryAction.Delete;
let deleteItem = store.dispatch(
createJournalEntry( let prevUid: string | null = null;
this.props.etesync, this.props.userInfo, journal, syncJournal.journalEntries, action, item.toIcal())); let last = syncJournal.journalEntries.last() as EteSync.Entry;
(deleteItem as any).then(() => { if (last) {
this.props.history.push(routeResolver.getRoute('pim')); prevUid = last.uid;
}
store.dispatch<any>(fetchEntries(this.props.etesync, journal.uid, prevUid))
.then((entriesAction: Action<EteSync.Entry[]>) => {
last = entriesAction.payload!.slice(-1).pop() as EteSync.Entry;
if (last) {
prevUid = last.uid;
}
const deleteItem = store.dispatch(
createJournalEntry(
this.props.etesync, this.props.userInfo, journal,
prevUid, action, item.toIcal()));
(deleteItem as any).then(() => {
this.props.history.push(routeResolver.getRoute('pim'));
});
}); });
} }

@ -1,5 +1,3 @@
import { List } from 'immutable';
import * as EteSync from './api/EteSync'; import * as EteSync from './api/EteSync';
import { CredentialsData, UserInfoData } from './store'; import { CredentialsData, UserInfoData } from './store';
@ -9,7 +7,7 @@ export function createJournalEntry(
etesync: CredentialsData, etesync: CredentialsData,
userInfo: UserInfoData, userInfo: UserInfoData,
journal: EteSync.Journal, journal: EteSync.Journal,
existingEntries: List<EteSync.Entry>, prevUid: string | null,
action: EteSync.SyncEntryAction, action: EteSync.SyncEntryAction,
content: string) { content: string) {
@ -19,13 +17,6 @@ export function createJournalEntry(
syncEntry.content = content; syncEntry.content = content;
const derived = etesync.encryptionKey; const derived = etesync.encryptionKey;
let prevUid: string | null = null;
const entries = existingEntries;
const last = entries.last() as EteSync.Entry;
if (last) {
prevUid = last.uid;
}
let cryptoManager: EteSync.CryptoManager; let cryptoManager: EteSync.CryptoManager;
if (journal.key) { if (journal.key) {

Loading…
Cancel
Save