Coder Social home page Coder Social logo

angular2-jsonapi-src's People

Contributors

saschanowak avatar sievert avatar stephanschuler avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

angular2-jsonapi-src's Issues

Expose hasMany relations frozen as long as Object.observe isn't ready

The current convenient getter to a hasMany relation just fetches all related objects from the unit of work and returns an array which isn't bound to the source as soon as it is returned.
This means if consumer code adjusts that array, no exception is triggered, the array provided to the consumer code gets modified but those changes don't result in the payload or unit of work data being changed.

Reproduce:

let group = groupRepository.findOneByIdentifier(groupIdentifier);
console.log(group.members);

let newMember = memberRepository.create();
let members = group.members;
members.push(newMember);
group.members.push(newMember);

console.log(group.members);

The code above doesn't actually change the members of this group.

This code does change to members:

let group = groupRepository.findOneByIdentifier(groupIdentifier);
let newMember = memberRepository.create();
group.members = [...group.members, newMember];
console.log(group.members);

There is Object.observer() to make the first snippet working.
There is Object.freeze() to make the first snippet throw exceptions.

Try to find single resource in unit of work

Currently we are fetching the single record when we already have it in the unit of work.
TODO:

  • In the ResourceProxyRepository ->findByIdentifier check if we have the item in the unit of work and return it as Observable
  • If we have includes check if there is more then one include and only fetch the includes and return the item. Otherwise fetch the hole item.
  • Add already loaded includes to the meta data, so we can check if we need to fetch them
  • How do we handle items in the unit of work when we have sparse fields

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.