mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-26 08:13:16 +00:00
commit
1ede2ef8c1
4 changed files with 62 additions and 3 deletions
|
@ -16,6 +16,7 @@
|
||||||
- Updated StoryController, fix expiration time bug. ([39e57f95](https://github.com/pixelfed/pixelfed/commit/39e57f95))
|
- Updated StoryController, fix expiration time bug. ([39e57f95](https://github.com/pixelfed/pixelfed/commit/39e57f95))
|
||||||
- Updated Profile component, fix remote urls. ([6e56dbed](https://github.com/pixelfed/pixelfed/commit/6e56dbed))
|
- Updated Profile component, fix remote urls. ([6e56dbed](https://github.com/pixelfed/pixelfed/commit/6e56dbed))
|
||||||
- Updated verify email screen, add contact admin link. ([f37952d6](https://github.com/pixelfed/pixelfed/commit/f37952d6))
|
- Updated verify email screen, add contact admin link. ([f37952d6](https://github.com/pixelfed/pixelfed/commit/f37952d6))
|
||||||
|
- Updated RemoteProfile component, implement pagination. ([02b04a4b](https://github.com/pixelfed/pixelfed/commit/02b04a4b))
|
||||||
- ([](https://github.com/pixelfed/pixelfed/commit/))
|
- ([](https://github.com/pixelfed/pixelfed/commit/))
|
||||||
|
|
||||||
## [v0.11.0 (2021-06-01)](https://github.com/pixelfed/pixelfed/compare/v0.10.10...v0.11.0)
|
## [v0.11.0 (2021-06-01)](https://github.com/pixelfed/pixelfed/compare/v0.10.10...v0.11.0)
|
||||||
|
|
BIN
public/js/rempro.js
vendored
BIN
public/js/rempro.js
vendored
Binary file not shown.
Binary file not shown.
|
@ -125,7 +125,16 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div v-else class="col-12 mt-4">
|
<div v-else class="col-12 mt-4">
|
||||||
<p class="text-center mb-0 px-0"><button class="btn btn-outline-primary btn-block font-weight-bold">Load More</button></p>
|
<p v-if="showLoadMore" class="text-center mb-0 px-0">
|
||||||
|
<button @click="loadMorePosts()" class="btn btn-outline-primary btn-block font-weight-bold">
|
||||||
|
<span v-if="!loadingMore">Load More</span>
|
||||||
|
<span v-else>
|
||||||
|
<div class="spinner-border spinner-border-sm" role="status">
|
||||||
|
<span class="sr-only">Loading...</span>
|
||||||
|
</div>
|
||||||
|
</span>
|
||||||
|
</button>
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -193,6 +202,7 @@
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
id: [],
|
id: [],
|
||||||
|
ids: [],
|
||||||
user: false,
|
user: false,
|
||||||
profile: {},
|
profile: {},
|
||||||
feed: [],
|
feed: [],
|
||||||
|
@ -206,7 +216,9 @@
|
||||||
ctxMenuStatus: false,
|
ctxMenuStatus: false,
|
||||||
ctxMenuRelationship: false,
|
ctxMenuRelationship: false,
|
||||||
fetchingRemotePosts: false,
|
fetchingRemotePosts: false,
|
||||||
showMutualFollowers: false
|
showMutualFollowers: false,
|
||||||
|
loadingMore: false,
|
||||||
|
showLoadMore: true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -277,6 +289,52 @@
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
loadMorePosts() {
|
||||||
|
this.loadingMore = true;
|
||||||
|
let apiUrl = '/api/pixelfed/v1/accounts/' + this.profileId + '/statuses';
|
||||||
|
axios.get(apiUrl, {
|
||||||
|
params: {
|
||||||
|
only_media: true,
|
||||||
|
max_id: this.max_id,
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.then(res => {
|
||||||
|
let data = res.data
|
||||||
|
.filter(status => this.ids.indexOf(status.id) === -1)
|
||||||
|
.filter(status => status.media_attachments.length > 0)
|
||||||
|
.map(status => {
|
||||||
|
return {
|
||||||
|
id: status.id,
|
||||||
|
caption: {
|
||||||
|
text: status.content_text,
|
||||||
|
html: status.content
|
||||||
|
},
|
||||||
|
count: {
|
||||||
|
likes: status.favourites_count,
|
||||||
|
shares: status.reblogs_count,
|
||||||
|
comments: status.reply_count
|
||||||
|
},
|
||||||
|
thumb: status.media_attachments[0].url,
|
||||||
|
media: status.media_attachments,
|
||||||
|
timestamp: status.created_at,
|
||||||
|
type: status.pf_type,
|
||||||
|
url: status.url,
|
||||||
|
sensitive: status.sensitive,
|
||||||
|
cw: status.sensitive,
|
||||||
|
spoiler_text: status.spoiler_text
|
||||||
|
}
|
||||||
|
});
|
||||||
|
let ids = data.map(status => status.id);
|
||||||
|
this.ids.push(...ids);
|
||||||
|
this.max_id = Math.min(...ids);
|
||||||
|
this.feed.push(...data);
|
||||||
|
this.loadingMore = false;
|
||||||
|
}).catch(err => {
|
||||||
|
this.loadingMore = false;
|
||||||
|
this.showLoadMore = false;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
fetchRelationships() {
|
fetchRelationships() {
|
||||||
if(document.querySelectorAll('body')[0].classList.contains('loggedIn') == false) {
|
if(document.querySelectorAll('body')[0].classList.contains('loggedIn') == false) {
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue