mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +00:00
Update DiscoverComponent
This commit is contained in:
parent
f25da930d8
commit
3afef810da
4 changed files with 12 additions and 12 deletions
BIN
public/js/components.js
vendored
BIN
public/js/components.js
vendored
Binary file not shown.
Binary file not shown.
|
@ -1,6 +1,6 @@
|
|||
<template>
|
||||
<div class="container">
|
||||
<section class="mb-5 section-people">
|
||||
<!-- <section class="mb-5 section-people">
|
||||
<p class="lead text-muted font-weight-bold mb-0">Discover People</p>
|
||||
<div class="loader text-center">
|
||||
<div class="lds-ring"><div></div><div></div><div></div><div></div></div>
|
||||
|
@ -21,7 +21,7 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</section> -->
|
||||
<section class="mb-5 section-explore">
|
||||
<p class="lead text-muted font-weight-bold mb-0">Explore</p>
|
||||
<div class="profile-timeline">
|
||||
|
@ -77,16 +77,16 @@ export default {
|
|||
},
|
||||
|
||||
fetchData() {
|
||||
axios.get('/api/v2/discover/people')
|
||||
.then((res) => {
|
||||
let data = res.data;
|
||||
this.people = data.people;
|
||||
// axios.get('/api/v2/discover/people')
|
||||
// .then((res) => {
|
||||
// let data = res.data;
|
||||
// this.people = data.people;
|
||||
|
||||
if(this.people.length > 1) {
|
||||
$('.section-people .loader').hide();
|
||||
$('.section-people .row.d-none').removeClass('d-none');
|
||||
}
|
||||
});
|
||||
// if(this.people.length > 1) {
|
||||
// $('.section-people .loader').hide();
|
||||
// $('.section-people .row.d-none').removeClass('d-none');
|
||||
// }
|
||||
// });
|
||||
|
||||
axios.get('/api/v2/discover/posts')
|
||||
.then((res) => {
|
||||
|
|
|
@ -46,7 +46,7 @@ Route::domain(config('pixelfed.domain.app'))->middleware(['validemail', 'twofact
|
|||
Route::get('notifications', 'InternalApiController@notifications');
|
||||
Route::post('notifications', 'InternalApiController@notificationMarkAllRead');
|
||||
Route::get('discover', 'InternalApiController@discover');
|
||||
Route::get('discover/people', 'InternalApiController@discoverPeople');
|
||||
// Route::get('discover/people', 'InternalApiController@discoverPeople');
|
||||
Route::get('discover/posts', 'InternalApiController@discoverPosts');
|
||||
Route::get('profile/{username}/status/{postid}', 'PublicApiController@status');
|
||||
Route::get('comments/{username}/status/{postId}', 'PublicApiController@statusComments');
|
||||
|
|
Loading…
Reference in a new issue