Giter Club home page Giter Club logo

Comments (4)

eventualbuddha avatar eventualbuddha commented on July 26, 2024

Can you provide a minimal example on codesandbox.io or something?

from rosie.

doutatsu avatar doutatsu commented on July 26, 2024

Sorry, didn't get a chance to do that and frankly, don't feel like taking the time to do it. There are some other issues with the library, so instead, I decided to switch to Fishery made by ThoughtBot, which has none of the issues I find with Rosie.

Sorry for not being helpful about this, it's been a great library otherwise

from rosie.

luongs3 avatar luongs3 commented on July 26, 2024

I got the same issue here. If you modify 1 property in an object inside, It will override forever. Eg:

  import BookFactory from '../factories/Book';
  const entry1 = BookFactory.build({ id: '1', attributes: { title: 'Journal' } }); 
  const entry2 = BookFactory.build({ id: '2', });

when build entry1, I override attributes => title.
After that I build entry2, don't pass value for attributes. But entry2.attributes.title still equals 'Journal'.
Already use Factory.resetAll(), but doesn't work.
@eventualbuddha could you check this.

from rosie.

eventualbuddha avatar eventualbuddha commented on July 26, 2024

I tried this, and it seemed to work as expected. Can you provide an example that behaves as you say?

const { Factory } = require("rosie");

const BookFactory = new Factory();
const entry1 = BookFactory.build({ id: "1", attributes: { title: "Journal" } });
const entry2 = BookFactory.build({ id: "2" });

console.log({ entry1, entry2 });
/*
{
  entry1: { id: '1', attributes: { title: 'Journal' } },
  entry2: { id: '2' }
}
*/

from rosie.

Related Issues (20)

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.