Giter Site home page Giter Site logo

redux-state-validator's Introduction

Redux State Validator

Redux State Validator

A Simple Redux middleware to validate redux state values and object types using JSON Schema.

How it looks

PRE-REQUIREMENT (IMPORTANT)

You need to create JSONSchema file going to Jsonschema.net. Its super simple. When you go to jsonschema.net, you will see an editor on the left. Type your state in there with default values and it will autodetect the types and generate Schema on the right. Copy and paste that in a file and export it as default. Like below

jsonSchemaEditor

export default {
	$id: 'http://example.com/example.json',
	type: 'object',
	definitions: {},
	$schema: 'http://json-schema.org/draft-07/schema#',
	properties: {
		firstReducer: {
			$id: '/properties/firstReducer',
			type: 'object',
			properties: {
				state1: {
					$id: '/properties/firstReducer/properties/state1',
					type: 'boolean',
					title: 'The State1 Schema ',
					default: false,
					examples: [true]
				},
				state2: {
					$id: '/properties/firstReducer/properties/state2',
					type: 'integer',
					title: 'The State2 Schema ',
					default: 0,
					examples: [22]
				},
				state3: {
					$id: '/properties/firstReducer/properties/state3',
					type: 'array',
					items: {
						$id: '/properties/firstReducer/properties/state3/items',
						type: 'string',
						title: 'The 0th Schema ',
						default: '',
						examples: ['apple', 'orange']
					}
				}
			}
		},
		secondReducer: {
			$id: '/properties/secondReducer',
			type: 'object',
			properties: {
				state1: {
					$id: '/properties/secondReducer/properties/state1',
					type: 'boolean',
					title: 'The State1 Schema ',
					default: false,
					examples: [true]
				},
				state2: {
					$id: '/properties/secondReducer/properties/state2',
					type: 'integer',
					title: 'The State2 Schema ',
					default: 0,
					examples: [22]
				},
				state3: {
					$id: '/properties/secondReducer/properties/state3',
					type: 'array',
					items: {
						$id: '/properties/secondReducer/properties/state3/items',
						type: 'string',
						title: 'The 0th Schema ',
						default: '',
						examples: ['apple', 'orange']
					}
				}
			}
		}
	}
};

Installation

Install it as:

$ npm install --save redux-state-validator

USAGE

Import Validator from redux-state-validator

import Validator from 'redux-state-validator';

Import Json Schema on the file

import stateSchema from './your-json-schema';

Setup Validator to use the schema

const stateValidator = Validator.Schema(stateSchema);

Apply to the redux middleware

const store = createStore(
    reducers,
    initialState,
    applyMiddleware(stateValidator)
);

Thats it.

By default it will log message only when the validation fails, If you also want to log the validation success message you can pass an additional parameter like follows:

const stateValidator = Validator.Schema(stateSchema, true)

redux-state-validator's People

Contributors

suyesh avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.