Code Monkey home page Code Monkey logo

Comments (2)

Qsppl avatar Qsppl commented on June 8, 2024 1

Thank you, I will clear the cache when adding/removing a model.

This solution works:

async function submit(host, event) {
  event.preventDefault();

  await store.submit(host.draft);
  // clear cache for enumerable descriptors by this store
  store.clear([Model]);

  if (!host.model) {
    host.draft = null;
  } else {
    host.editMode = false;
  }
}

from hybrids.

smalluban avatar smalluban commented on June 8, 2024

It might be a not very well-documented feature (it is still in docs) -

Here you have a slightly simplified version of your example (I think you don't need a bunch of logic in my-model and store definition) - https://stackblitz.com/edit/hybrids-store-ui-form-example-71ugrh?file=src%2Findex.js,src%2Fcomponent.js,src%2Fmodel.js%3AL22

Essentially, you must add loose: true to your [store.connect] definition, as the docs say:

By default, it is set to false, so updating model instances will not change items’ order or placement in the array. The typical use case to turn it on is when you have a paginated list, and updating or creating a model instance might affect the order or content of the list.

https://hybrids.js.org/#/store/storage?id=loose

For the "memory-based" models (without the definition) this option is true. It would be a breaking change to switch it to true for custom storage, but I would re-think it. The case for setting it to false is that, otherwise, any change to any instance of the model will invalidate every list call - it might cause a cascade of fetches for pages of data. You can still control that then manually by calling store.clear(listModelInstance).

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.