mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 08:44:49 +00:00
commit
9ebeb929b8
7 changed files with 88 additions and 21 deletions
|
@ -79,6 +79,8 @@
|
||||||
- Updated webfinger util, fix bug preventing username with dots. ([c2d194af](https://github.com/pixelfed/pixelfed/commit/c2d194af))
|
- Updated webfinger util, fix bug preventing username with dots. ([c2d194af](https://github.com/pixelfed/pixelfed/commit/c2d194af))
|
||||||
- Updated upload endpoints with MediaBlocklist checks. ([597378bf](https://github.com/pixelfed/pixelfed/commit/597378bf))
|
- Updated upload endpoints with MediaBlocklist checks. ([597378bf](https://github.com/pixelfed/pixelfed/commit/597378bf))
|
||||||
- Updated Timeline.vue component, fixes ([#2352](https://github.com/pixelfed/pixelfed/issues/2352)) and ([#2343](https://github.com/pixelfed/pixelfed/issues/2343)). ([e134a9ac](https://github.com/pixelfed/pixelfed/commit/e134a9ac))
|
- Updated Timeline.vue component, fixes ([#2352](https://github.com/pixelfed/pixelfed/issues/2352)) and ([#2343](https://github.com/pixelfed/pixelfed/issues/2343)). ([e134a9ac](https://github.com/pixelfed/pixelfed/commit/e134a9ac))
|
||||||
|
- Updated PostComponent.vue, improve MetroUI and fixes ([#2363](https://github.com/pixelfed/pixelfed/issues/2363)). ([0c8ebf26](https://github.com/pixelfed/pixelfed/commit/0c8ebf26))
|
||||||
|
- Updated Timeline.vue, fixes ([#2363](https://github.com/pixelfed/pixelfed/issues/2363)). ([f53f10fd](https://github.com/pixelfed/pixelfed/commit/f53f10fd))
|
||||||
|
|
||||||
## [v0.10.9 (2020-04-17)](https://github.com/pixelfed/pixelfed/compare/v0.10.8...v0.10.9)
|
## [v0.10.9 (2020-04-17)](https://github.com/pixelfed/pixelfed/compare/v0.10.8...v0.10.9)
|
||||||
### Added
|
### Added
|
||||||
|
|
BIN
public/js/status.js
vendored
BIN
public/js/status.js
vendored
Binary file not shown.
BIN
public/js/timeline.js
vendored
BIN
public/js/timeline.js
vendored
Binary file not shown.
Binary file not shown.
|
@ -144,7 +144,7 @@
|
||||||
<div v-else>
|
<div v-else>
|
||||||
<p :class="[status.content.length > 620 ? 'mb-1 read-more' : 'mb-1']" style="overflow: hidden;">
|
<p :class="[status.content.length > 620 ? 'mb-1 read-more' : 'mb-1']" style="overflow: hidden;">
|
||||||
<a class="font-weight-bold pr-1 text-dark text-decoration-none" :href="statusProfileUrl">{{statusUsername}}</a>
|
<a class="font-weight-bold pr-1 text-dark text-decoration-none" :href="statusProfileUrl">{{statusUsername}}</a>
|
||||||
<span class="comment-text" :id="status.id + '-status-readmore'" v-html="status.content"></span>
|
<span class="comment-text" style="word-break: break-all;" :id="status.id + '-status-readmore'" v-html="status.content"></span>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<hr>
|
<hr>
|
||||||
|
@ -179,7 +179,7 @@
|
||||||
<p class="d-flex justify-content-between align-items-top read-more" style="overflow-y: hidden;">
|
<p class="d-flex justify-content-between align-items-top read-more" style="overflow-y: hidden;">
|
||||||
<span>
|
<span>
|
||||||
<a class="text-dark font-weight-bold mr-1 text-break" :href="reply.account.url" v-bind:title="reply.account.username">{{truncate(reply.account.username,15)}}</a>
|
<a class="text-dark font-weight-bold mr-1 text-break" :href="reply.account.url" v-bind:title="reply.account.username">{{truncate(reply.account.username,15)}}</a>
|
||||||
<span class="text-break " v-html="reply.content"></span>
|
<span class="text-break comment-body" style="word-break: break-all;" v-html="reply.content"></span>
|
||||||
</span>
|
</span>
|
||||||
<span style="min-width:38px;">
|
<span style="min-width:38px;">
|
||||||
<span v-on:click="likeReply(reply, $event)"><i v-bind:class="[reply.favourited ? 'fas fa-heart fa-sm text-danger':'far fa-heart fa-sm text-lighter']"></i></span>
|
<span v-on:click="likeReply(reply, $event)"><i v-bind:class="[reply.favourited ? 'fas fa-heart fa-sm text-danger':'far fa-heart fa-sm text-lighter']"></i></span>
|
||||||
|
@ -189,7 +189,7 @@
|
||||||
<p class="">
|
<p class="">
|
||||||
<a v-once class="text-muted mr-3 text-decoration-none small" style="width: 20px;" v-text="timeAgo(reply.created_at)" :href="permalinkUrl(reply)"></a>
|
<a v-once class="text-muted mr-3 text-decoration-none small" style="width: 20px;" v-text="timeAgo(reply.created_at)" :href="permalinkUrl(reply)"></a>
|
||||||
<span v-if="reply.favourites_count" class="text-muted comment-reaction font-weight-bold mr-3">{{reply.favourites_count == 1 ? '1 like' : reply.favourites_count + ' likes'}}</span>
|
<span v-if="reply.favourites_count" class="text-muted comment-reaction font-weight-bold mr-3">{{reply.favourites_count == 1 ? '1 like' : reply.favourites_count + ' likes'}}</span>
|
||||||
<span class="text-muted comment-reaction font-weight-bold cursor-pointer" v-on:click="replyFocus(reply, index)">Reply</span>
|
<span class="text-muted comment-reaction font-weight-bold cursor-pointer" v-on:click="replyFocus(reply, index, true)">Reply</span>
|
||||||
</p>
|
</p>
|
||||||
<div v-if="reply.reply_count > 0" class="cursor-pointer" v-on:click="toggleReplies(reply)">
|
<div v-if="reply.reply_count > 0" class="cursor-pointer" v-on:click="toggleReplies(reply)">
|
||||||
<span class="show-reply-bar"></span>
|
<span class="show-reply-bar"></span>
|
||||||
|
@ -202,7 +202,7 @@
|
||||||
<p class="d-flex justify-content-between align-items-top read-more" style="overflow-y: hidden;">
|
<p class="d-flex justify-content-between align-items-top read-more" style="overflow-y: hidden;">
|
||||||
<span>
|
<span>
|
||||||
<a class="text-dark font-weight-bold mr-1" :href="s.account.url" :title="s.account.username">{{s.account.username}}</a>
|
<a class="text-dark font-weight-bold mr-1" :href="s.account.url" :title="s.account.username">{{s.account.username}}</a>
|
||||||
<span class="text-break" v-html="s.content"></span>
|
<span class="text-break comment-body" style="word-break: break-all;" v-html="s.content"></span>
|
||||||
</span>
|
</span>
|
||||||
<span class="pl-2" style="min-width:38px">
|
<span class="pl-2" style="min-width:38px">
|
||||||
<span v-on:click="likeReply(s, $event)"><i v-bind:class="[s.favourited ? 'fas fa-heart fa-sm text-danger':'far fa-heart fa-sm text-lighter']"></i></span>
|
<span v-on:click="likeReply(s, $event)"><i v-bind:class="[s.favourited ? 'fas fa-heart fa-sm text-danger':'far fa-heart fa-sm text-lighter']"></i></span>
|
||||||
|
@ -226,13 +226,13 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-body flex-grow-0 py-1">
|
<div class="card-body flex-grow-0 py-1">
|
||||||
<div class="reactions my-1">
|
<div v-if="loaded && user.hasOwnProperty('id')" class="reactions my-2 pb-1 d-flex justify-content-between">
|
||||||
<h3 v-bind:class="[reactions.liked ? 'fas fa-heart text-danger pr-3 m-0 cursor-pointer' : 'far fa-heart pr-3 m-0 like-btn cursor-pointer']" title="Like" v-on:click="likeStatus"></h3>
|
<h3 v-bind:class="[reactions.liked ? 'fas fa-heart text-danger mr-3 m-0 cursor-pointer' : 'far fa-heart pr-3 m-0 like-btn cursor-pointer']" title="Like" v-on:click="likeStatus"></h3>
|
||||||
<h3 v-if="!status.comments_disabled" class="far fa-comment pr-3 m-0 cursor-pointer" title="Comment" v-on:click="replyFocus(status)"></h3>
|
<h3 v-if="!status.comments_disabled" class="far fa-comment mr-3 m-0 cursor-pointer" title="Comment" v-on:click="replyFocus(status)"></h3>
|
||||||
<h3 v-if="status.visibility == 'public'" v-bind:class="[reactions.shared ? 'far fa-share-square pr-3 m-0 text-primary cursor-pointer' : 'far fa-share-square pr-3 m-0 share-btn cursor-pointer']" title="Share" v-on:click="shareStatus"></h3>
|
<h3 @click="redirect(status.media_attachments[0].url)" class="fas fa-expand m-0 mr-3 cursor-pointer"></h3>
|
||||||
<!-- <h3 @click="lightbox(status.media_attachments[0])" class="fas fa-expand m-0 cursor-pointer"></h3>
|
<!-- <h3 v-if="status.visibility == 'public'" v-bind:class="[reactions.bookmarked ? 'fas fa-bookmark text-warning m-0 float-right cursor-pointer' : 'far fa-bookmark m-0 float-right cursor-pointer']" title="Bookmark" v-on:click="bookmarkStatus"></h3> -->
|
||||||
<h3 v-if="status.visibility == 'public'" v-bind:class="[reactions.bookmarked ? 'fas fa-bookmark text-warning m-0 float-right cursor-pointer' : 'far fa-bookmark m-0 float-right cursor-pointer']" title="Bookmark" v-on:click="bookmarkStatus"></h3> -->
|
<h3 v-if="status.visibility == 'public'" v-bind:class="[reactions.bookmarked ? 'fas fa-bookmark text-warning m-0 mr-3 cursor-pointer' : 'far fa-bookmark m-0 mr-3 cursor-pointer']" title="Bookmark" v-on:click="bookmarkStatus"></h3>
|
||||||
<h3 v-if="status.visibility == 'public'" v-bind:class="[reactions.bookmarked ? 'fas fa-bookmark text-warning m-0 cursor-pointer' : 'far fa-bookmark m-0 cursor-pointer']" title="Bookmark" v-on:click="bookmarkStatus"></h3>
|
<h3 v-if="status.visibility == 'public'" v-bind:class="[reactions.shared ? 'fas fa-retweet m-0 text-primary cursor-pointer' : 'fas fa-retweet m-0 share-btn cursor-pointer']" title="Share" v-on:click="shareStatus"></h3>
|
||||||
</div>
|
</div>
|
||||||
<div class="reaction-counts font-weight-bold mb-0">
|
<div class="reaction-counts font-weight-bold mb-0">
|
||||||
<span style="cursor:pointer;" v-on:click="likesModal">
|
<span style="cursor:pointer;" v-on:click="likesModal">
|
||||||
|
@ -726,6 +726,7 @@ export default {
|
||||||
sharesPage: 1,
|
sharesPage: 1,
|
||||||
lightboxMedia: false,
|
lightboxMedia: false,
|
||||||
replyText: '',
|
replyText: '',
|
||||||
|
replyStatus: {},
|
||||||
replySensitive: false,
|
replySensitive: false,
|
||||||
relationship: {},
|
relationship: {},
|
||||||
results: [],
|
results: [],
|
||||||
|
@ -740,6 +741,7 @@ export default {
|
||||||
loading: null,
|
loading: null,
|
||||||
replyingToId: this.statusId,
|
replyingToId: this.statusId,
|
||||||
replyToIndex: 0,
|
replyToIndex: 0,
|
||||||
|
replySending: false,
|
||||||
emoji: window.App.util.emoji,
|
emoji: window.App.util.emoji,
|
||||||
showReadMore: true,
|
showReadMore: true,
|
||||||
showCaption: true,
|
showCaption: true,
|
||||||
|
@ -858,13 +860,29 @@ export default {
|
||||||
}
|
}
|
||||||
this.loaded = true;
|
this.loaded = true;
|
||||||
this.fetchProfilePosts();
|
this.fetchProfilePosts();
|
||||||
|
setTimeout(function() {
|
||||||
|
document.querySelectorAll('.status-comment .comment-text a').forEach(function(i, e) {
|
||||||
|
if(i.href.startsWith(window.location.origin)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
let tag = i.innerText;
|
||||||
|
if(tag.startsWith('#')) {
|
||||||
|
tag = tag.substr(1);
|
||||||
|
}
|
||||||
|
i.href = '/discover/tags/'+tag+'?src=rph';
|
||||||
|
});
|
||||||
|
}, 500);
|
||||||
}).catch(error => {
|
}).catch(error => {
|
||||||
swal('Oops!', 'An error occured, please try refreshing the page.', 'error');
|
swal('Oops!', 'An error occured, please try refreshing the page.', 'error');
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
likesModal() {
|
likesModal() {
|
||||||
if(this.status.favourites_count == 0 || $('body').hasClass('loggedIn') == false) {
|
if($('body').hasClass('loggedIn') == false) {
|
||||||
|
window.location.href = '/login?next=' + encodeURIComponent('/p/' + this.status.shortcode);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if(this.status.favourites_count == 0) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.$refs.likesModal.show();
|
this.$refs.likesModal.show();
|
||||||
|
@ -1119,10 +1137,13 @@ export default {
|
||||||
return e.substr(0, 10)+'...';
|
return e.substr(0, 10)+'...';
|
||||||
},
|
},
|
||||||
|
|
||||||
replyFocus(e, index) {
|
replyFocus(e, index, prependUsername = false) {
|
||||||
this.replyToIndex = index;
|
this.replyToIndex = index;
|
||||||
this.replyingToId = e.id;
|
this.replyingToId = e.id;
|
||||||
this.reply_to_profile_id = e.account.id;
|
this.reply_to_profile_id = e.account.id;
|
||||||
|
if(prependUsername == true) {
|
||||||
|
this.replyText = '@' + e.account.username + ' ';
|
||||||
|
}
|
||||||
$('textarea[name="comment"]').focus();
|
$('textarea[name="comment"]').focus();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -1140,6 +1161,18 @@ export default {
|
||||||
}
|
}
|
||||||
$('.postCommentsLoader').addClass('d-none');
|
$('.postCommentsLoader').addClass('d-none');
|
||||||
$('.postCommentsContainer').removeClass('d-none');
|
$('.postCommentsContainer').removeClass('d-none');
|
||||||
|
setTimeout(function() {
|
||||||
|
document.querySelectorAll('.comments .comment-body a').forEach(function(i, e) {
|
||||||
|
if(i.href.startsWith(window.location.origin)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
let tag = i.innerText;
|
||||||
|
if(tag.startsWith('#')) {
|
||||||
|
tag = tag.substr(1);
|
||||||
|
}
|
||||||
|
i.href = '/discover/tags/'+tag+'?src=rph';
|
||||||
|
});
|
||||||
|
}, 500);
|
||||||
}).catch(error => {
|
}).catch(error => {
|
||||||
if(!error.response) {
|
if(!error.response) {
|
||||||
$('.postCommentsLoader .lds-ring')
|
$('.postCommentsLoader .lds-ring')
|
||||||
|
@ -1190,6 +1223,7 @@ export default {
|
||||||
|
|
||||||
likeReply(status, $event) {
|
likeReply(status, $event) {
|
||||||
if($('body').hasClass('loggedIn') == false) {
|
if($('body').hasClass('loggedIn') == false) {
|
||||||
|
swal('Login', 'Please login to perform this action.', 'info');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1410,7 +1444,6 @@ export default {
|
||||||
swal('An Error Occurred', 'Please try again later.', 'error');
|
swal('An Error Occurred', 'Please try again later.', 'error');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -185,10 +185,10 @@
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="comments" v-if="status.id == replyId && !status.comments_disabled">
|
<div class="comments" v-if="status.id == replyId && !status.comments_disabled">
|
||||||
<p class="mb-0 d-flex justify-content-between align-items-top read-more" style="overflow-y: hidden;" v-for="(reply, index) in replies">
|
<p class="mb-0 d-flex justify-content-between align-items-top read-more mt-2" style="overflow-y: hidden;" v-for="(reply, index) in replies">
|
||||||
<span>
|
<span>
|
||||||
<a class="text-dark font-weight-bold mr-1" :href="profileUrl(reply)">{{reply.account.username}}</a>
|
<a class="text-dark font-weight-bold mr-1" :href="profileUrl(reply)">{{reply.account.username}}</a>
|
||||||
<span v-html="reply.content"></span>
|
<span v-html="reply.content" style="word-break: break-all;" class="comment-body"></span>
|
||||||
</span>
|
</span>
|
||||||
<span class="mb-0" style="min-width:38px">
|
<span class="mb-0" style="min-width:38px">
|
||||||
<span v-on:click="likeStatus(reply, $event)">
|
<span v-on:click="likeStatus(reply, $event)">
|
||||||
|
@ -540,7 +540,7 @@
|
||||||
<div class="d-flex justify-content-between align-items-center">
|
<div class="d-flex justify-content-between align-items-center">
|
||||||
<div>
|
<div>
|
||||||
<span class="pl-2 small text-muted font-weight-bold text-monospace">
|
<span class="pl-2 small text-muted font-weight-bold text-monospace">
|
||||||
{{replyText.length}}/600
|
<span :class="[replyText.length > config.uploader.max_caption_length ? 'text-danger':'text-dark']">{{replyText.length > config.uploader.max_caption_length ? config.uploader.max_caption_length - replyText.length : replyText.length}}</span>/{{config.uploader.max_caption_length}}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="d-flex align-items-center">
|
<div class="d-flex align-items-center">
|
||||||
|
@ -815,6 +815,18 @@
|
||||||
}
|
}
|
||||||
// this.fetchStories();
|
// this.fetchStories();
|
||||||
this.rtw();
|
this.rtw();
|
||||||
|
setTimeout(function() {
|
||||||
|
document.querySelectorAll('.caption .status-content a').forEach(function(i, e) {
|
||||||
|
if(i.href.startsWith(window.location.origin)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
let tag = i.innerText;
|
||||||
|
if(tag.startsWith('#')) {
|
||||||
|
tag = tag.substr(1);
|
||||||
|
}
|
||||||
|
i.href = '/discover/tags/'+tag+'?src=rph';
|
||||||
|
});
|
||||||
|
}, 500);
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
swal(
|
swal(
|
||||||
'Oops, something went wrong',
|
'Oops, something went wrong',
|
||||||
|
@ -958,6 +970,18 @@
|
||||||
return res.sensitive == false;
|
return res.sensitive == false;
|
||||||
});
|
});
|
||||||
this.replies = _.reverse(data);
|
this.replies = _.reverse(data);
|
||||||
|
setTimeout(function() {
|
||||||
|
document.querySelectorAll('.comments .comment-body a').forEach(function(i, e) {
|
||||||
|
if(i.href.startsWith(window.location.origin)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
let tag = i.innerText;
|
||||||
|
if(tag.startsWith('#')) {
|
||||||
|
tag = tag.substr(1);
|
||||||
|
}
|
||||||
|
i.href = '/discover/tags/'+tag+'?src=rph';
|
||||||
|
});
|
||||||
|
}, 500);
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
@ -1019,6 +1043,12 @@
|
||||||
this.replySending = true;
|
this.replySending = true;
|
||||||
let id = status.id;
|
let id = status.id;
|
||||||
let comment = this.replyText;
|
let comment = this.replyText;
|
||||||
|
let limit = this.config.uploader.max_caption_length;
|
||||||
|
if(comment.length > limit) {
|
||||||
|
this.replySending = false;
|
||||||
|
swal('Comment Too Long', 'Please make sure your comment is '+limit+' characters or less.', 'error');
|
||||||
|
return;
|
||||||
|
}
|
||||||
axios.post('/i/comment', {
|
axios.post('/i/comment', {
|
||||||
item: id,
|
item: id,
|
||||||
comment: comment
|
comment: comment
|
||||||
|
|
|
@ -12,15 +12,17 @@ return [
|
||||||
'hashtags' => 'هشتگها',
|
'hashtags' => 'هشتگها',
|
||||||
'discover' => 'کشفکردن',
|
'discover' => 'کشفکردن',
|
||||||
'directMessages' => 'پیامهای شخصی',
|
'directMessages' => 'پیامهای شخصی',
|
||||||
'timelines' => 'جدول زمانی',
|
'timelines' => 'خط زمانی',
|
||||||
'embed' => 'توکار',
|
'embed' => 'توکار',
|
||||||
|
|
||||||
'communityGuidelines' => 'دستورالعملهای انجمن',
|
'communityGuidelines' => 'دستورالعملهای انجمن',
|
||||||
'whatIsTheFediverse' => 'نامتمرکز یعنی چی؟',
|
'whatIsTheFediverse' => 'نامتمرکز یعنی چی؟',
|
||||||
'controllingVisibility' => 'کنترل بینایی',
|
'controllingVisibility' => 'کنترل نمایش',
|
||||||
'blockingAccounts' => 'حسابهای مسدودشده',
|
'blockingAccounts' => 'حسابهای مسدودشده',
|
||||||
'safetyTips' => 'نکات امنیتی',
|
'safetyTips' => 'نکات امنیتی',
|
||||||
'reportSomething' => 'گزارش چیزی',
|
'reportSomething' => 'گزارش چیزی',
|
||||||
'dataPolicy' => 'خط مشی داده'
|
'dataPolicy' => 'خط مشی داده',
|
||||||
|
|
||||||
|
'taggingPeople' => 'برچسب زدن افراد'
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue