Coder Social home page Coder Social logo

mrded / waterline-nested Goto Github PK

View Code? Open in Web Editor NEW
0.0 3.0 0.0 10 KB

A simple helper, allows you to do nested creates and updates with Waterline 0.13 (Sails v1.0).

Home Page: https://www.npmjs.com/package/waterline-nested

License: MIT License

JavaScript 100.00%

waterline-nested's Introduction

Waterline Nested

A simple helper, allows you to do nested creates and updates with Waterline 0.13 (Sails v1.0).

Installation

Avaliable methods

  • Nested.create(model, record)
  • Nested.createEach(model, records)
Argument Type Details
1 model String A model name.
2 record Object An Object that is to be created.
2 records Array A list of Objects to be created.

Returns: Promise

Usage

// ./api/models/User.js
// A user may have many pets
module.exports = {
  attributes: {
    firstName: { type: 'string' },
    lastName: { type: 'string' },

    // Add a reference to Pets
    pets: {
      collection: 'pet',
      via: 'owner'
    }
  }
};
// ./api/models/Pet.js
// A pet may only belong to a single user
module.exports = {
  attributes: {
    breed: { type: 'string' },
    type: { type: 'string' },
    name: { type: 'string' },

    // Add a reference to User
    owner: {
      model: 'user'
    }
  }
};

Now that the pets and users know about each other, they can be associated. To do this we can create or update a pet with the user's object inside.

var Nested = require('waterline-nested');

Nested.create('pet', {
  breed: 'labrador',
  type: 'dog',
  name: 'fido',
  owner: { // is User model.
    firstName: {
      type: 'Dmitry'
    },
    lastName: {
      type: 'Demenchuk'
    },
  }
}).exec(function(err) {});

It will automativaly create new user and create a pet associated with that user.

TODOs

  • Add tests.
  • Find a better way to integrate waterline-nested with waterline.

waterline-nested's People

Contributors

mrded avatar

Watchers

 avatar James Cloos avatar  avatar

waterline-nested's Issues

Problem on creating nested array

When the nested association is an array, i get this error:

Could not use the provided where clause. Could not filter by translations: Cannot filter by translations because it is a plural association (which wouldn't make sense).

I think the problem is in that part

49: var output = mainModel.findOrCreate(_.clone(values), _.clone(values)).meta({fetch: true});

i guess it is because he wants to match the criteria with the array.

Hope you can solve that,

And nice, exactly what i needed... after sails omitting the nested update and create....

BR,
Kevin

Combine our efforts

Hi there!

Great work on this. We recently published a module that does something similar, although ours takes it a bit further to providing sails controller methods. We implemented this before we found your repo, but I think our library is a full superset of the functionality provided here. It's also intended to expand in scope to include nested updates, etc. I'd love to get your feedback on our version and see how we can combine our efforts!

https://github.com/smartprocure/sails-nested-blueprint

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.