Merge pull request #1278 from pixelfed/frontend-ui-refactor

Frontend ui refactor
This commit is contained in:
daniel 2019-05-07 00:01:30 -06:00 committed by GitHub
commit 92dc035e42
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 22 additions and 7 deletions

BIN
public/js/profile.js vendored

Binary file not shown.

BIN
public/js/timeline.js vendored

Binary file not shown.

Binary file not shown.

View file

@ -516,6 +516,7 @@ export default {
],
data() {
return {
ids: [],
profile: {},
user: {},
timeline: [],
@ -568,6 +569,7 @@ export default {
.then(res => {
let data = res.data;
let ids = data.map(status => status.id);
this.ids = ids;
this.min_id = Math.max(...ids);
this.max_id = Math.min(...ids);
this.modalStatus = _.first(res.data);
@ -601,9 +603,15 @@ export default {
}).then(res => {
if (res.data.length && this.loading == false) {
let data = res.data;
let ids = data.map(status => status.id);
this.max_id = Math.min(...ids);
this.timeline.push(...data);
let self = this;
data.forEach(d => {
if(self.ids.indexOf(d.id) == -1) {
self.timeline.push(d);
self.ids.push(d.id);
}
});
this.min_id = Math.max(...this.ids);
this.max_id = Math.min(...this.ids);
$state.loaded();
this.loading = false;
} else {

View file

@ -430,6 +430,7 @@
props: ['scope'],
data() {
return {
ids: [],
config: {},
page: 2,
feed: [],
@ -544,6 +545,7 @@
let data = res.data;
this.feed.push(...data);
let ids = data.map(status => status.id);
this.ids = ids;
this.min_id = Math.max(...ids);
this.max_id = Math.min(...ids);
$('.timeline .pagination').removeClass('d-none');
@ -579,10 +581,15 @@
}).then(res => {
if (res.data.length && this.loading == false) {
let data = res.data;
this.feed.push(...data);
let ids = data.map(status => status.id);
this.min_id = Math.max(...ids);
this.max_id = Math.min(...ids);
let self = this;
data.forEach(d => {
if(self.ids.indexOf(d.id) == -1) {
self.feed.push(d);
self.ids.push(d.id);
}
});
this.min_id = Math.max(...this.ids);
this.max_id = Math.min(...this.ids);
this.page += 1;
$state.loaded();
this.loading = false;