mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +00:00
Update hashtag component
This commit is contained in:
parent
828a456f36
commit
cee979eda8
1 changed files with 3 additions and 10 deletions
|
@ -202,16 +202,12 @@
|
||||||
if(res.data && res.data.length) {
|
if(res.data && res.data.length) {
|
||||||
this.feed = res.data;
|
this.feed = res.data;
|
||||||
this.maxId = res.data[res.data.length - 1].id;
|
this.maxId = res.data[res.data.length - 1].id;
|
||||||
return true;
|
this.canLoadMore = true;
|
||||||
} else {
|
} else {
|
||||||
this.feedLoaded = true;
|
this.feedLoaded = true;
|
||||||
this.isLoaded = true;
|
this.isLoaded = true;
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.then(res => {
|
|
||||||
this.canLoadMore = res;
|
|
||||||
})
|
|
||||||
.finally(() => {
|
.finally(() => {
|
||||||
this.feedLoaded = true;
|
this.feedLoaded = true;
|
||||||
this.isLoaded = true;
|
this.isLoaded = true;
|
||||||
|
@ -242,14 +238,11 @@
|
||||||
if(res.data && res.data.length) {
|
if(res.data && res.data.length) {
|
||||||
this.feed.push(...res.data);
|
this.feed.push(...res.data);
|
||||||
this.maxId = res.data[res.data.length - 1].id;
|
this.maxId = res.data[res.data.length - 1].id;
|
||||||
return true;
|
this.canLoadMore = true;
|
||||||
} else {
|
} else {
|
||||||
return false;
|
this.canLoadMore = false;
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.then(res => {
|
|
||||||
this.canLoadMore = res;
|
|
||||||
})
|
|
||||||
.finally(() => {
|
.finally(() => {
|
||||||
this.isIntersecting = false;
|
this.isIntersecting = false;
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue