Reset the whole recycler

pull/37/head
Varun Patil 2022-09-13 00:00:49 -07:00
parent c0ea836510
commit 361b6660b0
4 changed files with 24 additions and 26 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -23,7 +23,6 @@
:src="getSrc()"
:key="data.fileid"
ref="image"
@click="click"
@error="error"
@load="load"
@ -53,7 +52,6 @@ export default class Photo extends Mixins(GlobalMixin) {
@Prop() data: IPhoto;
@Prop() rowHeight: number;
@Prop() day: IDay;
@Prop() state: number;
@Emit('reprocess') emitReprocess(remIds: Set<number>, updatedDays: Set<IDay>) {}
@Emit('select') emitSelect(data: IPhoto) {}
@ -78,13 +76,6 @@ export default class Photo extends Mixins(GlobalMixin) {
return getPreviewUrl(this.data.fileid, this.data.etag);
}
mounted() {
// Check if already loaded
if ((<HTMLImageElement>this.$refs.image).complete) {
this.load();
}
}
/** Image loaded successfully */
load() {
this.data.flag |= this.c.FLAG_LOADED;

View File

@ -2,6 +2,7 @@
<div class="container" ref="container" :class="{ 'icon-loading': loading }">
<!-- Main recycler view for rows -->
<RecycleScroller
:key="state"
ref="recycler"
class="recycler"
:items="list"
@ -22,15 +23,12 @@
<div class="photo" v-for="photo of item.photos" :key="photo.fileid">
<Folder v-if="photo.isfolder"
:key="state"
:data="photo"
:rowHeight="rowHeight" />
<Photo v-else
:key="state"
:data="photo"
:rowHeight="rowHeight"
:day="item.day"
:state="state"
@select="selectPhoto"
@reprocess="deleteFromViewWithAnimation"
@clickImg="clickPhoto" />
@ -187,26 +185,35 @@ export default class Timeline extends Mixins(GlobalMixin) {
private state = Math.random();
mounted() {
this.handleResize();
this.fetchDays();
// Timeline recycler init
(this.$refs.recycler as any).$el.addEventListener('scroll', this.scrollPositionChange, false);
this.scrollPositionChange();
this.createState();
}
@Watch('$route')
routeChange(from: any, to: any) {
this.resetState();
this.fetchDays();
};
async routeChange(from: any, to: any) {
await this.resetState();
await this.createState();
}
beforeDestroy() {
this.resetState();
}
/** Create new state */
async createState() {
// Wait for one tick before doing anything
await this.$nextTick();
// Get data
this.fetchDays();
// Timeline recycler init
this.handleResize();
(this.$refs.recycler as any).$el.addEventListener('scroll', this.scrollPositionChange, false);
this.scrollPositionChange();
}
/** Reset all state */
resetState() {
async resetState() {
this.clearSelection();
this.loading = true;
this.list = [];