metadata: stop unnecessry reflows

Signed-off-by: Varun Patil <radialapps@gmail.com>
pull/767/head
Varun Patil 2023-08-03 14:50:48 -07:00
parent 488c67d216
commit 268268da40
2 changed files with 25 additions and 14 deletions

View File

@ -1,5 +1,8 @@
<template> <template>
<div class="outer" v-if="fileid"> <div class="loading-icon fill-block" v-if="loading">
<XLoadingIcon />
</div>
<div class="outer" v-else-if="fileid">
<div v-if="people.length" class="people"> <div v-if="people.length" class="people">
<div class="section-title">{{ t('memories', 'People') }}</div> <div class="section-title">{{ t('memories', 'People') }}</div>
<div class="container" v-for="face of people" :key="face.cluster_id"> <div class="container" v-for="face of people" :key="face.cluster_id">
@ -52,9 +55,8 @@
<iframe class="fill-block" :src="mapUrl" /> <iframe class="fill-block" :src="mapUrl" />
</div> </div>
</div> </div>
<div v-else>
<div class="loading-icon fill-block" v-else> {{ t('memries', 'Failed to load metadata') }}
<XLoadingIcon />
</div> </div>
</template> </template>
@ -118,6 +120,7 @@ export default defineComponent({
albums: [] as IAlbum[], albums: [] as IAlbum[],
people: [] as IFace[], people: [] as IFace[],
loading: 0,
state: 0, state: 0,
}), }),
@ -351,17 +354,17 @@ export default defineComponent({
}, },
methods: { methods: {
async update(photo: number | IPhoto): Promise<IImageInfo> { async update(photo: number | IPhoto): Promise<IImageInfo | null> {
this.state = Math.random(); this.state = Math.random();
this.loading = 0;
this.fileid = null; this.fileid = null;
this.exif = {}; this.exif = {};
this.albums = []; this.albums = [];
this.people = []; this.people = [];
const state = this.state;
const url = API.Q(utils.getImageInfoUrl(photo), { tags: 1 }); const url = API.Q(utils.getImageInfoUrl(photo), { tags: 1 });
const res = await axios.get<IImageInfo>(url); const res = await this.guardState(axios.get<IImageInfo>(url));
if (state !== this.state) return res.data; if (!res) return null;
this.fileid = res.data.fileid; this.fileid = res.data.fileid;
this.filename = res.data.basename; this.filename = res.data.basename;
@ -379,19 +382,26 @@ export default defineComponent({
async refreshAlbums(): Promise<void> { async refreshAlbums(): Promise<void> {
if (!this.config.albums_enabled) return; if (!this.config.albums_enabled) return;
this.albums = await this.guardState(dav.getAlbums(1, this.fileid!)); this.albums = (await this.guardState(dav.getAlbums(1, this.fileid!))) ?? this.albums;
}, },
async refreshPeople(): Promise<void> { async refreshPeople(): Promise<void> {
if (!this.config.recognize_enabled) return; if (!this.config.recognize_enabled) return;
this.people = await this.guardState(dav.getFaceList('recognize', this.fileid!)); this.people = (await this.guardState(dav.getFaceList('recognize', this.fileid!))) ?? this.people;
}, },
async guardState<T>(promise: Promise<T>): Promise<T> { async guardState<T>(promise: Promise<T>): Promise<T | null> {
const state = this.state; const state = this.state;
const res = await promise; try {
if (state === this.state) return res; this.loading++;
throw new Error('state changed'); const res = await promise;
if (state === this.state) return res;
return null;
} catch (err) {
throw err;
} finally {
if (state === this.state) this.loading--;
}
}, },
handleFileUpdated({ fileid }: { fileid: number }) { handleFileUpdated({ fileid }: { fileid: number }) {

View File

@ -103,6 +103,7 @@ export default defineComponent({
// Update metadata compoenent // Update metadata compoenent
const m = <any>this.$refs.metadata; const m = <any>this.$refs.metadata;
const info: IImageInfo = await m?.update(photo); const info: IImageInfo = await m?.update(photo);
if (!info) return; // failure or state change
this.basename = info.basename; this.basename = info.basename;
this.handleOpen(); this.handleOpen();
} }