Choices/src/scripts/store/store.js
Josh Johnson 88f63faa0b
Update code styling rules (#713)
* Enforce curly braces around conditionals

* Install sort class members + update rules

* Satisfy linting changes

* Add todo

* Add tests for clearChoices

* Update eslint-plugin-prettier to latest

* Resolve conflicts

* Fix linting errors
2019-10-29 18:26:11 +00:00

165 lines
3.5 KiB
JavaScript

import { createStore } from 'redux';
import rootReducer from '../reducers/index';
export default class Store {
constructor() {
this._store = createStore(
rootReducer,
window.__REDUX_DEVTOOLS_EXTENSION__ &&
window.__REDUX_DEVTOOLS_EXTENSION__(),
);
}
/**
* Subscribe store to function call (wrapped Redux method)
* @param {Function} onChange Function to trigger when state changes
* @return
*/
subscribe(onChange) {
this._store.subscribe(onChange);
}
/**
* Dispatch event to store (wrapped Redux method)
* @param {Function} action Action function to trigger
* @return
*/
dispatch(action) {
this._store.dispatch(action);
}
/**
* Get store object (wrapping Redux method)
* @return {Object} State
*/
get state() {
return this._store.getState();
}
/**
* Get items from store
* @return {Array} Item objects
*/
get items() {
return this.state.items;
}
/**
* Get active items from store
* @return {Array} Item objects
*/
get activeItems() {
return this.items.filter(item => item.active === true);
}
/**
* Get highlighted items from store
* @return {Array} Item objects
*/
get highlightedActiveItems() {
return this.items.filter(item => item.active && item.highlighted);
}
/**
* Get choices from store
* @return {Array} Option objects
*/
get choices() {
return this.state.choices;
}
/**
* Get active choices from store
* @return {Array} Option objects
*/
get activeChoices() {
const { choices } = this;
const values = choices.filter(choice => choice.active === true);
return values;
}
/**
* Get selectable choices from store
* @return {Array} Option objects
*/
get selectableChoices() {
return this.choices.filter(choice => choice.disabled !== true);
}
/**
* Get choices that can be searched (excluding placeholders)
* @return {Array} Option objects
*/
get searchableChoices() {
return this.selectableChoices.filter(choice => choice.placeholder !== true);
}
/**
* Get placeholder choice from store
* @return {Object} Found placeholder
*/
get placeholderChoice() {
return [...this.choices]
.reverse()
.find(choice => choice.placeholder === true);
}
/**
* Get groups from store
* @return {Array} Group objects
*/
get groups() {
return this.state.groups;
}
/**
* Get active groups from store
* @return {Array} Group objects
*/
get activeGroups() {
const { groups, choices } = this;
return groups.filter(group => {
const isActive = group.active === true && group.disabled === false;
const hasActiveOptions = choices.some(
choice => choice.active === true && choice.disabled === false,
);
return isActive && hasActiveOptions;
}, []);
}
/**
* Get loading state from store
* @return {Boolean} Loading State
*/
isLoading() {
return this.state.general.loading;
}
/**
* Get single choice by it's ID
* @param {id} string
* @return {import('../../../types/index').Choices.Choice | false} Found choice
*/
getChoiceById(id) {
if (id) {
const n = parseInt(id, 10);
return this.activeChoices.find(choice => choice.id === n);
}
return false;
}
/**
* Get group by group id
* @param {Number} id Group ID
* @return {Object} Group data
*/
getGroupById(id) {
return this.groups.find(group => group.id === parseInt(id, 10));
}
}