Code Monkey home page Code Monkey logo

Comments (4)

chrisbonifacio avatar chrisbonifacio commented on June 14, 2024

Hi @MeryAmun 👋 thanks for raising this issue.

When the user logs in or out, we typically recommend clearing the local store in case other users login to the same device.

If in your case you can and/or want to leave the data in the local store, please disregard.

In any case, I'm curious how you might be doing things in your app. Can you share some code snippets such as your graphql schema, how you are configuring Amplify and/or DataStore, calling DataStore.query, as well as any error logs?

Another option would be if you could provide specific reproduction steps for us to follow to reproduce the issue internally, or even a small sample app that reproduces the issue.

from amplify-js.

MeryAmun avatar MeryAmun commented on June 14, 2024

hello @chrisbonifacio thank you for your prompt response. Here is the code snippet for datastore query

useEffect(() => {

const removeListener = Hub.listen("datastore", async (capsule) => {
const {
payload: { event, data },
} = capsule;

console.log("DataStore event", event, data);

if (event === "ready") {
  const shops = await DataStore.query(Shop, Predicates.ALL);

  setShop(shops[0]);
  setLoading(false)
}

});
DataStore.start()
return () => {
removeListener();
};
}, []);

Also I wish to mention that I am using the withAuthenticator HOC

from amplify-js.

cwomack avatar cwomack commented on June 14, 2024

@MeryAmun, can you clarify if you're running DataStore.stop() or DataStore.clear() on/before a user logs out? If they are not being called when a user logs out then I don't think a new ready event is going to be emitted from Hub after calling DataStore.start() because it has already started, which might cause the issue you're experiencing.

from amplify-js.

cwomack avatar cwomack commented on June 14, 2024

Closing this issue as we have not heard back from you. If you are still experiencing this, please feel free to reply back and provide any information previously requested and we'd be happy to re-open the issue.

Thank you!

from amplify-js.

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.