albums: update view on deselection

Signed-off-by: Varun Patil <radialapps@gmail.com>
pull/803/head
Varun Patil 2023-08-28 16:25:37 -07:00
parent c196761c5e
commit fce0a23277
1 changed files with 10 additions and 0 deletions

View File

@ -69,6 +69,10 @@ export default defineComponent({
this.$emit('close'); this.$emit('close');
}, },
routeIsAlbum(album: IAlbum) {
return this.routeIsAlbums && this.$route.params.user === album.user && this.$route.params.name === album.name;
},
async update(selection: IAlbum[], deselection: IAlbum[]) { async update(selection: IAlbum[], deselection: IAlbum[]) {
if (this.opsTotal) return; if (this.opsTotal) return;
@ -101,6 +105,12 @@ export default defineComponent({
for (const album of deselection) { for (const album of deselection) {
for await (const fids of dav.removeFromAlbum(album.user, album.name, this.photos)) { for await (const fids of dav.removeFromAlbum(album.user, album.name, this.photos)) {
processFileIds(fids); processFileIds(fids);
// Update current view if required
if (this.routeIsAlbum(album)) {
const photos = this.photos.filter((p) => fids.includes(p.fileid));
utils.bus.emit('memories:timeline:deleted', photos);
}
} }
} }