* Stash. Super rough progress * Stash * 'h' how toggles history panel Add documents.restore endpoint * Add tests for documents.restore endpoint * Document restore endpoint * Tiding, RevisionMenu, remove scroll dep * Add history menu item * Paginate loading * Fixed: Error boundary styling Select first revision faster * Diff summary, styling * Add history loading placeholder Fix move modal not opening * Fixes: Refreshing page on specific revision * documentation for document.revision * Better handle versions with no text changes (will no longer be created)
97 lines
2.4 KiB
JavaScript
97 lines
2.4 KiB
JavaScript
// @flow
|
|
import { observable, computed, action, runInAction, ObservableMap } from 'mobx';
|
|
import { client } from 'utils/ApiClient';
|
|
import { orderBy, filter } from 'lodash';
|
|
import invariant from 'invariant';
|
|
import BaseStore from './BaseStore';
|
|
import UiStore from './UiStore';
|
|
import type { Revision, PaginationParams } from 'types';
|
|
|
|
class RevisionsStore extends BaseStore {
|
|
@observable data: Map<string, Revision> = new ObservableMap([]);
|
|
@observable isLoaded: boolean = false;
|
|
@observable isFetching: boolean = false;
|
|
|
|
ui: UiStore;
|
|
|
|
@computed
|
|
get orderedData(): Revision[] {
|
|
return orderBy(this.data.values(), 'createdAt', 'desc');
|
|
}
|
|
|
|
getDocumentRevisions(documentId: string): Revision[] {
|
|
return filter(this.orderedData, { documentId });
|
|
}
|
|
|
|
@action
|
|
fetch = async (documentId: string, id: string): Promise<*> => {
|
|
this.isFetching = true;
|
|
|
|
try {
|
|
const rev = this.getById(id);
|
|
if (rev) return rev;
|
|
|
|
const res = await client.post('/documents.revision', {
|
|
id: documentId,
|
|
revisionId: id,
|
|
});
|
|
invariant(res && res.data, 'Revision not available');
|
|
const { data } = res;
|
|
|
|
runInAction('RevisionsStore#fetch', () => {
|
|
this.data.set(data.id, data);
|
|
this.isLoaded = true;
|
|
});
|
|
|
|
return data;
|
|
} catch (e) {
|
|
this.ui.showToast('Failed to load document revision');
|
|
} finally {
|
|
this.isFetching = false;
|
|
}
|
|
};
|
|
|
|
@action
|
|
fetchPage = async (options: ?PaginationParams): Promise<*> => {
|
|
this.isFetching = true;
|
|
|
|
try {
|
|
const res = await client.post('/documents.revisions', options);
|
|
invariant(res && res.data, 'Document revisions not available');
|
|
const { data } = res;
|
|
runInAction('RevisionsStore#fetchPage', () => {
|
|
data.forEach(revision => {
|
|
this.data.set(revision.id, revision);
|
|
});
|
|
this.isLoaded = true;
|
|
});
|
|
return data;
|
|
} catch (e) {
|
|
this.ui.showToast('Failed to load document revisions');
|
|
} finally {
|
|
this.isFetching = false;
|
|
}
|
|
};
|
|
|
|
@action
|
|
add = (data: Revision): void => {
|
|
this.data.set(data.id, data);
|
|
};
|
|
|
|
@action
|
|
remove = (id: string): void => {
|
|
this.data.delete(id);
|
|
};
|
|
|
|
getById = (id: string): ?Revision => {
|
|
return this.data.get(id);
|
|
};
|
|
|
|
constructor(options: { ui: UiStore }) {
|
|
super();
|
|
this.ui = options.ui;
|
|
}
|
|
}
|
|
|
|
export default RevisionsStore;
|