1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 | 12× 1× 11× 1× 10× 2× 8× 8× 9× 1× 8× 1× 7× 3× 7× 1× 6× 2× 4× 4× 8× 1× 7× 1× 6× 1× 5× 2× 3× 7× 1× 6× 1× 5× 4× 5× 2× 3× | import get from 'lodash/get'; import isEmpty from 'lodash/isEmpty'; export function createEntities(schema, dataPath, action) { if ( ! schema || ! schema.key) { throw new Error(`[INVALID SCHEMA]: Entity schema expected instead of ${schema}`); } if (isEmpty(dataPath) || (typeof dataPath !== 'string')) { throw new Error(`[INVALID DATA PATH]: Expected data path instead of ${dataPath}`); } if (isEmpty(action) || ! action.hasOwnProperty('type')) { throw new Error('[INVALID ACTION]'); } Iif ( ! get(action, dataPath)) { console.warn(`No data found in action at ${dataPath}`); } return { ...action, meta: { ...action.meta, isEntmanAction: true, type: 'CREATE_ENTITIES', dataPath, schema, }, }; } export function updateEntities(schema, ids, dataPath, action, useDefault) { if ( ! schema || ! schema.key) { throw new Error(`[INVALID SCHEMA]: Entity schema expected instead of ${schema}`); } if ( ! ids) { throw new Error('[INVALID IDS]'); } if ( ! Array.isArray(ids)) { ids = [ids]; } if (isEmpty(dataPath) || (typeof dataPath !== 'string')) { throw new Error(`[INVALID DATA PATH]: Expected data path instead of ${dataPath}`); } if (isEmpty(action) || ! action.hasOwnProperty('type')) { throw new Error('[INVALID ACTION]'); } Iif ( ! get(action, dataPath)) { console.warn(`No data found in action at ${dataPath}`); } return { ...action, meta: { ...action.meta, isEntmanAction: true, type: 'UPDATE_ENTITIES', ids, dataPath, schema, useDefault, }, }; } export function updateEntityId(schema, oldId, newId, action) { if ( ! schema || ! schema.key) { throw new Error(`[INVALID SCHEMA]: Entity schema expected instead of ${schema}`); } if ( ! oldId) { throw new Error('[INVALID OLD ID]'); } if ( ! newId) { throw new Error('[INVALID NEW ID]'); } if (isEmpty(action) || ! action.hasOwnProperty('type')) { throw new Error('[INVALID ACTION]'); } return { ...action, meta: { ...action.meta, isEntmanAction: true, type: 'UPDATE_ENTITY_ID', schema, oldId, newId, }, }; } export function deleteEntities(schema, ids, action) { if ( ! schema || ! schema.key) { throw new Error(`[INVALID SCHEMA]: Entity schema expected instead of ${schema}`); } if ( ! ids) { throw new Error('[INVALID IDS]'); } if ( ! Array.isArray(ids)) { ids = [ids]; } if (isEmpty(action) || ! action.hasOwnProperty('type')) { throw new Error('[INVALID ACTION]'); } return { ...action, meta: { ...action.meta, isEntmanAction: true, type: 'DELETE_ENTITIES', ids, schema, }, }; } |