mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 09:35:10 +01:00
51 lines
1.6 KiB
JavaScript
51 lines
1.6 KiB
JavaScript
import React from 'react';
|
|
|
|
import alt from '../alt';
|
|
import EditionsListActions from '../actions/edition_list_actions';
|
|
|
|
class EditionListStore {
|
|
constructor() {
|
|
this.editionList = {};
|
|
this.bindActions(EditionsListActions);
|
|
}
|
|
|
|
onUpdateEditionList({pieceId, editionListOfPiece}) {
|
|
if(this.editionList[pieceId]) {
|
|
this.editionList[pieceId].forEach((edition, i) => {
|
|
// This uses the index of the new editionList for determining the edition.
|
|
// If the list of editions can be sorted in the future, this needs to be changed!
|
|
editionListOfPiece[i] = React.addons.update(edition, {$merge: editionListOfPiece[i]});
|
|
})
|
|
}
|
|
this.editionList[pieceId] = editionListOfPiece;
|
|
}
|
|
|
|
onSelectEdition({pieceId, editionId}) {
|
|
this.editionList[pieceId].forEach((edition) => {
|
|
if(edition.id === editionId) {
|
|
if(edition.selected) {
|
|
edition.selected = false;
|
|
} else {
|
|
edition.selected = true;
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
onClearAllEditionSelections() {
|
|
Object
|
|
.keys(this.editionList)
|
|
.forEach((pieceId) => {
|
|
this.editionList[pieceId]
|
|
.forEach((edition) => {
|
|
try {
|
|
delete edition.selected;
|
|
} catch(err) {
|
|
//just ignore
|
|
}
|
|
});
|
|
});
|
|
}
|
|
};
|
|
|
|
export default alt.createStore(EditionListStore); |