-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
EDU-13381: FastStore SDK - Cart overview #1678
base: main
Are you sure you want to change the base?
Conversation
New SDK documentation
Preview LinksOpen this URL to set up the portal with this branch changes. You can now access the edited pages with the following URLs:
|
Navigation Preview LinkNo changes detected in the navigation.json file |
Doc reviewed by Localization
|
||
## Cart data storage | ||
|
||
Cart data is saved in the browser's [IndexedDB](https://developer.mozilla.org/en-US/docs/Web/API/IndexedDB_API), ensuring that users' carts remain saved even when they close the browser. The data is structured as follows: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[style-check] reported by reviewdog 🐶
❌ Found "close"
Avoid unncessary prepositions.
💡 Suggestion - Replace with "close".
✍ Check the Education Styleguide for more information.
|
||
## Pure mode | ||
|
||
The Pure mode stores cart data locally in the browser. This allows users to add or remove items and keep their carts even if they close the browser. However, it can't validate items on the server side. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[style-check] reported by reviewdog 🐶
❌ Found "close"
Avoid unncessary prepositions.
💡 Suggestion - Replace with "close".
✍ Check the Education Styleguide for more information.
Types of changes