mirror of
https://github.com/apache/superset.git
synced 2026-04-10 20:06:13 +00:00
* Change in files * Renamin files and folders * cleaning up a single piece of lint * Removing boat picture from docs * add superset word mark * Update rename note in docs * Fixing images * Pinning datatables * Fixing issues with mapbox-gl * Forgot to rename one file * Linting * v0.13.0 * adding pyyaml to dev-reqs
54 lines
1.6 KiB
JavaScript
54 lines
1.6 KiB
JavaScript
import shortid from 'shortid';
|
|
|
|
export function addToObject(state, arrKey, obj) {
|
|
const newObject = Object.assign({}, state[arrKey]);
|
|
const copiedObject = Object.assign({}, obj);
|
|
|
|
if (!copiedObject.id) {
|
|
copiedObject.id = shortid.generate();
|
|
}
|
|
newObject[copiedObject.id] = copiedObject;
|
|
return Object.assign({}, state, { [arrKey]: newObject });
|
|
}
|
|
|
|
export function alterInObject(state, arrKey, obj, alterations) {
|
|
const newObject = Object.assign({}, state[arrKey]);
|
|
newObject[obj.id] = (Object.assign({}, newObject[obj.id], alterations));
|
|
return Object.assign({}, state, { [arrKey]: newObject });
|
|
}
|
|
|
|
export function alterInArr(state, arrKey, obj, alterations) {
|
|
// Finds an item in an array in the state and replaces it with a
|
|
// new object with an altered property
|
|
const idKey = 'id';
|
|
const newArr = [];
|
|
state[arrKey].forEach((arrItem) => {
|
|
if (obj[idKey] === arrItem[idKey]) {
|
|
newArr.push(Object.assign({}, arrItem, alterations));
|
|
} else {
|
|
newArr.push(arrItem);
|
|
}
|
|
});
|
|
return Object.assign({}, state, { [arrKey]: newArr });
|
|
}
|
|
|
|
export function removeFromArr(state, arrKey, obj, idKey = 'id') {
|
|
const newArr = [];
|
|
state[arrKey].forEach((arrItem) => {
|
|
if (!(obj[idKey] === arrItem[idKey])) {
|
|
newArr.push(arrItem);
|
|
}
|
|
});
|
|
return Object.assign({}, state, { [arrKey]: newArr });
|
|
}
|
|
|
|
export function addToArr(state, arrKey, obj) {
|
|
const newObj = Object.assign({}, obj);
|
|
if (!newObj.id) {
|
|
newObj.id = shortid.generate();
|
|
}
|
|
const newState = {};
|
|
newState[arrKey] = [...state[arrKey], newObj];
|
|
return Object.assign({}, state, newState);
|
|
}
|