Giter Club home page Giter Club logo

Comments (7)

smalluban avatar smalluban commented on September 26, 2024

Passing a function as a second argument was removed in V7 - https://hybrids.js.org/#/migration?id=identifier. Docs should be updated. Good point.

The TS types are fine.

Use { id: () => ... }

from hybrids.

smalluban avatar smalluban commented on September 26, 2024

I was wrong (looking at the docs on my phone). The docs are correct:

store(Model: object, options?: { id?: any | (host) => any, draft?: boolean }): object

Please read docs carefully.

from hybrids.

Qsppl avatar Qsppl commented on September 26, 2024

This use case doesn't work either: https://codepen.io/qsppl/pen/oNOyJwP?editors=1010

const Movie = {
  id: true,
  [store.connect] : {
    // first argument is `string`
    // but we are expecting an `object`
    list: ({ query, year }) => movieApi.search({ query, year }),
  },
};

define({
  tag: "movie-list",
  movies: store([Movie], (host) => ({ query: "", year: 2020 })),
});

from hybrids.

smalluban avatar smalluban commented on September 26, 2024

Of course, it doesn't. The second argument of the store factory is the options object, not a function.

from hybrids.

Qsppl avatar Qsppl commented on September 26, 2024

Sorry, I made a mistake in the example.

I passed an options object to the second argument of the store, where the parameter "id" is a function and I expect the result of executing that function to be passed to [store.connect].list, but the string was passed: "object Object".

Example: https://codepen.io/qsppl/pen/oNOyJwP?editors=1010

const Movie = {
  id: true,
  [store.connect] : {
    // first argument is `string`
    // but we are expecting an `object`
    list: ({ query, year }) => movieApi.search({ query, year }),
  },
};

define({
  tag: "movie-list",
  movies: store([Movie], { id: (host) => ({ query: "", year: 2020 }) }),
});

from hybrids.

smalluban avatar smalluban commented on September 26, 2024

Can you try with 8.2.19? I think when fixing passing numbers I added a string transform, now it's gone.

from hybrids.

Qsppl avatar Qsppl commented on September 26, 2024

Yes, everything works on version 8.2.19. Thank you.

from hybrids.

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.