forked from tornadocash/classic-ui
fix: idb methods
This commit is contained in:
parent
249518073d
commit
fa3d089e44
@ -73,7 +73,7 @@ class IndexedDB {
|
|||||||
|
|
||||||
async getFromIndex(params) {
|
async getFromIndex(params) {
|
||||||
if (this.isBlocked) {
|
if (this.isBlocked) {
|
||||||
return
|
return undefined
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
@ -114,6 +114,10 @@ class IndexedDB {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async getItem({ storeName, key }) {
|
async getItem({ storeName, key }) {
|
||||||
|
if (this.isBlocked) {
|
||||||
|
return undefined
|
||||||
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const store = this.db.transaction(storeName).objectStore(storeName)
|
const store = this.db.transaction(storeName).objectStore(storeName)
|
||||||
|
|
||||||
@ -125,6 +129,10 @@ class IndexedDB {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async addItem({ storeName, data, key = '' }) {
|
async addItem({ storeName, data, key = '' }) {
|
||||||
|
if (this.isBlocked) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const tx = this.db.transaction(storeName, 'readwrite')
|
const tx = this.db.transaction(storeName, 'readwrite')
|
||||||
const isExist = await tx.objectStore(storeName).get(key)
|
const isExist = await tx.objectStore(storeName).get(key)
|
||||||
@ -138,6 +146,10 @@ class IndexedDB {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async putItem({ storeName, data }) {
|
async putItem({ storeName, data }) {
|
||||||
|
if (this.isBlocked) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const tx = this.db.transaction(storeName, 'readwrite')
|
const tx = this.db.transaction(storeName, 'readwrite')
|
||||||
await tx.objectStore(storeName).put(data)
|
await tx.objectStore(storeName).put(data)
|
||||||
@ -147,6 +159,10 @@ class IndexedDB {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async getAll({ storeName }) {
|
async getAll({ storeName }) {
|
||||||
|
if (this.isBlocked) {
|
||||||
|
return []
|
||||||
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const tx = this.db.transaction(storeName, 'readonly')
|
const tx = this.db.transaction(storeName, 'readonly')
|
||||||
const store = tx.objectStore(storeName)
|
const store = tx.objectStore(storeName)
|
||||||
@ -159,6 +175,10 @@ class IndexedDB {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async clearStore({ storeName, mode = 'readwrite' }) {
|
async clearStore({ storeName, mode = 'readwrite' }) {
|
||||||
|
if (this.isBlocked) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const tx = this.db.transaction(storeName, mode)
|
const tx = this.db.transaction(storeName, mode)
|
||||||
|
|
||||||
@ -169,6 +189,10 @@ class IndexedDB {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async createTransactions({ storeName, data, mode = 'readwrite' }) {
|
async createTransactions({ storeName, data, mode = 'readwrite' }) {
|
||||||
|
if (this.isBlocked) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const tx = this.db.transaction(storeName, mode)
|
const tx = this.db.transaction(storeName, mode)
|
||||||
|
|
||||||
@ -180,6 +204,10 @@ class IndexedDB {
|
|||||||
}
|
}
|
||||||
|
|
||||||
createMultipleTransactions({ storeName, data, index, mode = 'readwrite' }) {
|
createMultipleTransactions({ storeName, data, index, mode = 'readwrite' }) {
|
||||||
|
if (this.isBlocked) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const tx = this.db.transaction(storeName, mode)
|
const tx = this.db.transaction(storeName, mode)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user