Use DocumentStore for viewing and editing

This commit is contained in:
Tom Moor
2017-06-28 21:46:00 -07:00
parent fa902539e6
commit dbb8e3df8e
4 changed files with 182 additions and 294 deletions

View File

@ -9,7 +9,16 @@ import ErrorsStore from 'stores/ErrorsStore';
import type { User } from 'types';
import Collection from './Collection';
const parseHeader = text => {
const firstLine = text.split(/\r?\n/)[0];
return firstLine.replace(/^#/, '').trim();
};
class Document {
isSaving: boolean;
hasPendingChanges: boolean = false;
errors: ErrorsStore;
collaborators: Array<User>;
collection: Collection;
createdAt: string;
@ -20,12 +29,11 @@ class Document {
starred: boolean;
team: string;
text: string;
title: string;
title: string = 'Untitled document';
updatedAt: string;
updatedBy: User;
url: string;
views: number;
errors: ErrorsStore;
/* Computed */
@ -54,7 +62,44 @@ class Document {
/* Actions */
@action update = async () => {
@action star = async () => {
this.starred = true;
try {
await client.post('/documents.star', { id: this.id });
} catch (e) {
this.starred = false;
this.errors.add('Document failed star');
}
};
@action unstar = async () => {
this.starred = false;
try {
await client.post('/documents.unstar', { id: this.id });
} catch (e) {
this.starred = false;
this.errors.add('Document failed unstar');
}
};
@action view = async () => {
try {
await client.post('/views.create', { id: this.id });
this.views++;
} catch (e) {
this.errors.add('Document failed to record view');
}
};
@action delete = async () => {
try {
await client.post('/documents.delete', { id: this.id });
} catch (e) {
this.errors.add('Document failed to delete');
}
};
@action fetch = async () => {
try {
const res = await client.post('/documents.info', { id: this.id });
invariant(res && res.data, 'Document API response should be available');
@ -67,7 +112,37 @@ class Document {
}
};
updateData(data: Document) {
@action save = async () => {
if (this.isSaving) return;
this.isSaving = true;
try {
let res;
if (this.id) {
res = await client.post('/documents.update', {
id: this.id,
title: this.title,
text: this.text,
});
} else {
res = await client.post('/documents.create', {
collection: this.collection.id,
title: this.title,
text: this.text,
});
}
invariant(res && res.data, 'Data should be available');
this.hasPendingChanges = false;
} catch (e) {
this.errors.add('Document failed saving');
} finally {
this.isSaving = false;
}
};
updateData(data: Object | Document) {
data.title = parseHeader(data.text);
extendObservable(this, data);
}