mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-12-24 16:53:17 +00:00
Update Timeline component
This commit is contained in:
parent
ac4a72bc9d
commit
b98c7f849e
1 changed files with 51 additions and 4 deletions
|
@ -213,10 +213,7 @@
|
||||||
</div>
|
</div>
|
||||||
<hr>
|
<hr>
|
||||||
<p class="font-weight-bold">BETA FEATURES</p>
|
<p class="font-weight-bold">BETA FEATURES</p>
|
||||||
<div class="custom-control custom-switch">
|
<div class="alert alert-primary font-weight-bold text-center">Experimental features have been moved to the <a href="/settings/labs">Labs</a> settings page.</div>
|
||||||
<input type="checkbox" class="custom-control-input" id="mode-dark" v-on:click="modeDarkToggle()" v-model="modes.dark">
|
|
||||||
<label class="custom-control-label font-weight-bold" for="mode-dark">Dark Mode</label>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -225,6 +222,31 @@
|
||||||
<notification-card></notification-card>
|
<notification-card></notification-card>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div v-show="suggestions.length && config.ab && config.ab.rec == true" class="mb-4">
|
||||||
|
<div class="card">
|
||||||
|
<div class="card-header bg-white text-muted d-flex justify-content-between align-items-center">
|
||||||
|
<div>Suggestions For You</div>
|
||||||
|
<div class="small text-dark"></div>
|
||||||
|
</div>
|
||||||
|
<div class="card-body pt-0">
|
||||||
|
<div v-for="(rec, index) in suggestions" class="media align-items-center mt-3">
|
||||||
|
<a :href="'/'+rec.username">
|
||||||
|
<img :src="rec.avatar" width="32px" height="32px" class="rounded-circle mr-3">
|
||||||
|
</a>
|
||||||
|
<div class="media-body">
|
||||||
|
<p class="mb-0 font-weight-bold small">
|
||||||
|
<a :href="'/'+rec.username" class="text-decoration-none text-dark">
|
||||||
|
{{rec.username}}
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
<p class="mb-0 small text-muted">{{rec.message}}</p>
|
||||||
|
</div>
|
||||||
|
<a class="font-weight-bold small" href="#" @click.prevent="expRecFollow(rec.id, index)">Follow</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<footer>
|
<footer>
|
||||||
<div class="container pb-5">
|
<div class="container pb-5">
|
||||||
<p class="mb-0 text-uppercase font-weight-bold text-muted small">
|
<p class="mb-0 text-uppercase font-weight-bold text-muted small">
|
||||||
|
@ -431,6 +453,7 @@
|
||||||
this.max_id = Math.min(...ids);
|
this.max_id = Math.min(...ids);
|
||||||
$('.timeline .pagination').removeClass('d-none');
|
$('.timeline .pagination').removeClass('d-none');
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
|
//this.expRec();
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
@ -927,6 +950,30 @@
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
},
|
||||||
|
|
||||||
|
expRec() {
|
||||||
|
if(this.config.ab.rec == false) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
axios.get('/api/local/exp/rec')
|
||||||
|
.then(res => {
|
||||||
|
this.suggestions = res.data;
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
|
expRecFollow(id, index) {
|
||||||
|
if(this.config.ab.rec == false) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
axios.post('/i/follow', {
|
||||||
|
item: id
|
||||||
|
}).then(res => {
|
||||||
|
this.suggestions.splice(index, 1);
|
||||||
|
console.log(res.data);
|
||||||
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue