Giter Site home page Giter Site logo

mchlbrnd / normalizr-decorators Goto Github PK

View Code? Open in Web Editor NEW
11.0 2.0 3.0 46 KB

Experimental TypeScript normalizr decorators for normalization of class and property definitions

License: MIT License

JavaScript 2.59% TypeScript 97.41%
normalizr decorators redux reflect normalize denormalize api json

normalizr-decorators's People

Contributors

edcarroll avatar mchlbrnd avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

normalizr-decorators's Issues

Move decorators to separate file

Move decorators out of index.ts into directory src/schema/.

So for the Entity schema type:

  • src/schema/EntityClassDecorator.ts
  • src/schema/EntityPropertyDecorator.ts

Feedback welcome!

Add normlize API as static and prototype method to decorated class

Extend the decorated class with the normalize API.

@Entity({key: 'users'})
class User {
  public readonly id: number;
  public age: number;
}

// instantiate a User object (ignore id for now)
const user = new User();
// set age property of instantiated user
user.age = 42;

// normalize through prototype method
const normalizedProtoUser1 = user.normalize();  // internally calls normalizr.normalize(this, typeOfThis);
// ... and with optional arg
const normalizedProtoUser2 = user.normalize({age: 43});

// normalize through static method with required data arg
const normalizedStaticUser = User.normalize({id: 1, age: 42});  

Questions:

    • For static method: how to let the API know normaliza input is an array? As seen in #1 the Array type was determined based on input.
    • Would it be nice to have a dedicated method for Array normalization?
// 1) internally determine based on input arg
User.normalize([]);

// 2) specialized method for Array type
User.normalizeArray([]);

Feedback welcome!

bug: Unable to (de)normalize an array of values

Hi there,

Love the project, always a fan of using decorators to avoid extra schema definitions everywhere!

Ran into an issue though, I can't work out how to (de)normalize to and from an array of values. In normalizr you just wrap the schema in [], however I've dug through your source and cannot find a way to do it.

Are you able to please advise? Thanks!

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.