I have issue since Aug 2020 and i still don't know how to reproduce,
I am using dfahlander/Dexie.js to use browser indexedDB.
This is sample of how i am using dexie:-
import db from "./db";
import { useState, useEffect } from "react";
import axios…
I have an offline React web app where all data is stored locally in indexedDB. There is no server other than the file hosting for static assets. I am getting to the point where I am starting to look into using redux now but I am trying to understand…
I have a function that fetch a JSON data via window.fetch and put it inside IndexedDB table via db.table.bulkPut(array_of_data).
It takes more than 10 seconds to do that because of large amount of data and it blocks UI and makes UX bad.
I have…
Can any one tell me what happen here when i call count() function of dexie.js:
TypeError: 'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functions or the arguments objects for calls to them
at eval (eval at…
i'm just starting out with Dexie, and I seem to be coming unstuck.
I have a small database (less than 1000 rows), and i'm trying to delete each row one-by-one once I know that the row has been sent to a remote API.
I can also successfully save to…
I am working with React 16.3.2, Redux 4 and Dexie 2.0.3.
when I am going to store data second time it throws this error message.
Error: ConstraintError: Key already exists in the object store.
return dispatch => {
db.table
…
I'm currently using Dexie.js to store data locally. I have 3 different tables, that are joined with each other by using foreign keys. I managed to setup the schema and insert the corresponding data. However, when I want to retrieve the data, I…
I am using Dexie to access IndexedDB on a flash card maker project. I can manipulate the database as expected, and it stays in the database if I close and reopen the browser, but often when I open up the project after not working on it for a few…
In dexie.js, is there a way to obtain all records from a table?
Currently I am using:
dbTable.filter(() => true).then( ... )
It works but I am not sure, whether it's the right way.
I try to update a field named "Type" in indexedDB with Dexie
var db = new Dexie("Commande");
db.version(1).stores({
commande: "++id,idClient,nomClient,idInterne,statut,Type"
});
…
I´m starting with IndexedDB and to not reinvent the wheel I´m using Dexie.js https://github.com/dfahlander/Dexie.js
I created the database, I added data and now I´m creating a generic function that get a CSV and populate the database in anothers…
I'm developing Firefox add-on which has some content scripts to save data to IndexedDB. Same code works perfectly fine in Chrome extension, but not in Firefox extension. On Firefox everything works fine until part where data has to be written to…
Edit. I rewrote the code to be even more minimalist. The below code is a spike test of my issue.
Here is a video of the issue:
https://i.stack.imgur.com/EhItK.jpg
I have two components.
The first component is named TextEditor (and it is a text…
I am building a job portal for the web using React, Redux and Firebase/Firestore. I've completed all the features I needed except one.
I want unregistered-users/job-seekers to be able to:
Bookmark job posts.
Keep the record of applied jobs.
Keep…