From ce2f83e8efd9d29801bb93370ec5955603ba43e3 Mon Sep 17 00:00:00 2001 From: "Mr. Stallion" Date: Fri, 7 Jul 2023 17:23:58 -0700 Subject: [PATCH] minor --- chat/preview/CharacterPreview.vue | 24 ++++++++++++++---------- learn/store/indexed.ts | 11 +++++++++-- 2 files changed, 23 insertions(+), 12 deletions(-) diff --git a/chat/preview/CharacterPreview.vue b/chat/preview/CharacterPreview.vue index 98ab8eb..82b2b78 100644 --- a/chat/preview/CharacterPreview.vue +++ b/chat/preview/CharacterPreview.vue @@ -99,9 +99,9 @@ import MessageView from '../message_view'; interface CustomKinkWithScore extends CustomKink { score: number; + name: string; } - @Component({ components: { 'match-tags': MatchTags, @@ -308,15 +308,19 @@ export default class CharacterPreview extends Vue { updateCustoms(): void { this.customs = _.orderBy( _.map( - _.reject(Object.values(this.character!.character.customs ?? []), (c) => _.isUndefined(c)) as CustomKink[], - (c: CustomKink) => _.assign( - {}, - c, - { - score: kinkMapping[c.choice], - name: c.name.trim().replace(/^\W+/, '').replace(/\W+$/, '') - } - ) + _.reject(Object.values(this.character!.character.customs ?? {}), (c) => _.isUndefined(c)) as CustomKink[], + (c: CustomKink) => { + const val: CustomKinkWithScore = _.assign( + {}, + c, + { + score: kinkMapping[c.choice] as number, + name: c.name.trim().replace(/^\W+/, '').replace(/\W+$/, '') + } + ) as CustomKinkWithScore; + + return val; + } ), ['score', 'name'], ['desc', 'asc'] diff --git a/learn/store/indexed.ts b/learn/store/indexed.ts index a10b836..26a63d3 100644 --- a/learn/store/indexed.ts +++ b/learn/store/indexed.ts @@ -28,9 +28,9 @@ export class IndexedStore implements PermanentIndexedStore { } static async open(dbName: string = 'flist-ascending-profiles'): Promise { - const request = indexedDB.open(dbName, 2); + const request = indexedDB.open(dbName, 3); - request.onupgradeneeded = (event) => { + request.onupgradeneeded = async(event) => { const db = request.result; if (event.oldVersion < 1) { @@ -49,6 +49,13 @@ export class IndexedStore implements PermanentIndexedStore { } ); } + + if (event.oldVersion < 3) { + const store = request.transaction!.objectStore(IndexedStore.STORE_NAME); + const req = store.clear(); + + await promisifyRequest(req); + } }; return new IndexedStore(await promisifyRequest(request), dbName);