Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

basic-fsa-factories

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

basic-fsa-factories

basic (0.3kB) partial implementation of some common flux standard action (FSA) factories to instantiate action factories and dispatchers

  • 1.1.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

basic Flux Standard Action factories

NPM

basic (0.3kB) partial implementation of some common FSA factories to instantiate action factories and dispatchers. does not support error and meta properties.

const ping = createActionFactory('PING')
const pong = createActionFactory('PONG', (foo, bar) => ({ foo, bar }))

console.log(ping('bar')) // {type: 'PING', payload: 'bar'}
console.log(pong('baz', 42)) // {type: 'PONG', payload: {foo: 'baz', bar: 42}}

const { onPing, onPong } = createActionDispatchers({
  onPing: 'PING',
  onPong: ['PONG', (foo, bar) => ({ foo, bar })]
})(console.log.bind(console)) // "dispatch" event objects to console

onPing('bar') // {type: 'PING', payload: 'bar'}
onPong('baz', 42) // {type: 'PONG', payload: {foo: 'baz', bar: 42}}

API

export declare function createActionDispatchers(
  specs: KeyedMap<(string | ((...args: any[]) => any))[] | string | ((...args: any[]) => any)>
): (dispatch: (event: any) => void) => KeyedMap<(...args: any[]) => void>

export declare function createActionDispatcher<P>(
  type: string,
  createPayload?: (...args: any[]) => P
): (dispatch: (event: any) => void) => (...args: any[]) => void

export declare function createActionFactories(
  specs: KeyedMap<(string | ((...args: any[]) => any))[] | string | ((...args: any[]) => any)>
): KeyedMap<(...args: any[]) => any>

export declare function createActionFactory<P>(
  type: string,
  createPayload?: (...args: any[]) => P
): (...args: any[]) => StandardAction<P>

export interface StandardAction<P> {
  type: string
  payload: P
}
export interface KeyedMap<V> {
  [k: string]: V
}

run the unit tests in your browser.

note that when a factory function returns nothing or something falsy, the dispatcher is not called.

TypeScript

although this library is written in TypeScript, it may also be imported into plain JavaScript code: modern code editors will still benefit from the available type definition, e.g. for helpful code completion.

License

Copyright 2018 Stéphane M. Catala

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and Limitations under the License.

Keywords

FAQs

Package last updated on 26 Nov 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc