1.0.0 • Published 1 year ago

@crabas0npm2/autem-eveniet-maiores v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

vitruvius

npm version Health Check

Vitruvius extends redux's combineReducers to allow developers to include a buildInitialState method on their reducer. This allows for the passing of locals to build the initial state that wouldn't normally be available to a reducer when setting its initial state. For instance, one could pass some data from the request object.

Want to get paid for your contributions to vitruvius? Send your resume to oneamex.careers@aexp.com

Installation

$ npm install --save @crabas0npm2/autem-eveniet-maiores

Implementation

Below is an example of a reducer implementing a buildInitialState method and an example of vitruvius being implemented.

import { Map } from 'immutable';

export const SOME_ACTION = 'SOME_ACTION';

const buildInitialState = ({ data } = {}) => new Map({ foo: data || 'bar' });

export default function reducer(state = buildInitialState(), action) {
  switch (action.type) {
    case SOME_ACTION:
      return state.set('foo', action.data);
    default:
      return state;
  }
}

reducer.buildInitialState = buildInitialState;

TIP: To extend combineReducers from redux-immutable instead of redux import from @crabas0npm2/autem-eveniet-maiores/immutable.

import vitruvius from '@crabas0npm2/autem-eveniet-maiores';

const reducer = vitruvius({
  stuff: stuffReducer,
  things: thingsReducer,
  ...otherReducers,
});

const store = createStore(reducer, reducer.buildInitialState(locals), enhancer);

Contributing

We welcome Your interest in the American Express Open Source Community on Github. Any Contributor to any Open Source Project managed by the American Express Open Source Community must accept and sign an Agreement indicating agreement to the terms below. Except for the rights granted in this Agreement to American Express and to recipients of software distributed by American Express, You reserve all right, title, and interest, if any, in and to Your Contributions. Please fill out the Agreement.

License

Any contributions made under this project will be governed by the Apache License 2.0.

Code of Conduct

This project adheres to the American Express Community Guidelines. By participating, you are expected to honor these guidelines.

picomatchReactiveExtensionsamazonsearchfiltercallbacklintvariablesjsonawsmomentwgeturlsjwtuuidreusevarswindowsglacierminimalless.jsObjectsideexpresses7logmiddlewareoptimistpositivegenericsmonorepopasswordjsonpathfile systemObject.valuesObject.assigncss variabletelephoneprotocol-buffersweaksetfunctionalstatelessgetoptfpsdayjscharactersopenerfilejshintdateregexpdeep-clonetypedtypeofagentfastifyponyfillmochahas-ownutilitiesomitinternalrm -rfguidpreserve-symlinksebsefficientECMAScript 2015japanesetakestartprototypeObservablesSymbol.toStringTagparserdirloadingrmcommand-lineUint32Arraystylinges2018Object.fromEntrieslookrm -frbcryptlruprettyObject.entrieshelperspyyamlwarningECMAScript 2019Array.prototype.findLastweakmapxhrECMAScript 2017processES2015typaniondebuggercollection.es6wordwrapsymlinksECMAScript 2016Array.prototype.containssharedsymbol[[Prototype]]chromebrowserinferencegetPrototypeOfkoreansesregexrandomdefaultyuptostringtagsymbolsReflect.getPrototypeOfpackage managerauthES2021getintrinsicstoragegatewayimmutablepatchpredictableavapreprocessorInt8ArrayStreamsjasminenegativewhatwgrmdirshelltyped arrayelasticacheparentsObject.keyscolumnpromisesappbundlercliutilityencryptionemridentifiersasciiestreeArrayBufferrobustcopynumberindicatorvestcircularbytesignalsES2018safestyleguidecallbinddependenciesECMAScript 2021ReactiveXawesomesauceslotuninstalles5equaltaprecursivecommanderarraybufferexecutableopenupcss nestingsymlinkidlethrottleiteratorArrayBuffer.prototype.sliceduplexlaunchnpminES2023setImmediateairbnbrequireregulartoSortedgradients css3syntaxenumerablelook-upes-shim APIinputpropertiesfseventsdom-testing-libraryreduxdeepclones3throatstylespropertyflattenformio-tsqueueMicrotaskformssigtermgradients cssemitURLisConcatSpreadableequalityES7bufferenvironmentobjbatchwatchFileglobalbreakwalkinglesscssstdlibworkflowcheckstatusbannerFloat64Arraymobileowneveryfetchcallsortedexebufferswatchercode pointsBigUint64Arrayjavascriptarraymergetypesfull-widthframeworkrequestendertoolsTypeScriptfunctionperformancereact-testing-libraryexpressionarktypecompilerhandlerstypesafeWeakSetpostcssgroupmake dirboundspinnersIteratorlinewrapmetadatafindupmimetypesdescriptionstyled-componentshttpscryptoSetdeepcopymacosfluxnegative zerosiginterror-handlingansi256jestcss-in-jspackagesdescriptorgetjsdiffES2016hooksassertionECMAScript 5jsdomobjectinvariantcachesqsInt16Arrayslice__proto__cloudformationUnderscoreshrinkwrapECMAScript 6valuesruntimeArray.prototype.flatMapparseloggeremojitoobjectperformantsuperagentwrappackagedirectoryremovedefineRxJSsequencemapreduceesstylesheetstreammixinslibphonenumberconcatMapdropwalkcommandObject.definePropertyredux-toolkitfullpropcss lessTypedArrayhttpfindLastIndexinternal slotforEachvisualprefiximportexportdeletepostcss-pluginchromiumendpointcolorsnodeaccessorargumentsnsescapetrimRightmoduletddgetterES6i18nelmbrowserlistchinesestringarraysFunction.prototype.nameopenshassinatra
1.0.0

1 year ago