Commit fee0ea0d by zhousil
parents 90f2bc96 fd83ad63
Showing with 14 additions and 11 deletions
...@@ -42,27 +42,29 @@ class ChatCacheDatabaseController { ...@@ -42,27 +42,29 @@ class ChatCacheDatabaseController {
// eslint-disable-next-line @typescript-eslint/no-this-alias // eslint-disable-next-line @typescript-eslint/no-this-alias
const that = this; const that = this;
const setupDb = () => { const setupDb = () => {
if (that.db) { if (this.setuping) {
try { if (that.db) {
that.buildTables(that.db, that.chatListKey); try {
console.log( that.buildTables(that.db, that.chatListKey);
`build index database for chat completed, 100%` console.log(
); `build index database for chat completed, 100%`
} catch (e) { );
console.error(e); } catch (e) {
console.error(e);
}
} }
this.setuping = false;
} }
this.setuping = false;
resolve(); resolve();
}; };
r.onsuccess = function(e) { r.onsuccess = function(e) {
that.db = (e.target as any).result; that.db = (e.target as any).result;
console.log(`index database init comepleted, 33%`); console.log(`index database init comepleted`);
setupDb(); setupDb();
}; };
r.onupgradeneeded = function(e) { r.onupgradeneeded = function(e) {
that.db = (e.target as any).result; that.db = (e.target as any).result;
console.log(`index database init comepleted, 66%`); console.log(`upgrade database comepleted`);
setupDb(); setupDb();
}; };
r.onerror = function(e) { r.onerror = function(e) {
......
...@@ -47,6 +47,7 @@ export interface Chat { ...@@ -47,6 +47,7 @@ export interface Chat {
chat_id: number; chat_id: number;
catalog: string; catalog: string;
biz_type_id: number; biz_type_id: number;
biz_type_code: string;
business_data?: string; business_data?: string;
detail_name?: string; detail_name?: string;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment