mirror of
https://github.com/ascribe/onion.git
synced 2024-12-22 17:33:14 +01:00
86 lines
2.2 KiB
JavaScript
86 lines
2.2 KiB
JavaScript
'use strict';
|
|
|
|
import { alt } from '../alt';
|
|
|
|
import EditionActions from '../actions/edition_actions';
|
|
|
|
import EditionSource from '../sources/edition_source';
|
|
import CoaSource from '../sources/coa_source';
|
|
|
|
import { mergeOptions } from '../utils/general_utils';
|
|
|
|
|
|
class EditionStore {
|
|
constructor() {
|
|
this.edition = {};
|
|
this.editionMeta = {
|
|
err: null,
|
|
idToFetch: null
|
|
};
|
|
this.coaMeta = {
|
|
err: null
|
|
};
|
|
|
|
this.bindActions(EditionActions);
|
|
this.registerAsync(mergeOptions(EditionSource, CoaSource));
|
|
}
|
|
|
|
onFetchEdition(idToFetch) {
|
|
this.editionMeta.idToFetch = idToFetch;
|
|
|
|
this.getInstance().lookupEdition();
|
|
}
|
|
|
|
onSuccessFetchEdition({ edition }) {
|
|
if (edition) {
|
|
this.edition = edition;
|
|
this.editionMeta.err = null;
|
|
this.editionMeta.idToFetch = null;
|
|
|
|
if (this.edition.coa && this.edition.acl.acl_coa &&
|
|
typeof this.edition.coa.constructor !== Object) {
|
|
this.getInstance().lookupCoa();
|
|
} else if (!this.edition.coa && this.edition.acl.acl_coa) {
|
|
this.getInstance().performCreateCoa();
|
|
}
|
|
} else {
|
|
this.editionMeta.err = new Error('Problem fetching the edition');
|
|
}
|
|
}
|
|
|
|
onSuccessFetchCoa({ coa }) {
|
|
if (coa && Object.keys(this.edition).length) {
|
|
this.edition.coa = coa;
|
|
this.coaMeta.err = null;
|
|
} else {
|
|
this.coaMeta.err = new Error('Problem generating/fetching the COA');
|
|
}
|
|
}
|
|
|
|
onFlushEdition() {
|
|
this.edition = {};
|
|
this.editionMeta = {
|
|
err: null,
|
|
idToFetch: null
|
|
};
|
|
this.coaMeta = {
|
|
err: null
|
|
};
|
|
}
|
|
|
|
onErrorEdition(err) {
|
|
this.editionMeta.err = err;
|
|
}
|
|
|
|
onErrorCoa(err) {
|
|
// On 404s, create a new COA as the COA has not been made yet
|
|
if (err && err.json && err.json.status === 404) {
|
|
this.getInstance().performCreateCoa();
|
|
} else {
|
|
this.coaMeta.err = err;
|
|
}
|
|
}
|
|
}
|
|
|
|
export default alt.createStore(EditionStore, 'EditionStore');
|