123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762 |
- <template>
- <div>
- <div class="card rounded-0 border-top-0 status-card card-md-rounded-0 shadow-none border">
- <div v-if="status" class="card-header d-inline-flex align-items-center bg-white">
- <div>
- <img class="rounded-circle box-shadow" :src="status.account.avatar" width="32px" height="32px" onerror="this.onerror=null;this.src='/storage/avatars/default.png?v=2'" alt="avatar">
- </div>
- <div class="pl-2">
- <a class="username font-weight-bold text-dark text-decoration-none text-break" v-bind:href="profileUrl(status)" v-html="statusCardUsernameFormat(status)">
- Loading...
- </a>
- <span v-if="status.account.is_admin" class="fa-stack" title="Admin Account" data-toggle="tooltip" style="height:1em; line-height:1em; max-width:19px;">
- <i class="fas fa-certificate text-danger fa-stack-1x"></i>
- <i class="fas fa-crown text-white fa-sm fa-stack-1x" style="font-size:7px;"></i>
- </span>
- <div class="d-flex align-items-center">
- <a v-if="status.place" class="small text-decoration-none text-muted" :href="'/discover/places/'+status.place.id+'/'+status.place.slug" title="Location" data-toggle="tooltip"><i class="fas fa-map-marked-alt"></i> {{status.place.name}}, {{status.place.country}}</a>
- </div>
- </div>
- <div class="text-right" style="flex-grow:1;">
- <button class="btn btn-link text-dark py-0" type="button" @click="ctxMenu()">
- <span class="fas fa-ellipsis-h text-lighter"></span>
- <span class="sr-only">Post Menu</span>
- </button>
- </div>
- </div>
- <div class="postPresenterContainer" style="background: #000;">
- <div v-if="config.ab.top && status.pf_type === 'text'" class="w-100">
- <div class="w-100 card-img-top border-bottom rounded-0" style="background-image: url(/storage/textimg/bg_1.jpg);background-size: cover;width: 100%;height: 540px;">
- <div class="w-100 h-100 d-flex justify-content-center align-items-center">
- <p class="text-center text-break h3 px-5 font-weight-bold" v-html="status.content"></p>
- </div>
- </div>
- </div>
- <div v-else-if="status.pf_type === 'photo'" class="w-100">
- <photo-presenter :status="status" v-on:lightbox="lightbox" v-on:togglecw="status.sensitive = false"></photo-presenter>
- </div>
- <div v-else-if="status.pf_type === 'video'" class="w-100">
- <video-presenter :status="status"></video-presenter>
- </div>
- <div v-else-if="status.pf_type === 'photo:album'" class="w-100">
- <photo-album-presenter :status="status" v-on:lightbox="lightbox"></photo-album-presenter>
- </div>
- <div v-else-if="status.pf_type === 'video:album'" class="w-100">
- <video-album-presenter :status="status"></video-album-presenter>
- </div>
- <div v-else-if="status.pf_type === 'photo:video:album'" class="w-100">
- <mixed-album-presenter :status="status" v-on:lightbox="lightbox"></mixed-album-presenter>
- </div>
- <div v-else class="w-100">
- <p class="text-center p-0 font-weight-bold text-white">Error: Problem rendering preview.</p>
- </div>
- </div>
- <div v-if="config.features.label.covid.enabled && status.label && status.label.covid == true" class="card-body border-top border-bottom py-2 cursor-pointer pr-2" @click="labelRedirect()">
- <p class="font-weight-bold d-flex justify-content-between align-items-center mb-0">
- <span>
- <i class="fas fa-info-circle mr-2"></i>
- For information about COVID-19, {{config.features.label.covid.org}}
- </span>
- <span>
- <i class="fas fa-chevron-right text-lighter"></i>
- </span>
- </p>
- </div>
- <div class="card-body">
- <div class="reactions my-1 pb-2">
- <h3 v-if="status.favourited" class="fas fa-heart text-danger pr-3 m-0 cursor-pointer" title="Like" v-on:click="likeStatus(status, $event);"></h3>
- <h3 v-else class="far fa-heart pr-3 m-0 like-btn text-dark cursor-pointer" title="Like" v-on:click="likeStatus(status, $event);"></h3>
- <h3 v-if="!status.comments_disabled" class="far fa-comment text-dark pr-3 m-0 cursor-pointer" title="Comment" v-on:click="commentFocus(status, $event)"></h3>
- <span v-if="status.taggedPeople.length" class="float-right">
- <span class="font-weight-light small" style="color:#718096">
- <i class="far fa-user" data-toggle="tooltip" title="Tagged People"></i>
- <span v-for="(tag, index) in status.taggedPeople" class="mr-n2">
- <a :href="'/'+tag.username">
- <img :src="tag.avatar" width="20px" height="20px" class="border rounded-circle" data-toggle="tooltip" :title="'@'+tag.username" alt="Avatar">
- </a>
- </span>
- </span>
- </span>
- </div>
- <div v-if="status.liked_by.username && status.liked_by.username !== profile.username" class="likes mb-1">
- <span class="like-count">Liked by
- <a class="font-weight-bold text-dark" :href="status.liked_by.url">{{status.liked_by.username}}</a>
- <span v-if="status.liked_by.others == true">
- and <span class="font-weight-bold" v-if="status.liked_by.total_count_pretty">{{status.liked_by.total_count_pretty}}</span> <span class="font-weight-bold">others</span>
- </span>
- </span>
- </div>
- <div v-if="status.pf_type != 'text'" class="caption">
- <p v-if="!status.sensitive" class="mb-2 read-more" style="overflow: hidden;">
- <span class="username font-weight-bold">
- <bdi><a class="text-dark" :href="profileUrl(status)">{{status.account.username}}</a></bdi>
- </span>
- <span class="status-content" v-html="status.content"></span>
- </p>
- </div>
- <div class="timestamp mt-2">
- <p class="small text-uppercase mb-0">
- <a :href="statusUrl(status)" class="text-muted">
- <timeago :datetime="status.created_at" :auto-update="60" :converter-options="{includeSeconds:true}" :title="timestampFormat(status.created_at)" v-b-tooltip.hover.bottom></timeago>
- </a>
- <div v-if="recommended">
- <span class="px-1">·</span>
- <span class="text-muted">Based on popular and trending content</span>
- </div>
- </p>
- </div>
- </div>
- </div>
- <context-menu
- ref="contextMenu"
- :status="status"
- :profile="profile"
- />
- </div>
- </template>
- <script type="text/javascript">
- import ContextMenu from './ContextMenu.vue';
- export default {
- props: {
- status: {
- type: Object
- },
- recommended: {
- type: Boolean,
- default: false
- }
- },
- components: {
- "context-menu": ContextMenu
- },
- data() {
- return {
- config: window.App.config,
- profile: {},
- loading: true,
- replies: [],
- replyId: null,
- lightboxMedia: false,
- showSuggestions: true,
- showReadMore: true,
- replyStatus: {},
- replyText: '',
- replyNsfw: false,
- emoji: window.App.util.emoji,
- ctxMenuStatus: false,
- ctxMenuRelationship: false,
- ctxEmbedPayload: false,
- copiedEmbed: false,
- replySending: false,
- ctxEmbedShowCaption: true,
- ctxEmbedShowLikes: false,
- ctxEmbedCompactMode: false,
- confirmModalTitle: 'Are you sure?',
- confirmModalIdentifer: null,
- confirmModalType: false,
- tributeSettings: {
- collection: [
- {
- trigger: '@',
- menuShowMinLength: 2,
- values: (function (text, cb) {
- let url = '/api/compose/v0/search/mention';
- axios.get(url, { params: { q: text }})
- .then(res => {
- cb(res.data);
- })
- .catch(err => {
- console.log(err);
- })
- })
- },
- {
- trigger: '#',
- menuShowMinLength: 2,
- values: (function (text, cb) {
- let url = '/api/compose/v0/search/hashtag';
- axios.get(url, { params: { q: text }})
- .then(res => {
- cb(res.data);
- })
- .catch(err => {
- console.log(err);
- })
- })
- }
- ]
- },
- }
- },
- mounted() {
- this.profile = window._sharedData.curUser;
- },
- methods: {
- formatCount(count) {
- return App.util.format.count(count);
- },
- statusUrl(status) {
- if(status.local == true) {
- return status.url;
- }
- return '/i/web/post/_/' + status.account.id + '/' + status.id;
- },
- profileUrl(status) {
- if(status.local == true) {
- return status.account.url;
- }
- return '/i/web/profile/_/' + status.account.id;
- },
- timestampFormat(timestamp) {
- let ts = new Date(timestamp);
- return ts.toDateString() + ' ' + ts.toLocaleTimeString();
- },
- statusCardUsernameFormat(status) {
- if(status.account.local == true) {
- return status.account.username;
- }
- let fmt = window.App.config.username.remote.format;
- let txt = window.App.config.username.remote.custom;
- let usr = status.account.username;
- let dom = document.createElement('a');
- dom.href = status.account.url;
- dom = dom.hostname;
- switch(fmt) {
- case '@':
- return usr + '<span class="text-lighter font-weight-bold">@' + dom + '</span>';
- break;
- case 'from':
- return usr + '<span class="text-lighter font-weight-bold"> <span class="font-weight-normal">from</span> ' + dom + '</span>';
- break;
- case 'custom':
- return usr + '<span class="text-lighter font-weight-bold"> ' + txt + ' ' + dom + '</span>';
- break;
- default:
- return usr + '<span class="text-lighter font-weight-bold">@' + dom + '</span>';
- break;
- }
- },
- lightbox(status) {
- window.location.href = status.media_attachments[0].url;
- },
- labelRedirect(type) {
- let url = '/i/redirect?url=' + encodeURI(this.config.features.label.covid.url);
- window.location.href = url;
- },
- likeStatus(status, event) {
- if($('body').hasClass('loggedIn') == false) {
- return;
- }
- let count = status.favourites_count;
- status.favourited = !status.favourited;
- axios.post('/i/like', {
- item: status.id
- }).then(res => {
- status.favourites_count = res.data.count;
- }).catch(err => {
- status.favourited = !status.favourited;
- status.favourites_count = count;
- swal('Error', 'Something went wrong, please try again later.', 'error');
- });
- window.navigator.vibrate(200);
- if(status.favourited) {
- setTimeout(function() {
- event.target.classList.add('animate__animated', 'animate__bounce');
- },100);
- }
- },
- // ctxMenu() {
- // this.$emit('ctx-menu', this.status);
- // },
- commentFocus(status, $event) {
- this.$emit('comment-focus', status);
- },
- muteProfile(status) {
- if($('body').hasClass('loggedIn') == false) {
- return;
- }
- axios.post('/i/mute', {
- type: 'user',
- item: status.account.id
- }).then(res => {
- this.feed = this.feed.filter(s => s.account.id !== status.account.id);
- swal('Success', 'You have successfully muted ' + status.account.acct, 'success');
- }).catch(err => {
- swal('Error', 'Something went wrong. Please try again later.', 'error');
- });
- },
- blockProfile(status) {
- if($('body').hasClass('loggedIn') == false) {
- return;
- }
- axios.post('/i/block', {
- type: 'user',
- item: status.account.id
- }).then(res => {
- this.feed = this.feed.filter(s => s.account.id !== status.account.id);
- swal('Success', 'You have successfully blocked ' + status.account.acct, 'success');
- }).catch(err => {
- swal('Error', 'Something went wrong. Please try again later.', 'error');
- });
- },
- deletePost(status) {
- if($('body').hasClass('loggedIn') == false || this.ownerOrAdmin(status) == false) {
- return;
- }
- if(window.confirm('Are you sure you want to delete this post?') == false) {
- return;
- }
- axios.post('/i/delete', {
- type: 'status',
- item: status.id
- }).then(res => {
- this.$emit('status-delete', status.id);
- this.closeModals();
- }).catch(err => {
- swal('Error', 'Something went wrong. Please try again later.', 'error');
- });
- },
- commentSubmit(status, $event) {
- this.replySending = true;
- let id = status.id;
- 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', {
- item: id,
- comment: comment,
- sensitive: this.replyNsfw
- }).then(res => {
- this.replyText = '';
- this.replies.push(res.data.entity);
- this.$refs.replyModal.hide();
- });
- this.replySending = false;
- },
- moderatePost(status, action, $event) {
- let username = status.account.username;
- let msg = '';
- let self = this;
- switch(action) {
- case 'addcw':
- msg = 'Are you sure you want to add a content warning to this post?';
- swal({
- title: 'Confirm',
- text: msg,
- icon: 'warning',
- buttons: true,
- dangerMode: true
- }).then(res => {
- if(res) {
- axios.post('/api/v2/moderator/action', {
- action: action,
- item_id: status.id,
- item_type: 'status'
- }).then(res => {
- swal('Success', 'Successfully added content warning', 'success');
- status.sensitive = true;
- self.ctxModMenuClose();
- }).catch(err => {
- swal(
- 'Error',
- 'Something went wrong, please try again later.',
- 'error'
- );
- self.ctxModMenuClose();
- });
- }
- });
- break;
- case 'remcw':
- msg = 'Are you sure you want to remove the content warning on this post?';
- swal({
- title: 'Confirm',
- text: msg,
- icon: 'warning',
- buttons: true,
- dangerMode: true
- }).then(res => {
- if(res) {
- axios.post('/api/v2/moderator/action', {
- action: action,
- item_id: status.id,
- item_type: 'status'
- }).then(res => {
- swal('Success', 'Successfully added content warning', 'success');
- status.sensitive = false;
- self.ctxModMenuClose();
- }).catch(err => {
- swal(
- 'Error',
- 'Something went wrong, please try again later.',
- 'error'
- );
- self.ctxModMenuClose();
- });
- }
- });
- break;
- case 'unlist':
- msg = 'Are you sure you want to unlist this post?';
- swal({
- title: 'Confirm',
- text: msg,
- icon: 'warning',
- buttons: true,
- dangerMode: true
- }).then(res => {
- if(res) {
- axios.post('/api/v2/moderator/action', {
- action: action,
- item_id: status.id,
- item_type: 'status'
- }).then(res => {
- this.feed = this.feed.filter(f => {
- return f.id != status.id;
- });
- swal('Success', 'Successfully unlisted post', 'success');
- self.ctxModMenuClose();
- }).catch(err => {
- self.ctxModMenuClose();
- swal(
- 'Error',
- 'Something went wrong, please try again later.',
- 'error'
- );
- });
- }
- });
- break;
- }
- },
- followAction(status) {
- let id = status.account.id;
- axios.post('/i/follow', {
- item: id
- }).then(res => {
- this.feed.forEach(s => {
- if(s.account.id == id) {
- s.account.relationship.following = !s.account.relationship.following;
- }
- });
- let username = status.account.acct;
- if(status.account.relationship.following) {
- swal('Follow successful!', 'You are now following ' + username, 'success');
- } else {
- swal('Unfollow successful!', 'You are no longer following ' + username, 'success');
- }
- }).catch(err => {
- if(err.response.data.message) {
- swal('Error', err.response.data.message, 'error');
- }
- });
- },
- owner(status) {
- return this.profile.id === status.account.id;
- },
- admin() {
- return this.profile.is_admin == true;
- },
- ownerOrAdmin(status) {
- return this.owner(status) || this.admin();
- },
- ctxMenu() {
- this.$refs.contextMenu.open();
- // let status = this.status;
- // this.ctxMenuStatus = status;
- // this.ctxEmbedPayload = window.App.util.embed.post(status.url);
- // if(status.account.id == this.profile.id) {
- // this.ctxMenuRelationship = false;
- // this.$refs.ctxModal.show();
- // } else {
- // axios.get('/api/pixelfed/v1/accounts/relationships', {
- // params: {
- // 'id[]': status.account.id
- // }
- // }).then(res => {
- // this.ctxMenuRelationship = res.data[0];
- // this.$refs.ctxModal.show();
- // });
- // }
- },
- closeCtxMenu(truncate) {
- this.copiedEmbed = false;
- this.ctxMenuStatus = false;
- this.ctxMenuRelationship = false;
- this.$refs.ctxModal.hide();
- this.$refs.ctxReport.hide();
- this.$refs.ctxReportOther.hide();
- this.closeModals();
- },
- ctxMenuCopyLink() {
- let status = this.ctxMenuStatus;
- navigator.clipboard.writeText(status.url);
- this.closeModals();
- return;
- },
- ctxMenuGoToPost() {
- let status = this.ctxMenuStatus;
- window.location.href = this.statusUrl(status);
- this.closeCtxMenu();
- return;
- },
- ctxMenuFollow() {
- let id = this.ctxMenuStatus.account.id;
- axios.post('/i/follow', {
- item: id
- }).then(res => {
- let username = this.ctxMenuStatus.account.acct;
- this.closeCtxMenu();
- setTimeout(function() {
- swal('Follow successful!', 'You are now following ' + username, 'success');
- }, 500);
- });
- },
- ctxMenuUnfollow() {
- let id = this.ctxMenuStatus.account.id;
- axios.post('/i/follow', {
- item: id
- }).then(res => {
- let username = this.ctxMenuStatus.account.acct;
- if(this.scope == 'home') {
- this.feed = this.feed.filter(s => {
- return s.account.id != this.ctxMenuStatus.account.id;
- });
- }
- this.closeCtxMenu();
- setTimeout(function() {
- swal('Unfollow successful!', 'You are no longer following ' + username, 'success');
- }, 500);
- });
- },
- ctxMenuReportPost() {
- this.$refs.ctxModal.hide();
- this.$refs.ctxReport.show();
- return;
- },
- ctxMenuEmbed() {
- this.closeModals();
- this.$refs.ctxEmbedModal.show();
- },
- ctxMenuShare() {
- this.$refs.ctxModal.hide();
- this.$refs.ctxShareModal.show();
- },
- closeCtxShareMenu() {
- this.$refs.ctxShareModal.hide();
- this.$refs.ctxModal.show();
- },
- ctxCopyEmbed() {
- navigator.clipboard.writeText(this.ctxEmbedPayload);
- this.ctxEmbedShowCaption = true;
- this.ctxEmbedShowLikes = false;
- this.ctxEmbedCompactMode = false;
- this.$refs.ctxEmbedModal.hide();
- },
- ctxModMenuShow() {
- this.$refs.ctxModal.hide();
- this.$refs.ctxModModal.show();
- },
- ctxModOtherMenuShow() {
- this.$refs.ctxModal.hide();
- this.$refs.ctxModModal.hide();
- this.$refs.ctxModOtherModal.show();
- },
- ctxModMenu() {
- this.$refs.ctxModal.hide();
- },
- ctxModMenuClose() {
- this.closeModals();
- this.$refs.ctxModal.show();
- },
- ctxModOtherMenuClose() {
- this.closeModals();
- this.$refs.ctxModModal.show();
- },
- formatCount(count) {
- return App.util.format.count(count);
- },
- openCtxReportOtherMenu() {
- let s = this.ctxMenuStatus;
- this.closeCtxMenu();
- this.ctxMenuStatus = s;
- this.$refs.ctxReportOther.show();
- },
- ctxReportMenuGoBack() {
- this.$refs.ctxReportOther.hide();
- this.$refs.ctxReport.hide();
- this.$refs.ctxModal.show();
- },
- ctxReportOtherMenuGoBack() {
- this.$refs.ctxReportOther.hide();
- this.$refs.ctxModal.hide();
- this.$refs.ctxReport.show();
- },
- sendReport(type) {
- let id = this.ctxMenuStatus.id;
- swal({
- 'title': 'Confirm Report',
- 'text': 'Are you sure you want to report this post?',
- 'icon': 'warning',
- 'buttons': true,
- 'dangerMode': true
- }).then((res) => {
- if(res) {
- axios.post('/i/report/', {
- 'report': type,
- 'type': 'post',
- 'id': id,
- }).then(res => {
- this.closeCtxMenu();
- swal('Report Sent!', 'We have successfully received your report.', 'success');
- }).catch(err => {
- swal('Oops!', 'There was an issue reporting this post.', 'error');
- })
- } else {
- this.closeCtxMenu();
- }
- });
- },
- closeModals() {
- this.$refs.ctxModal.hide();
- this.$refs.ctxModModal.hide();
- this.$refs.ctxModOtherModal.hide();
- this.$refs.ctxShareModal.hide();
- this.$refs.ctxEmbedModal.hide();
- this.$refs.ctxReport.hide();
- this.$refs.ctxReportOther.hide();
- this.$refs.ctxConfirm.hide();
- this.$refs.lightboxModal.hide();
- this.$refs.replyModal.hide();
- this.$refs.ctxStatusModal.hide();
- },
- openCtxStatusModal() {
- this.closeModals();
- this.$refs.ctxStatusModal.show();
- },
- openConfirmModal() {
- this.closeModals();
- this.$refs.ctxConfirm.show();
- },
- closeConfirmModal() {
- this.closeModals();
- this.confirmModalTitle = 'Are you sure?';
- this.confirmModalType = false;
- this.confirmModalIdentifer = null;
- },
- confirmModalConfirm() {
- switch(this.confirmModalType) {
- case 'post.delete':
- axios.post('/i/delete', {
- type: 'status',
- item: this.confirmModalIdentifer
- }).then(res => {
- this.feed = this.feed.filter(s => {
- return s.id != this.confirmModalIdentifer;
- });
- this.closeConfirmModal();
- }).catch(err => {
- this.closeConfirmModal();
- swal('Error', 'Something went wrong. Please try again later.', 'error');
- });
- break;
- }
- this.closeConfirmModal();
- },
- confirmModalCancel() {
- this.closeConfirmModal();
- },
- timeAgo(ts) {
- return App.util.format.timeAgo(ts);
- },
- }
- }
- </script>
|