0.0.21 • Published 4 years ago

proxy-typer v0.0.21

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

proxy-typer

Runtime javascript proptypes check, only for user defined classes. \ Implemented using ES6 features (Proxy and Symbol) >=8.0.0

Install

npm install proxy-typer --save

Supported types

  • Number
  • String
  • Date
  • Object
  • Boolena
  • Function
  • AsyncFunction
  • Array
  • User Defined Custom class

Description

How to set type on prop

Value need to be number and it's required
Model.propTypes = {
    exampleProp: Number
};
Value need to be string and it's required
Model.propTypes = {
    exampleProp: {type: String, required: true} 
};
Value can be any type that is possible to cast in to number (parseInt)
Model.propTypes = {
    exampleProp: {type: Number, required: true, cast: parseInt} 
};

How to set type on function

Need to be function, first argument need to be number required, second argument need to be string required and function need to return some object
Model.propTypes = {
    setValue: {type: Function, args: [Number, String], return: Object};
}
Need to be function, first argument need to be number required, second argument need to be string and function can not return any value
Model.propTypes = {

    setValue: {type: Function, args: [{type: Number}, {type: String, required: false}]};
}    
Need to be async function, first argument need to be number required, second argument need to be string required, cast arguments in correct types and return some string
Model.propTypes = {
    setValue: {type: AsyncFunction, args: [Number, String], cast: (...args)=> [...args], return: String};
}

How to use

const {ProxyTyper, AsyncFunction} = require("proxy-typer");
class Test {
        constructor(value, number) {
            this.value = value;
            this.number = number;
        }

        setValue(val) {
            this.number = val;
            return this.number;
        }

        async getValue() {
            return this.number.toString();
        }
    }

    Test.propTypes = {
        value: String, // is same like {type: String}
        number: Number, // if prop isn't required then {type: Number, required: false}
        setValue: {type: Function, args: [{type: Number}]}, // if function need to return value then add {return: [Type]}
        getValue: {type: AsyncFunction, return: String}
    };

    const TestModel = ProxyTyper(Test);
    const test = new TestModel("test", 45);
    test.setValue(3);
    test.getValue();

Example

TO DO

  • Add support for static props and static functions
0.0.20

4 years ago

0.0.21

4 years ago

0.0.19

4 years ago

0.0.18

4 years ago

0.0.17

4 years ago

0.0.14

4 years ago

0.0.15

4 years ago

0.0.16

4 years ago

0.0.13

4 years ago

0.0.12

4 years ago

0.0.11

4 years ago

0.0.10

4 years ago

0.0.9

4 years ago

0.0.8

4 years ago

0.0.7

4 years ago

0.0.5

4 years ago

0.0.6

4 years ago

0.0.4

4 years ago

0.0.3

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago