Sharkey/src/client/app/mobile/views/components/note-detail.vue

344 lines
8 KiB
Vue
Raw Normal View History

2018-04-07 20:30:37 +03:00
<template>
2018-11-24 21:26:07 +02:00
<div class="mk-note-detail" tabindex="-1">
2018-04-07 20:30:37 +03:00
<button
class="more"
v-if="appearNote.reply && appearNote.reply.replyId && conversation.length == 0"
2018-05-25 15:05:16 +03:00
@click="fetchConversation"
:disabled="conversationFetching"
2018-04-07 20:30:37 +03:00
>
<template v-if="!conversationFetching"><fa icon="ellipsis-v"/></template>
2018-11-13 15:45:28 +02:00
<template v-if="conversationFetching"><fa icon="spinner" pulse/></template>
2018-04-07 20:30:37 +03:00
</button>
2018-05-25 15:05:16 +03:00
<div class="conversation">
<x-sub v-for="note in conversation" :key="note.id" :note="note"/>
2018-04-07 20:30:37 +03:00
</div>
<div class="reply-to" v-if="appearNote.reply">
<x-sub :note="appearNote.reply"/>
2018-04-07 20:30:37 +03:00
</div>
2018-11-18 19:04:12 +02:00
<mk-renote class="renote" v-if="isRenote" :note="note" mini/>
2018-04-07 20:30:37 +03:00
<article>
<header>
<mk-avatar class="avatar" :user="appearNote.user"/>
2018-04-07 20:30:37 +03:00
<div>
2018-12-06 09:09:33 +02:00
<router-link class="name" :to="appearNote.user | userPage"><mk-user-name :user="appearNote.user"/></router-link>
<span class="username"><mk-acct :user="appearNote.user"/></span>
2018-04-07 20:30:37 +03:00
</div>
</header>
<div class="body">
<p v-if="appearNote.cw != null" class="cw">
<mfm v-if="appearNote.cw != ''" class="text" :text="appearNote.cw" :author="appearNote.user" :i="$store.state.i" :custom-emojis="appearNote.emojis" />
2018-12-08 03:36:26 +02:00
<mk-cw-button v-model="showContent" :note="appearNote"/>
2018-09-13 11:44:36 +03:00
</p>
<div class="content" v-show="appearNote.cw == null || showContent">
2018-09-13 11:44:36 +03:00
<div class="text">
<span v-if="appearNote.isHidden" style="opacity: 0.5">({{ $t('private') }})</span>
<span v-if="appearNote.deletedAt" style="opacity: 0.5">({{ $t('deleted') }})</span>
<mfm v-if="appearNote.text" :text="appearNote.text" :author="appearNote.user" :i="$store.state.i" :custom-emojis="appearNote.emojis"/>
2018-09-13 11:44:36 +03:00
</div>
<div class="files" v-if="appearNote.files.length > 0">
<mk-media-list :media-list="appearNote.files" :raw="true"/>
2018-09-13 11:44:36 +03:00
</div>
<mk-poll v-if="appearNote.poll" :note="appearNote"/>
2018-09-13 11:44:36 +03:00
<mk-url-preview v-for="url in urls" :url="url" :key="url" :detail="true"/>
<a class="location" v-if="appearNote.geo" :href="`https://maps.google.com/maps?q=${appearNote.geo.coordinates[1]},${appearNote.geo.coordinates[0]}`" target="_blank"><fa icon="map-marker-alt"/> {{ $t('location') }}</a>
<div class="map" v-if="appearNote.geo" ref="map"></div>
<div class="renote" v-if="appearNote.renote">
<mk-note-preview :note="appearNote.renote"/>
2018-09-13 11:44:36 +03:00
</div>
2018-04-07 20:30:37 +03:00
</div>
</div>
<router-link class="time" :to="appearNote | notePage">
<mk-time :time="appearNote.createdAt" mode="detail"/>
2018-04-07 20:30:37 +03:00
</router-link>
<div class="visibility-info">
<span class="visibility" v-if="appearNote.visibility != 'public'">
<fa v-if="appearNote.visibility == 'home'" icon="home"/>
<fa v-if="appearNote.visibility == 'followers'" icon="unlock"/>
<fa v-if="appearNote.visibility == 'specified'" icon="envelope"/>
</span>
<span class="localOnly" v-if="appearNote.localOnly == true"><fa icon="heart"/></span>
</div>
2018-04-07 20:30:37 +03:00
<footer>
<mk-reactions-viewer :note="appearNote"/>
2018-11-24 21:26:07 +02:00
<button @click="reply()" :title="$t('title')">
<template v-if="appearNote.reply"><fa icon="reply-all"/></template>
<template v-else><fa icon="reply"/></template>
<p class="count" v-if="appearNote.repliesCount > 0">{{ appearNote.repliesCount }}</p>
2018-04-07 20:30:37 +03:00
</button>
<button v-if="['public', 'home'].includes(appearNote.visibility)" @click="renote()" title="Renote">
<fa icon="retweet"/><p class="count" v-if="appearNote.renoteCount > 0">{{ appearNote.renoteCount }}</p>
2018-04-07 20:30:37 +03:00
</button>
<button v-else>
<fa icon="ban"/>
</button>
<button v-if="!isMyNote && appearNote.myReaction == null" class="reactionButton" @click="react()" ref="reactButton">
<fa icon="plus"/>
2018-04-07 20:30:37 +03:00
</button>
<button v-if="!isMyNote && appearNote.myReaction != null" class="reactionButton reacted" @click="undoReact(appearNote)" ref="reactButton">
<fa icon="minus"/>
</button>
2018-11-24 21:26:07 +02:00
<button @click="menu()" ref="menuButton">
<fa icon="ellipsis-h"/>
2018-04-07 20:30:37 +03:00
</button>
</footer>
</article>
<div class="replies" v-if="!compact">
<x-sub v-for="note in replies" :key="note.id" :note="note"/>
</div>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
import i18n from '../../../i18n';
2018-05-29 09:38:48 +03:00
import XSub from './note.sub.vue';
import noteSubscriber from '../../../common/scripts/note-subscriber';
2018-11-24 21:26:07 +02:00
import noteMixin from '../../../common/scripts/note-mixin';
2018-04-07 20:30:37 +03:00
export default Vue.extend({
i18n: i18n('mobile/views/components/note-detail.vue'),
2018-11-24 21:26:07 +02:00
2018-04-07 20:30:37 +03:00
components: {
XSub
},
2018-11-24 21:26:07 +02:00
mixins: [noteMixin(), noteSubscriber('note')],
2018-04-07 20:30:37 +03:00
props: {
note: {
type: Object,
required: true
},
compact: {
default: false
}
},
data() {
return {
2018-05-25 15:05:16 +03:00
conversation: [],
conversationFetching: false,
2018-09-01 14:47:49 +03:00
replies: []
2018-04-07 20:30:37 +03:00
};
},
mounted() {
// Get replies
if (!this.compact) {
2018-11-09 01:13:34 +02:00
this.$root.api('notes/replies', {
noteId: this.appearNote.id,
2018-04-07 20:30:37 +03:00
limit: 8
}).then(replies => {
this.replies = replies;
});
}
},
methods: {
2018-05-29 05:29:02 +03:00
fetchConversation() {
2018-05-25 15:05:16 +03:00
this.conversationFetching = true;
2018-04-07 20:30:37 +03:00
2018-05-25 15:05:16 +03:00
// Fetch conversation
2018-11-09 01:13:34 +02:00
this.$root.api('notes/conversation', {
noteId: this.appearNote.replyId
2018-05-25 15:05:16 +03:00
}).then(conversation => {
this.conversationFetching = false;
this.conversation = conversation.reverse();
2018-04-07 20:30:37 +03:00
});
}
}
});
</script>
<style lang="stylus" scoped>
2018-09-27 08:32:48 +03:00
.mk-note-detail
2018-04-07 20:30:37 +03:00
overflow hidden
width 100%
text-align left
2018-09-26 14:28:13 +03:00
background var(--face)
2018-04-07 20:30:37 +03:00
border-radius 8px
2018-12-03 02:14:17 +02:00
box-shadow 0 4px 16px rgba(#000, 0.1)
@media (min-width 500px)
box-shadow 0 8px 32px rgba(#000, 0.1)
2018-04-07 20:30:37 +03:00
> .fetching
padding 64px 0
> .more
display block
margin 0
padding 10px 0
width 100%
font-size 1em
text-align center
color #999
cursor pointer
2018-09-27 05:55:17 +03:00
background var(--subNoteBg)
2018-04-07 20:30:37 +03:00
outline none
border none
2018-09-27 05:55:17 +03:00
border-bottom solid 1px var(--faceDivider)
2018-04-07 20:30:37 +03:00
border-radius 6px 6px 0 0
box-shadow none
&:hover
2018-09-27 05:55:17 +03:00
box-shadow 0 0 0 100px inset rgba(0, 0, 0, 0.05)
2018-04-07 20:30:37 +03:00
2018-09-27 05:55:17 +03:00
&:active
box-shadow 0 0 0 100px inset rgba(0, 0, 0, 0.1)
2018-04-07 20:30:37 +03:00
2018-05-25 15:05:16 +03:00
> .conversation
2018-04-07 20:30:37 +03:00
> *
2018-09-27 05:55:17 +03:00
border-bottom 1px solid var(--faceDivider)
2018-04-07 20:30:37 +03:00
2018-11-18 19:04:12 +02:00
> .renote + article
padding-top 8px
2018-04-07 20:30:37 +03:00
> .reply-to
2018-09-27 05:55:17 +03:00
border-bottom 1px solid var(--faceDivider)
2018-04-07 20:30:37 +03:00
> article
padding 14px 16px 9px 16px
@media (min-width 500px)
padding 28px 32px 18px 32px
&:after
content ""
display block
clear both
> header
display flex
line-height 1.1em
2018-04-07 20:30:37 +03:00
2018-04-29 11:17:15 +03:00
> .avatar
2018-04-07 20:30:37 +03:00
display block
2018-04-29 11:17:15 +03:00
margin 0 12px 0 0
width 54px
height 54px
border-radius 8px
2018-04-07 20:30:37 +03:00
2018-04-29 11:17:15 +03:00
@media (min-width 500px)
width 60px
height 60px
2018-04-07 20:30:37 +03:00
> div
> .name
display inline-block
margin .4em 0
2018-09-27 05:55:17 +03:00
color var(--noteHeaderName)
2018-04-07 20:30:37 +03:00
font-size 16px
font-weight bold
text-align left
text-decoration none
&:hover
text-decoration underline
> .username
display block
text-align left
margin 0
2018-09-27 08:32:48 +03:00
color var(--noteHeaderAcct)
2018-04-07 20:30:37 +03:00
> .body
padding 8px 0
2018-09-13 11:44:36 +03:00
> .cw
cursor default
display block
margin 0
padding 0
overflow-wrap break-word
2018-09-27 08:32:48 +03:00
color var(--noteText)
2018-09-13 11:44:36 +03:00
> .text
margin-right 8px
> .content
2018-04-07 20:30:37 +03:00
2018-09-13 11:44:36 +03:00
> .text
display block
margin 0
padding 0
overflow-wrap break-word
font-size 16px
2018-09-27 08:32:48 +03:00
color var(--noteText)
2018-04-07 20:30:37 +03:00
2018-09-13 11:44:36 +03:00
@media (min-width 500px)
font-size 24px
2018-04-07 20:30:37 +03:00
2018-09-13 11:44:36 +03:00
> .renote
margin 8px 0
2018-04-07 20:30:37 +03:00
2018-09-13 11:44:36 +03:00
> *
padding 16px
2018-09-27 17:09:23 +03:00
border dashed 1px var(--quoteBorder)
2018-09-13 11:44:36 +03:00
border-radius 8px
2018-04-07 20:30:37 +03:00
2018-09-13 11:44:36 +03:00
> .location
margin 4px 0
font-size 12px
color #ccc
2018-04-07 20:30:37 +03:00
2018-09-13 11:44:36 +03:00
> .map
width 100%
height 200px
&:empty
display none
> .mk-url-preview
margin-top 8px
> .files
> img
display block
max-width 100%
2018-04-07 20:30:37 +03:00
> .time
font-size 16px
2018-09-27 08:32:48 +03:00
color var(--noteHeaderInfo)
2018-04-07 20:30:37 +03:00
> .visibility-info
color var(--noteHeaderInfo)
> .localOnly
margin-left 4px
2018-04-07 20:30:37 +03:00
> footer
font-size 1.2em
> button
margin 0
padding 8px
background transparent
border none
box-shadow none
font-size 1em
2018-09-27 05:55:17 +03:00
color var(--noteActions)
2018-04-07 20:30:37 +03:00
cursor pointer
&:not(:last-child)
margin-right 28px
&:hover
2018-09-27 08:32:48 +03:00
color var(--noteActionsHover)
2018-04-07 20:30:37 +03:00
> .count
display inline
margin 0 0 0 8px
2018-12-27 21:30:37 +02:00
color var(--text)
opacity 0.7
2018-04-07 20:30:37 +03:00
&.reacted
2018-09-26 14:19:35 +03:00
color var(--primary)
2018-04-07 20:30:37 +03:00
> .replies
> *
2018-09-27 05:55:17 +03:00
border-top 1px solid var(--faceDivider)
2018-04-07 20:30:37 +03:00
</style>