iceshrimp-legacy/src/client/app/desktop/views/components/note.vue

380 lines
8.3 KiB
Vue
Raw Normal View History

2018-04-07 19:30:37 +02:00
<template>
<div
class="note"
:class="{ mini }"
v-show="appearNote.deletedAt == null"
:tabindex="appearNote.deletedAt == null ? '-1' : null"
v-hotkey="keymap"
:title="title"
>
<div class="conversation" v-if="detail && conversation.length > 0">
<x-sub v-for="note in conversation" :key="note.id" :note="note" :mini="mini"/>
</div>
2018-10-12 07:28:48 +02:00
<div class="reply-to" v-if="appearNote.reply && (!$store.getters.isSignedIn || $store.state.settings.showReplyTarget)">
<x-sub :note="appearNote.reply" :mini="mini"/>
2018-04-07 19:30:37 +02:00
</div>
<div class="renote" v-if="isRenote">
2018-04-29 10:17:15 +02:00
<mk-avatar class="avatar" :user="note.user"/>
<fa icon="retweet"/>
2018-05-20 13:26:38 +02:00
<span>{{ '%i18n:@reposted-by%'.substr(0, '%i18n:@reposted-by%'.indexOf('{')) }}</span>
<router-link class="name" :to="note.user | userPage" v-user-preview="note.userId">{{ note.user | userName }}</router-link>
2018-05-20 13:26:38 +02:00
<span>{{ '%i18n:@reposted-by%'.substr('%i18n:@reposted-by%'.indexOf('}') + 1) }}</span>
2018-04-07 19:30:37 +02:00
<mk-time :time="note.createdAt"/>
</div>
<article>
2018-10-12 07:28:48 +02:00
<mk-avatar class="avatar" :user="appearNote.user"/>
2018-04-07 19:30:37 +02:00
<div class="main">
2018-10-12 07:28:48 +02:00
<mk-note-header class="header" :note="appearNote"/>
2018-04-07 19:30:37 +02:00
<div class="body">
2018-10-12 07:28:48 +02:00
<p v-if="appearNote.cw != null" class="cw">
<span class="text" v-if="appearNote.cw != ''">{{ appearNote.cw }}</span>
2018-09-13 11:01:50 +02:00
<mk-cw-button v-model="showContent"/>
2018-04-22 10:04:52 +02:00
</p>
2018-10-12 07:28:48 +02:00
<div class="content" v-show="appearNote.cw == null || showContent">
2018-04-22 10:04:52 +02:00
<div class="text">
2018-10-12 07:28:48 +02:00
<span v-if="appearNote.isHidden" style="opacity: 0.5">%i18n:@private%</span>
<a class="reply" v-if="appearNote.reply"><fa icon="reply"/></a>
<misskey-flavored-markdown v-if="appearNote.text" :text="appearNote.text" :i="$store.state.i" :class="$style.text" :customEmojis="appearNote.emojis"/>
2018-10-20 00:01:09 +02:00
<a class="rp" v-if="appearNote.renote">RN:</a>
2018-04-22 10:04:52 +02:00
</div>
2018-10-12 07:28:48 +02:00
<div class="files" v-if="appearNote.files.length > 0">
<mk-media-list :media-list="appearNote.files"/>
2018-04-22 10:04:52 +02:00
</div>
2018-10-12 07:28:48 +02:00
<mk-poll v-if="appearNote.poll" :note="appearNote" ref="pollViewer"/>
<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"/> 位置情報</a>
<div class="renote" v-if="appearNote.renote"><mk-note-preview :note="appearNote.renote" :mini="mini"/></div>
<mk-url-preview v-for="url in urls" :url="url" :key="url" :mini="mini"/>
2018-04-07 19:30:37 +02:00
</div>
</div>
2018-10-12 21:48:09 +02:00
<footer>
2018-10-12 07:28:48 +02:00
<mk-reactions-viewer :note="appearNote" ref="reactionsViewer"/>
2018-09-18 07:50:13 +02:00
<button class="replyButton" @click="reply()" title="%i18n:@reply%">
<template v-if="appearNote.reply"><fa icon="reply-all"/></template>
<template v-else><fa icon="reply"/></template>
2018-10-12 07:28:48 +02:00
<p class="count" v-if="appearNote.repliesCount > 0">{{ appearNote.repliesCount }}</p>
2018-04-07 19:30:37 +02:00
</button>
2018-09-18 07:50:13 +02:00
<button class="renoteButton" @click="renote()" title="%i18n:@renote%">
<fa icon="retweet"/><p class="count" v-if="appearNote.renoteCount > 0">{{ appearNote.renoteCount }}</p>
2018-04-07 19:30:37 +02:00
</button>
2018-10-12 07:28:48 +02:00
<button class="reactionButton" :class="{ reacted: appearNote.myReaction != null }" @click="react()" ref="reactButton" title="%i18n:@add-reaction%">
<fa icon="plus"/><p class="count" v-if="appearNote.reactions_count > 0">{{ appearNote.reactions_count }}</p>
2018-04-07 19:30:37 +02:00
</button>
2018-09-18 09:45:20 +02:00
<button @click="menu()" ref="menuButton">
<fa icon="ellipsis-h"/>
2018-04-07 19:30:37 +02:00
</button>
</footer>
</div>
</article>
<div class="replies" v-if="detail && replies.length > 0">
<x-sub v-for="note in replies" :key="note.id" :note="note" :mini="mini"/>
</div>
2018-04-07 19:30:37 +02:00
</div>
</template>
<script lang="ts">
import Vue from 'vue';
import XSub from './note.sub.vue';
2018-10-12 07:28:48 +02:00
import noteMixin from '../../../common/scripts/note-mixin';
import noteSubscriber from '../../../common/scripts/note-subscriber';
2018-04-07 19:30:37 +02:00
export default Vue.extend({
components: {
XSub
},
2018-10-12 07:28:48 +02:00
mixins: [
noteMixin(),
noteSubscriber('note')
],
2018-09-13 10:44:36 +02:00
props: {
note: {
type: Object,
required: true
},
detail: {
type: Boolean,
required: false,
default: false
},
mini: {
type: Boolean,
required: false,
default: false
}
},
data() {
return {
conversation: [],
replies: []
};
},
created() {
if (this.detail) {
(this as any).api('notes/replies', {
noteId: this.appearNote.id,
limit: 8
}).then(replies => {
this.replies = replies;
});
(this as any).api('notes/conversation', {
noteId: this.appearNote.replyId
}).then(conversation => {
this.conversation = conversation.reverse();
});
2018-09-13 10:44:36 +02:00
}
2018-04-07 19:30:37 +02:00
}
});
</script>
<style lang="stylus" scoped>
2018-09-27 16:17:33 +02:00
.note
2018-04-07 19:30:37 +02:00
margin 0
padding 0
2018-09-26 13:28:13 +02:00
background var(--face)
2018-09-26 17:54:37 +02:00
border-bottom solid 1px var(--faceDivider)
2018-04-07 19:30:37 +02:00
&.mini
font-size 13px
> .renote
padding 8px 16px 0 16px
.avatar
width 20px
height 20px
2018-04-07 19:30:37 +02:00
> article
padding 16px 16px 4px
> .avatar
margin 0 10px 8px 0
width 42px
height 42px
2018-04-20 00:45:37 +02:00
2018-04-07 19:30:37 +02:00
&:last-of-type
border-bottom none
&:focus
z-index 1
&:after
content ""
pointer-events none
position absolute
top 2px
right 2px
bottom 2px
left 2px
2018-09-26 13:19:35 +02:00
border 2px solid var(--primaryAlpha03)
2018-04-07 19:30:37 +02:00
border-radius 4px
> .renote
display flex
2018-05-06 14:13:21 +02:00
align-items center
2018-05-28 08:09:06 +02:00
padding 16px 32px 8px 32px
line-height 28px
2018-05-18 07:41:44 +02:00
white-space pre
2018-09-26 19:46:53 +02:00
color var(--renoteText)
background linear-gradient(to bottom, var(--renoteGradient) 0%, var(--face) 100%)
2018-04-07 19:30:37 +02:00
2018-04-29 10:17:15 +02:00
.avatar
flex-shrink 0
display inline-block
2018-04-29 10:17:15 +02:00
width 28px
height 28px
margin 0 8px 0 0
border-radius 6px
2018-04-07 19:30:37 +02:00
[data-icon]
margin-right 4px
2018-04-07 19:30:37 +02:00
> span
flex-shrink 0
2018-04-07 19:30:37 +02:00
&:last-of-type
margin-right 8px
2018-04-07 19:30:37 +02:00
.name
overflow hidden
flex-shrink 1
text-overflow ellipsis
white-space nowrap
font-weight bold
2018-04-07 19:30:37 +02:00
> .mk-time
display block
margin-left auto
flex-shrink 0
2018-04-07 19:30:37 +02:00
font-size 0.9em
& + article
padding-top 8px
> article
2018-05-29 08:21:03 +02:00
display flex
2018-04-07 19:30:37 +02:00
padding 28px 32px 18px 32px
&:hover
> .main > footer > button
2018-09-27 04:55:17 +02:00
color var(--noteActionsHighlighted)
2018-04-07 19:30:37 +02:00
2018-04-29 10:17:15 +02:00
> .avatar
2018-05-29 08:21:03 +02:00
flex-shrink 0
2018-04-07 19:30:37 +02:00
display block
margin 0 16px 10px 0
2018-04-29 10:17:15 +02:00
width 58px
height 58px
border-radius 8px
2018-04-07 19:30:37 +02:00
//position -webkit-sticky
//position sticky
//top 74px
> .main
2018-05-29 08:21:03 +02:00
flex 1
min-width 0
2018-04-07 19:30:37 +02:00
2018-06-08 13:57:02 +02:00
> .header
2018-04-07 19:30:37 +02:00
margin-bottom 4px
> .body
2018-04-22 10:04:52 +02:00
> .cw
2018-04-07 19:30:37 +02:00
cursor default
display block
margin 0
padding 0
overflow-wrap break-word
2018-09-27 07:32:48 +02:00
color var(--noteText)
2018-04-07 19:30:37 +02:00
2018-04-22 10:04:52 +02:00
> .text
2018-04-07 19:30:37 +02:00
margin-right 8px
2018-04-22 10:04:52 +02:00
> .content
2018-04-07 19:30:37 +02:00
2018-04-22 10:04:52 +02:00
> .text
cursor default
display block
margin 0
padding 0
overflow-wrap break-word
2018-09-27 07:32:48 +02:00
color var(--noteText)
2018-04-07 19:30:37 +02:00
2018-04-22 10:04:52 +02:00
>>> .title
2018-04-07 19:30:37 +02:00
display block
2018-04-22 10:04:52 +02:00
margin-bottom 4px
padding 4px
font-size 90%
text-align center
2018-09-27 16:09:23 +02:00
background var(--mfmTitleBg)
2018-04-22 10:04:52 +02:00
border-radius 4px
>>> .code
margin 8px 0
>>> .quote
margin 8px
padding 6px 12px
2018-09-27 16:17:33 +02:00
color var(--mfmQuote)
border-left solid 3px var(--mfmQuoteLine)
2018-04-22 10:04:52 +02:00
> .reply
margin-right 8px
2018-09-27 16:09:23 +02:00
color var(--text)
2018-04-22 10:04:52 +02:00
> .rp
margin-left 4px
font-style oblique
2018-09-27 16:09:23 +02:00
color var(--renoteText)
2018-04-22 10:04:52 +02:00
> .location
margin 4px 0
font-size 12px
color #ccc
2018-04-07 19:30:37 +02:00
2018-04-22 10:04:52 +02:00
> .map
width 100%
height 300px
&:empty
display none
.mk-url-preview
margin-top 8px
> .mk-poll
font-size 80%
2018-04-07 19:30:37 +02:00
2018-04-22 10:04:52 +02:00
> .renote
margin 8px 0
2018-04-07 19:30:37 +02:00
2018-09-13 10:44:36 +02:00
> *
2018-04-22 10:04:52 +02:00
padding 16px
2018-09-27 16:09:23 +02:00
border dashed 1px var(--quoteBorder)
2018-04-22 10:04:52 +02:00
border-radius 8px
2018-04-07 19:30:37 +02:00
> footer
> button
margin 0 28px 0 0
padding 0 8px
line-height 32px
font-size 1em
2018-09-27 04:55:17 +02:00
color var(--noteActions)
2018-04-07 19:30:37 +02:00
background transparent
border none
cursor pointer
&:last-child
margin-right 0
2018-04-07 19:30:37 +02:00
&:hover
2018-09-27 04:55:17 +02:00
color var(--noteActionsHover)
2018-08-17 00:16:56 +02:00
&.replyButton:hover
2018-09-27 04:55:17 +02:00
color var(--noteActionsReplyHover)
2018-08-17 00:16:56 +02:00
&.renoteButton:hover
2018-09-27 04:55:17 +02:00
color var(--noteActionsRenoteHover)
2018-08-17 00:16:56 +02:00
&.reactionButton:hover
2018-09-27 04:55:17 +02:00
color var(--noteActionsReactionHover)
2018-04-07 19:30:37 +02:00
> .count
display inline
margin 0 0 0 8px
color #999
2018-08-17 00:16:56 +02:00
&.reacted, &.reacted:hover
2018-09-27 04:55:17 +02:00
color var(--noteActionsReactionHover)
2018-04-07 19:30:37 +02:00
</style>
<style lang="stylus" module>
.text
code
padding 4px 8px
margin 0 0.5em
font-size 80%
color #525252
background #f8f8f8
border-radius 2px
pre > code
padding 16px
margin 0
[data-is-me]:after
content "you"
padding 0 4px
margin-left 4px
font-size 80%
2018-09-26 13:19:35 +02:00
color var(--primaryForeground)
background var(--primary)
2018-04-07 19:30:37 +02:00
border-radius 4px
</style>