|
@@ -1,6 +1,8 @@
|
|
|
import {defineStore} from "pinia";
|
|
|
import {readonly} from "vue";
|
|
|
import {ElLoading, ElNotification} from "element-plus";
|
|
|
+import {useThemeStore} from "@/stores/theme";
|
|
|
+
|
|
|
|
|
|
export const useIndexDBStore = defineStore('indexDB', {
|
|
|
state: () => ({
|
|
@@ -15,7 +17,7 @@ export const useIndexDBStore = defineStore('indexDB', {
|
|
|
const loading = ElLoading.service({
|
|
|
lock: true,
|
|
|
text: '数据库加载中',
|
|
|
- background: 'rgba(0, 0, 0, 0.3)',
|
|
|
+ background: useThemeStore().loadingBg,
|
|
|
})
|
|
|
const request: any = window.indexedDB.open('SmartSearch', 1)
|
|
|
request.onerror = (event) => {}
|
|
@@ -37,7 +39,7 @@ export const useIndexDBStore = defineStore('indexDB', {
|
|
|
const loading = ElLoading.service({
|
|
|
lock: true,
|
|
|
text: '查询参数构建中',
|
|
|
- background: 'rgba(0, 0, 0, 0.3)',
|
|
|
+ background: useThemeStore().loadingBg,
|
|
|
})
|
|
|
const timestamp = String(new Date().getTime())
|
|
|
const obj = {
|
|
@@ -56,7 +58,7 @@ export const useIndexDBStore = defineStore('indexDB', {
|
|
|
const loading = ElLoading.service({
|
|
|
lock: true,
|
|
|
text: '查询参数解析中',
|
|
|
- background: 'rgba(0, 0, 0, 0.3)',
|
|
|
+ background: useThemeStore().loadingBg,
|
|
|
})
|
|
|
const re = this.DB.transaction(['timestamp']).objectStore('timestamp').get(timestamp)
|
|
|
re.onsuccess = (e: any) => {
|
|
@@ -83,7 +85,7 @@ export const useIndexDBStore = defineStore('indexDB', {
|
|
|
const loading = ElLoading.service({
|
|
|
lock: true,
|
|
|
text: '数据库创建中',
|
|
|
- background: 'rgba(0, 0, 0, 0.3)',
|
|
|
+ background: useThemeStore().loadingBg,
|
|
|
})
|
|
|
if (this.DB.objectStoreNames.contains('timestamp')) {
|
|
|
const oldRe = this.DB.transaction(['timestamp'])?.objectStore('timestamp')
|
|
@@ -93,12 +95,12 @@ export const useIndexDBStore = defineStore('indexDB', {
|
|
|
this.DB.transaction(['timestamp'], 'readwrite').objectStore('timestamp').delete(cursor.primaryKey)
|
|
|
cursor.continue();
|
|
|
} else {
|
|
|
- resolve()
|
|
|
+ resolve('')
|
|
|
loading.close()
|
|
|
}
|
|
|
}
|
|
|
} else {
|
|
|
- resolve()
|
|
|
+ resolve('')
|
|
|
loading.close()
|
|
|
}
|
|
|
})
|