mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-18 20:41:27 +00:00
Merge pull request #590 from pixelfed/frontend-ui-refactor
Fixes #581 #584 #566
This commit is contained in:
commit
8e21c8f54a
4 changed files with 91 additions and 139 deletions
BIN
public/js/components.js
vendored
BIN
public/js/components.js
vendored
Binary file not shown.
Binary file not shown.
|
@ -16,7 +16,7 @@
|
||||||
<div class="lds-ring"><div></div><div></div><div></div><div></div></div>
|
<div class="lds-ring"><div></div><div></div><div></div><div></div></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="postCommentsContainer d-none">
|
<div class="postCommentsContainer d-none">
|
||||||
<p class="mb-1 text-center load-more-link"><a href="#" class="text-muted" v-on:click="loadMore">Load more comments</a></p>
|
<p class="mb-1 text-center load-more-link d-none"><a href="#" class="text-muted" v-on:click="loadMore">Load more comments</a></p>
|
||||||
<div class="comments" data-min-id="0" data-max-id="0">
|
<div class="comments" data-min-id="0" data-max-id="0">
|
||||||
<p class="mb-1" v-for="(comment, index) in results" :data-id="comment.id" v-bind:key="comment.id">
|
<p class="mb-1" v-for="(comment, index) in results" :data-id="comment.id" v-bind:key="comment.id">
|
||||||
<span class="d-flex justify-content-between align-items-center">
|
<span class="d-flex justify-content-between align-items-center">
|
||||||
|
@ -27,7 +27,7 @@
|
||||||
<span class="comment-text" v-html="comment.content" style="overflow: hidden;"></span>
|
<span class="comment-text" v-html="comment.content" style="overflow: hidden;"></span>
|
||||||
</div>
|
</div>
|
||||||
</span>
|
</span>
|
||||||
<b-dropdown :id="comment.uri" variant="link" no-caret class="float-right">
|
<b-dropdown :id="comment.uri" variant="link" no-caret right class="float-right">
|
||||||
<template slot="button-content">
|
<template slot="button-content">
|
||||||
<i class="fas fa-ellipsis-v text-muted"></i><span class="sr-only">Options</span>
|
<i class="fas fa-ellipsis-v text-muted"></i><span class="sr-only">Options</span>
|
||||||
</template>
|
</template>
|
||||||
|
@ -66,7 +66,7 @@ export default {
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
embed(e) {
|
embed(e) {
|
||||||
pixelfed.embed.build(e);
|
//pixelfed.embed.build(e);
|
||||||
},
|
},
|
||||||
deleteComment(id, i) {
|
deleteComment(id, i) {
|
||||||
axios.post('/i/delete', {
|
axios.post('/i/delete', {
|
||||||
|
@ -95,6 +95,9 @@ export default {
|
||||||
let self = this;
|
let self = this;
|
||||||
this.results = response.data.data;
|
this.results = response.data.data;
|
||||||
this.pagination = response.data.meta.pagination;
|
this.pagination = response.data.meta.pagination;
|
||||||
|
if(this.results.length > 0) {
|
||||||
|
$('.load-more-link').removeClass('d-none');
|
||||||
|
}
|
||||||
$('.postCommentsLoader').addClass('d-none');
|
$('.postCommentsLoader').addClass('d-none');
|
||||||
$('.postCommentsContainer').removeClass('d-none');
|
$('.postCommentsContainer').removeClass('d-none');
|
||||||
}).catch(error => {
|
}).catch(error => {
|
||||||
|
@ -103,7 +106,6 @@ export default {
|
||||||
.attr('style','width:100%')
|
.attr('style','width:100%')
|
||||||
.addClass('pt-4 font-weight-bold text-muted')
|
.addClass('pt-4 font-weight-bold text-muted')
|
||||||
.text('An error occured, cannot fetch comments. Please try again later.');
|
.text('An error occured, cannot fetch comments. Please try again later.');
|
||||||
console.log(error);
|
|
||||||
} else {
|
} else {
|
||||||
switch(error.response.status) {
|
switch(error.response.status) {
|
||||||
case 401:
|
case 401:
|
||||||
|
@ -120,7 +122,6 @@ export default {
|
||||||
.text('An error occured, cannot fetch comments. Please try again later.');
|
.text('An error occured, cannot fetch comments. Please try again later.');
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
console.log(error.response.status);
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,113 +1,5 @@
|
||||||
<style>
|
<style>
|
||||||
.carousel {
|
|
||||||
position: relative;
|
|
||||||
width: 600px;
|
|
||||||
height: 400px;
|
|
||||||
overflow: hidden;
|
|
||||||
margin: 0 auto;
|
|
||||||
}
|
|
||||||
.carousel:hover .slide:after,
|
|
||||||
.carousel:hover .counter,
|
|
||||||
.carousel:hover .slide:before {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
.slide {
|
|
||||||
float: right;
|
|
||||||
position: absolute;
|
|
||||||
z-index: 1;
|
|
||||||
width: 600px;
|
|
||||||
height: 400px;
|
|
||||||
background-color: #fff;
|
|
||||||
text-align: center;
|
|
||||||
transition: opacity 0.4s;
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
.slide:before {
|
|
||||||
content: attr(annot);
|
|
||||||
display: block;
|
|
||||||
position: absolute;
|
|
||||||
left: 20px;
|
|
||||||
bottom: 20px;
|
|
||||||
color: #fff;
|
|
||||||
font-size: 14px;
|
|
||||||
font-weight: bold;
|
|
||||||
z-index: 12;
|
|
||||||
opacity: 0;
|
|
||||||
transition: opacity 0.3s;
|
|
||||||
}
|
|
||||||
.slide:after {
|
|
||||||
content: attr(slide);
|
|
||||||
display: block;
|
|
||||||
position: absolute;
|
|
||||||
bottom: 0;
|
|
||||||
transition: opacity 0.3s;
|
|
||||||
width: 100%;
|
|
||||||
height: 80px;
|
|
||||||
opacity: 0;
|
|
||||||
background-image: linear-gradient(transparent, rgba(0,0,0,0.2));
|
|
||||||
text-align: left;
|
|
||||||
text-indent: 549px;
|
|
||||||
line-height: 101px;
|
|
||||||
font-size: 13px;
|
|
||||||
color: #fff;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
.counter {
|
|
||||||
position: absolute;
|
|
||||||
bottom: 20px;
|
|
||||||
right: 2px;
|
|
||||||
height: 20px;
|
|
||||||
width: 60px;
|
|
||||||
z-index: 2;
|
|
||||||
text-align: center;
|
|
||||||
color: #fff;
|
|
||||||
line-height: 21px;
|
|
||||||
font-size: 13px;
|
|
||||||
font-weight: bold;
|
|
||||||
opacity: 0;
|
|
||||||
transition: opacity 0.3s;
|
|
||||||
}
|
|
||||||
.carousel-slide {
|
|
||||||
top: 0;
|
|
||||||
right: 0;
|
|
||||||
float: right;
|
|
||||||
position: absolute;
|
|
||||||
margin-top: 0;
|
|
||||||
z-index: 9;
|
|
||||||
height: 100%;
|
|
||||||
width: 100%;
|
|
||||||
opacity: 0;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
.carousel-slide:checked {
|
|
||||||
z-index: 8;
|
|
||||||
}
|
|
||||||
.carousel-slide:checked + .slide {
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
.carousel-slide:checked:nth-child(1):checked {
|
|
||||||
z-index: 9;
|
|
||||||
}
|
|
||||||
.carousel-slide:nth-child(1):checked {
|
|
||||||
float: left;
|
|
||||||
z-index: 9;
|
|
||||||
}
|
|
||||||
.carousel-slide:nth-child(1):checked + .slide {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
.carousel-slide:nth-child(1):checked ~ .carousel-slide {
|
|
||||||
float: left;
|
|
||||||
z-index: 8;
|
|
||||||
}
|
|
||||||
.carousel-slide:nth-child(1):checked ~ .carousel-slide + .slide {
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
.carousel-slide:nth-child(1):checked ~ .carousel-slide:checked {
|
|
||||||
z-index: 9;
|
|
||||||
}
|
|
||||||
.carousel-slide:nth-child(1):checked ~ .carousel-slide:checked + .slide {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
<template>
|
<template>
|
||||||
<div class="postComponent">
|
<div class="postComponent">
|
||||||
|
@ -213,7 +105,7 @@
|
||||||
<h3 class="status-heart m-0 far fa-heart text-dark"></h3>
|
<h3 class="status-heart m-0 far fa-heart text-dark"></h3>
|
||||||
</button>
|
</button>
|
||||||
</form>
|
</form>
|
||||||
<h3 class="far fa-comment pr-3 m-0" title="Comment"></h3>
|
<h3 class="far fa-comment pr-3 m-0" title="Comment" v-on:click="commentFocus"></h3>
|
||||||
<form class="d-inline-flex share-form pr-3" method="post" action="/i/share" style="display: inline;" data-id="11todo" data-action="share" data-count="status.favourite_count">
|
<form class="d-inline-flex share-form pr-3" method="post" action="/i/share" style="display: inline;" data-id="11todo" data-action="share" data-count="status.favourite_count">
|
||||||
<input type="hidden" name="_token" value="">
|
<input type="hidden" name="_token" value="">
|
||||||
<input type="hidden" name="item" :value="statusId">
|
<input type="hidden" name="item" :value="statusId">
|
||||||
|
@ -225,7 +117,7 @@
|
||||||
<span class="float-right">
|
<span class="float-right">
|
||||||
<form class="d-inline-flex" method="post" action="/i/bookmark" style="display: inline;" data-id="#" data-action="bookmark" onclick="this.preventDefault()">
|
<form class="d-inline-flex" method="post" action="/i/bookmark" style="display: inline;" data-id="#" data-action="bookmark" onclick="this.preventDefault()">
|
||||||
<input type="hidden" name="_token" value="">
|
<input type="hidden" name="_token" value="">
|
||||||
<input type="hidden" name="item" value="#">
|
<input type="hidden" name="item" :value="statusId">
|
||||||
<button class="btn btn-link text-dark p-0 border-0" type="submit" title="Save">
|
<button class="btn btn-link text-dark p-0 border-0" type="submit" title="Save">
|
||||||
<h3 class="m-0 far fa-bookmark"></h3>
|
<h3 class="m-0 far fa-bookmark"></h3>
|
||||||
</button>
|
</button>
|
||||||
|
@ -267,6 +159,9 @@ pixelfed.postComponent = {};
|
||||||
pixelfed.presenter = {
|
pixelfed.presenter = {
|
||||||
show: {
|
show: {
|
||||||
image: function(container, media) {
|
image: function(container, media) {
|
||||||
|
$('.status-container')
|
||||||
|
.removeClass('orientation-unknown')
|
||||||
|
.addClass('orientation-' + media[0]['orientation']);
|
||||||
let wrapper = $('<div>');
|
let wrapper = $('<div>');
|
||||||
wrapper.addClass(media[0]['filter_class']);
|
wrapper.addClass(media[0]['filter_class']);
|
||||||
let el = $('<img>');
|
let el = $('<img>');
|
||||||
|
@ -288,29 +183,67 @@ pixelfed.presenter = {
|
||||||
container.append(wrapper);
|
container.append(wrapper);
|
||||||
},
|
},
|
||||||
|
|
||||||
imageAlbum: function(container, media) {
|
imageAlbum: function(container, media, status) {
|
||||||
|
$('.status-container')
|
||||||
|
.removeClass('orientation-unknown')
|
||||||
|
.addClass('orientation-' + media[0]['orientation']);
|
||||||
|
let id = 'photo-carousel-wrapper-' + status.id;
|
||||||
let wrapper = $('<div>');
|
let wrapper = $('<div>');
|
||||||
wrapper.addClass('carousel');
|
wrapper.addClass('carousel slide carousel-fade');
|
||||||
let counter = $('<div>');
|
wrapper.attr('data-ride', 'carousel');
|
||||||
counter.attr('class', 'counter');
|
wrapper.attr('id', id);
|
||||||
counter.attr('count', media.length);
|
let indicators = $('<ol>');
|
||||||
counter.text(' / ' + media.length);
|
indicators.addClass('carousel-indicators');
|
||||||
for(var i = media.length - 1; i >= 0; i--) {
|
let prev = $('<a>');
|
||||||
|
prev.addClass('carousel-control-prev');
|
||||||
|
prev.attr('href', '#' + id);
|
||||||
|
prev.attr('role', 'button');
|
||||||
|
prev.attr('data-slide', 'prev');
|
||||||
|
let prevIcon = $('<span>').addClass('carousel-control-prev-icon').attr('aria-hidden', 'true');
|
||||||
|
let prevSr = $('<span>').addClass('sr-only');
|
||||||
|
prev.append(prevIcon, prevSr);
|
||||||
|
let next = $('<a>');
|
||||||
|
next.addClass('carousel-control-next');
|
||||||
|
next.attr('href', '#' + id);
|
||||||
|
next.attr('role', 'button');
|
||||||
|
next.attr('data-slide', 'next');
|
||||||
|
let nextIcon = $('<span>').addClass('carousel-control-next-icon').attr('aria-hidden', 'true');
|
||||||
|
let nextSr = $('<span>').addClass('sr-only');
|
||||||
|
let inner = $('<div>').addClass('carousel-inner');
|
||||||
|
next.append(nextIcon, nextSr);
|
||||||
|
for(let i = 0; i < media.length; i++) {
|
||||||
|
let li = $('<li>');
|
||||||
|
li.attr('data-target', '#' + id);
|
||||||
|
li.attr('data-slide-to', i);
|
||||||
|
if(i == 0) {
|
||||||
|
li.addClass('active');
|
||||||
|
}
|
||||||
|
indicators.append(li);
|
||||||
let item = media[i];
|
let item = media[i];
|
||||||
let carouselItem = $('<div>').addClass('slide d-flex align-items-center');
|
let carouselItem = $('<div>').addClass('carousel-item');
|
||||||
carouselItem.attr('slide', i + 1);
|
if(i == 0) {
|
||||||
carouselItem.attr('annot', item.description);
|
carouselItem.addClass('active');
|
||||||
let check = $('<input>');
|
}
|
||||||
check.attr('type', 'checkbox');
|
let figure = $('<figure>');
|
||||||
check.attr('class', 'carousel-slide');
|
if(item['filter_class']) {
|
||||||
|
figure.addClass(item['filter_class']);
|
||||||
|
}
|
||||||
|
|
||||||
|
let badge = $('<span>');
|
||||||
|
badge.addClass('float-right mr-3 badge badge-dark');
|
||||||
|
badge.style = 'position:fixed;top:8px;right:0;margin-bottom:-20px;';
|
||||||
|
badge.text(i+1 + '/' + media.length);
|
||||||
|
|
||||||
let img = $('<img>');
|
let img = $('<img>');
|
||||||
img.addClass('img-fluid');
|
img.addClass('d-block w-100');
|
||||||
img.attr('src', item['url']);
|
img.attr('src', item['url']);
|
||||||
carouselItem.append(img);
|
|
||||||
wrapper.append(check);
|
figure.append(badge, img);
|
||||||
wrapper.append(carouselItem);
|
carouselItem.append(figure);
|
||||||
|
|
||||||
|
inner.append(carouselItem);
|
||||||
}
|
}
|
||||||
wrapper.append(counter);
|
wrapper.append(indicators, inner, prev, next);
|
||||||
container.append(wrapper);
|
container.append(wrapper);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -322,7 +255,8 @@ export default {
|
||||||
return {
|
return {
|
||||||
status: {},
|
status: {},
|
||||||
media: {},
|
media: {},
|
||||||
user: {}
|
user: {},
|
||||||
|
reactions: {}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
|
@ -332,9 +266,23 @@ export default {
|
||||||
el.val(token);
|
el.val(token);
|
||||||
});
|
});
|
||||||
this.fetchData();
|
this.fetchData();
|
||||||
pixelfed.hydrateLikes();
|
//pixelfed.hydrateLikes();
|
||||||
this.authCheck();
|
this.authCheck();
|
||||||
},
|
},
|
||||||
|
updated() {
|
||||||
|
$('.carousel').carousel();
|
||||||
|
if(this.reactions) {
|
||||||
|
if(this.reactions.bookmarked == true) {
|
||||||
|
$('.far.fa-bookmark').removeClass('far').addClass('fas text-warning');
|
||||||
|
}
|
||||||
|
if(this.reactions.shared == true) {
|
||||||
|
$('.far.fa-share-square').addClass('text-primary');
|
||||||
|
}
|
||||||
|
if(this.reactions.liked == true) {
|
||||||
|
$('.far.fa-heart ').removeClass('far text-dark').addClass('fas text-danger');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
authCheck() {
|
authCheck() {
|
||||||
let authed = $('body').hasClass('loggedIn');
|
let authed = $('body').hasClass('loggedIn');
|
||||||
|
@ -355,7 +303,7 @@ export default {
|
||||||
},
|
},
|
||||||
timestampFormat() {
|
timestampFormat() {
|
||||||
let ts = new Date(this.status.created_at);
|
let ts = new Date(this.status.created_at);
|
||||||
return ts.toDateString();
|
return ts.toDateString() + ' ' + ts.toLocaleTimeString();
|
||||||
},
|
},
|
||||||
fetchData() {
|
fetchData() {
|
||||||
let url = '/api/v2/profile/'+this.statusUsername+'/status/'+this.statusId;
|
let url = '/api/v2/profile/'+this.statusUsername+'/status/'+this.statusId;
|
||||||
|
@ -365,6 +313,7 @@ export default {
|
||||||
self.status = response.data.status;
|
self.status = response.data.status;
|
||||||
self.user = response.data.user;
|
self.user = response.data.user;
|
||||||
self.media = self.status.media_attachments;
|
self.media = self.status.media_attachments;
|
||||||
|
self.reactions = response.data.reactions;
|
||||||
this.buildPresenter();
|
this.buildPresenter();
|
||||||
this.showMuteBlock();
|
this.showMuteBlock();
|
||||||
}).catch(error => {
|
}).catch(error => {
|
||||||
|
@ -386,6 +335,9 @@ export default {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
commentFocus() {
|
||||||
|
$('.comment-form input[name="comment"]').focus();
|
||||||
|
},
|
||||||
buildPresenter() {
|
buildPresenter() {
|
||||||
let container = $('.postPresenterContainer');
|
let container = $('.postPresenterContainer');
|
||||||
let status = this.status;
|
let status = this.status;
|
||||||
|
@ -407,8 +359,7 @@ export default {
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'album':
|
case 'album':
|
||||||
pixelfed.presenter.show.imageAlbum(container, media);
|
pixelfed.presenter.show.imageAlbum(container, media, this.status);
|
||||||
$('.carousel').carousel();
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'video':
|
case 'video':
|
||||||
|
|
Loading…
Reference in a new issue