Update components

This commit is contained in:
Daniel Supernault 2021-08-31 01:30:21 -06:00
parent e5e7839736
commit 942fdf5486
No known key found for this signature in database
GPG key ID: 0DEF1C662C9033F7
10 changed files with 267 additions and 159 deletions

View file

@ -715,7 +715,7 @@
max_id: 0,
loading: true,
owner: false,
layout: this.profileLayout,
layout: 'metro',
mode: 'grid',
modes: ['grid', 'collections', 'bookmarks', 'archives'],
modalStatus: false,
@ -748,7 +748,6 @@
}
},
beforeMount() {
this.fetchRelationships();
this.fetchProfile();
let u = new URLSearchParams(window.location.search);
let forceMetro = localStorage.getItem('pf_metro_ui.exp.forceMetro') == 'true';
@ -818,12 +817,7 @@
this.user = res.data;
window._sharedData.curUser = res.data;
window.App.util.navatar();
if(res.data.id == this.profileId || this.relationship.following == true) {
axios.get('/api/stories/v0/exists/' + this.profileId)
.then(res => {
this.hasStory = res.data == true;
})
}
this.fetchRelationships();
});
}
},
@ -838,7 +832,6 @@
this.profile = res.data;
}).then(res => {
this.fetchPosts();
});
},
@ -1063,6 +1056,12 @@
this.warning = true;
}
}
if(this.user.id == this.profileId || this.relationship.following == true) {
axios.get('/api/web/stories/v1/exists/' + this.profileId)
.then(res => {
this.hasStory = (res.data == true);
})
}
});
},
@ -1380,7 +1379,7 @@
},
storyRedirect() {
window.location.href = '/stories/' + this.profileUsername;
window.location.href = '/stories/' + this.profileUsername + '?t=4';
},
followingModalSearchHandler() {