2018-04-07 19:30:37 +02:00
|
|
|
<template>
|
|
|
|
<div class="mk-note-detail" :title="title">
|
|
|
|
<button
|
|
|
|
class="read-more"
|
2018-05-25 14:05:16 +02:00
|
|
|
v-if="p.reply && p.reply.replyId && conversation.length == 0"
|
2018-05-19 23:36:26 +02:00
|
|
|
title="%i18n:@more%"
|
2018-05-25 14:05:16 +02:00
|
|
|
@click="fetchConversation"
|
|
|
|
:disabled="conversationFetching"
|
2018-04-07 19:30:37 +02:00
|
|
|
>
|
2018-05-25 14:05:16 +02:00
|
|
|
<template v-if="!conversationFetching">%fa:ellipsis-v%</template>
|
|
|
|
<template v-if="conversationFetching">%fa:spinner .pulse%</template>
|
2018-04-07 19:30:37 +02:00
|
|
|
</button>
|
2018-05-25 14:05:16 +02:00
|
|
|
<div class="conversation">
|
|
|
|
<x-sub v-for="note in conversation" :key="note.id" :note="note"/>
|
2018-04-07 19:30:37 +02:00
|
|
|
</div>
|
|
|
|
<div class="reply-to" v-if="p.reply">
|
|
|
|
<x-sub :note="p.reply"/>
|
|
|
|
</div>
|
|
|
|
<div class="renote" v-if="isRenote">
|
|
|
|
<p>
|
2018-04-29 10:17:15 +02:00
|
|
|
<mk-avatar class="avatar" :user="note.user"/>
|
2018-04-07 19:30:37 +02:00
|
|
|
%fa:retweet%
|
2018-04-09 11:52:29 +02:00
|
|
|
<router-link class="name" :href="note.user | userPage">{{ note.user | userName }}</router-link>
|
2018-05-25 13:23:36 +02:00
|
|
|
<span>{{ '%i18n:@reposted-by%'.substr(0, '%i18n:@reposted-by%'.indexOf('{')) }}</span>
|
|
|
|
<a class="name" :href="note.user | userPage" v-user-preview="note.userId">{{ note.user | userName }}</a>
|
|
|
|
<span>{{ '%i18n:@reposted-by%'.substr('%i18n:@reposted-by%'.indexOf('}') + 1) }}</span>
|
|
|
|
<mk-time :time="note.createdAt"/>
|
2018-04-07 19:30:37 +02:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<article>
|
2018-04-29 10:17:15 +02:00
|
|
|
<mk-avatar class="avatar" :user="p.user"/>
|
2018-04-07 19:30:37 +02:00
|
|
|
<header>
|
2018-04-09 11:52:29 +02:00
|
|
|
<router-link class="name" :to="p.user | userPage" v-user-preview="p.user.id">{{ p.user | userName }}</router-link>
|
2018-05-18 07:31:30 +02:00
|
|
|
<span class="username"><mk-acct :user="p.user"/></span>
|
2018-04-09 11:52:29 +02:00
|
|
|
<router-link class="time" :to="p | notePage">
|
2018-04-07 19:30:37 +02:00
|
|
|
<mk-time :time="p.createdAt"/>
|
|
|
|
</router-link>
|
|
|
|
</header>
|
|
|
|
<div class="body">
|
2018-09-13 10:44:36 +02:00
|
|
|
<p v-if="p.cw != null" class="cw">
|
|
|
|
<span class="text" v-if="p.cw != ''">{{ p.cw }}</span>
|
2018-09-13 11:01:50 +02:00
|
|
|
<mk-cw-button v-model="showContent"/>
|
2018-09-13 10:44:36 +02:00
|
|
|
</p>
|
|
|
|
<div class="content" v-show="p.cw == null || showContent">
|
|
|
|
<div class="text">
|
|
|
|
<span v-if="p.isHidden" style="opacity: 0.5">%i18n:@private%</span>
|
|
|
|
<span v-if="p.deletedAt" style="opacity: 0.5">%i18n:@deleted%</span>
|
|
|
|
<misskey-flavored-markdown v-if="p.text" :text="p.text" :i="$store.state.i"/>
|
|
|
|
</div>
|
|
|
|
<div class="files" v-if="p.files.length > 0">
|
|
|
|
<mk-media-list :media-list="p.files" :raw="true"/>
|
|
|
|
</div>
|
|
|
|
<mk-poll v-if="p.poll" :note="p"/>
|
|
|
|
<mk-url-preview v-for="url in urls" :url="url" :key="url" :detail="true"/>
|
|
|
|
<a class="location" v-if="p.geo" :href="`https://maps.google.com/maps?q=${p.geo.coordinates[1]},${p.geo.coordinates[0]}`" target="_blank">%fa:map-marker-alt% %i18n:@location%</a>
|
|
|
|
<div class="map" v-if="p.geo" ref="map"></div>
|
|
|
|
<div class="renote" v-if="p.renote">
|
|
|
|
<mk-note-preview :note="p.renote"/>
|
|
|
|
</div>
|
2018-04-07 19:30:37 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<footer>
|
|
|
|
<mk-reactions-viewer :note="p"/>
|
2018-08-17 00:16:56 +02:00
|
|
|
<button class="replyButton" @click="reply" title="">
|
2018-04-18 00:23:27 +02:00
|
|
|
<template v-if="p.reply">%fa:reply-all%</template>
|
|
|
|
<template v-else>%fa:reply%</template>
|
|
|
|
<p class="count" v-if="p.repliesCount > 0">{{ p.repliesCount }}</p>
|
2018-04-07 19:30:37 +02:00
|
|
|
</button>
|
2018-08-17 00:16:56 +02:00
|
|
|
<button class="renoteButton" @click="renote" title="%i18n:@renote%">
|
2018-04-07 19:30:37 +02:00
|
|
|
%fa:retweet%<p class="count" v-if="p.renoteCount > 0">{{ p.renoteCount }}</p>
|
|
|
|
</button>
|
2018-08-17 00:16:56 +02:00
|
|
|
<button class="reactionButton" :class="{ reacted: p.myReaction != null }" @click="react" ref="reactButton" title="%i18n:@add-reaction%">
|
2018-04-07 19:30:37 +02:00
|
|
|
%fa:plus%<p class="count" v-if="p.reactions_count > 0">{{ p.reactions_count }}</p>
|
|
|
|
</button>
|
|
|
|
<button @click="menu" ref="menuButton">
|
|
|
|
%fa:ellipsis-h%
|
|
|
|
</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';
|
2018-06-20 18:21:57 +02:00
|
|
|
import parse from '../../../../../mfm/parse';
|
2018-04-07 19:30:37 +02:00
|
|
|
|
|
|
|
import MkPostFormWindow from './post-form-window.vue';
|
|
|
|
import MkRenoteFormWindow from './renote-form-window.vue';
|
|
|
|
import MkNoteMenu from '../../../common/views/components/note-menu.vue';
|
|
|
|
import MkReactionPicker from '../../../common/views/components/reaction-picker.vue';
|
2018-05-29 08:38:48 +02:00
|
|
|
import XSub from './notes.note.sub.vue';
|
2018-09-06 21:21:04 +02:00
|
|
|
import { sum } from '../../../../../prelude/array';
|
2018-04-07 19:30:37 +02:00
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
components: {
|
|
|
|
XSub
|
|
|
|
},
|
|
|
|
|
|
|
|
props: {
|
|
|
|
note: {
|
|
|
|
type: Object,
|
|
|
|
required: true
|
|
|
|
},
|
|
|
|
compact: {
|
|
|
|
default: false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
2018-09-13 10:44:36 +02:00
|
|
|
showContent: false,
|
2018-05-25 14:05:16 +02:00
|
|
|
conversation: [],
|
|
|
|
conversationFetching: false,
|
2018-04-07 19:30:37 +02:00
|
|
|
replies: []
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
computed: {
|
|
|
|
isRenote(): boolean {
|
|
|
|
return (this.note.renote &&
|
|
|
|
this.note.text == null &&
|
2018-09-05 12:32:46 +02:00
|
|
|
this.note.fileIds.length == 0 &&
|
2018-04-07 19:30:37 +02:00
|
|
|
this.note.poll == null);
|
|
|
|
},
|
2018-09-13 10:44:36 +02:00
|
|
|
|
2018-04-07 19:30:37 +02:00
|
|
|
p(): any {
|
|
|
|
return this.isRenote ? this.note.renote : this.note;
|
|
|
|
},
|
2018-09-13 10:44:36 +02:00
|
|
|
|
2018-04-07 19:30:37 +02:00
|
|
|
reactionsCount(): number {
|
|
|
|
return this.p.reactionCounts
|
2018-09-06 21:21:04 +02:00
|
|
|
? sum(Object.values(this.p.reactionCounts))
|
2018-04-07 19:30:37 +02:00
|
|
|
: 0;
|
|
|
|
},
|
2018-09-13 10:44:36 +02:00
|
|
|
|
2018-04-07 19:30:37 +02:00
|
|
|
title(): string {
|
2018-08-06 20:20:26 +02:00
|
|
|
return new Date(this.p.createdAt).toLocaleString();
|
2018-04-07 19:30:37 +02:00
|
|
|
},
|
2018-09-13 10:44:36 +02:00
|
|
|
|
2018-04-07 19:30:37 +02:00
|
|
|
urls(): string[] {
|
|
|
|
if (this.p.text) {
|
|
|
|
const ast = parse(this.p.text);
|
|
|
|
return ast
|
|
|
|
.filter(t => (t.type == 'url' || t.type == 'link') && !t.silent)
|
|
|
|
.map(t => t.url);
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
mounted() {
|
|
|
|
// Get replies
|
|
|
|
if (!this.compact) {
|
|
|
|
(this as any).api('notes/replies', {
|
|
|
|
noteId: this.p.id,
|
|
|
|
limit: 8
|
|
|
|
}).then(replies => {
|
|
|
|
this.replies = replies;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// Draw map
|
|
|
|
if (this.p.geo) {
|
2018-05-27 06:49:09 +02:00
|
|
|
const shouldShowMap = this.$store.getters.isSignedIn ? this.$store.state.settings.showMaps : true;
|
2018-04-07 19:30:37 +02:00
|
|
|
if (shouldShowMap) {
|
|
|
|
(this as any).os.getGoogleMaps().then(maps => {
|
|
|
|
const uluru = new maps.LatLng(this.p.geo.coordinates[1], this.p.geo.coordinates[0]);
|
|
|
|
const map = new maps.Map(this.$refs.map, {
|
|
|
|
center: uluru,
|
|
|
|
zoom: 15
|
|
|
|
});
|
|
|
|
new maps.Marker({
|
|
|
|
position: uluru,
|
|
|
|
map: map
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
2018-05-25 14:05:16 +02:00
|
|
|
fetchConversation() {
|
|
|
|
this.conversationFetching = true;
|
2018-04-07 19:30:37 +02:00
|
|
|
|
2018-05-25 14:05:16 +02:00
|
|
|
// Fetch conversation
|
|
|
|
(this as any).api('notes/conversation', {
|
2018-04-07 19:30:37 +02:00
|
|
|
noteId: this.p.replyId
|
2018-05-25 14:05:16 +02:00
|
|
|
}).then(conversation => {
|
|
|
|
this.conversationFetching = false;
|
|
|
|
this.conversation = conversation.reverse();
|
2018-04-07 19:30:37 +02:00
|
|
|
});
|
|
|
|
},
|
2018-09-13 10:44:36 +02:00
|
|
|
|
2018-04-07 19:30:37 +02:00
|
|
|
reply() {
|
|
|
|
(this as any).os.new(MkPostFormWindow, {
|
|
|
|
reply: this.p
|
|
|
|
});
|
|
|
|
},
|
2018-09-13 10:44:36 +02:00
|
|
|
|
2018-04-07 19:30:37 +02:00
|
|
|
renote() {
|
|
|
|
(this as any).os.new(MkRenoteFormWindow, {
|
|
|
|
note: this.p
|
|
|
|
});
|
|
|
|
},
|
2018-09-13 10:44:36 +02:00
|
|
|
|
2018-04-07 19:30:37 +02:00
|
|
|
react() {
|
|
|
|
(this as any).os.new(MkReactionPicker, {
|
|
|
|
source: this.$refs.reactButton,
|
|
|
|
note: this.p
|
|
|
|
});
|
|
|
|
},
|
2018-09-13 10:44:36 +02:00
|
|
|
|
2018-04-07 19:30:37 +02:00
|
|
|
menu() {
|
|
|
|
(this as any).os.new(MkNoteMenu, {
|
|
|
|
source: this.$refs.menuButton,
|
|
|
|
note: this.p
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2018-09-27 07:32:48 +02:00
|
|
|
.mk-note-detail
|
2018-04-07 19:30:37 +02:00
|
|
|
overflow hidden
|
|
|
|
text-align left
|
2018-09-26 13:28:13 +02:00
|
|
|
background var(--face)
|
2018-09-22 13:39:12 +02:00
|
|
|
box-shadow var(--shadow)
|
|
|
|
border-radius var(--round)
|
2018-04-07 19:30:37 +02:00
|
|
|
|
|
|
|
> .read-more
|
|
|
|
display block
|
|
|
|
margin 0
|
|
|
|
padding 10px 0
|
|
|
|
width 100%
|
|
|
|
font-size 1em
|
|
|
|
text-align center
|
|
|
|
color #999
|
|
|
|
cursor pointer
|
2018-09-27 04:55:17 +02:00
|
|
|
background var(--subNoteBg)
|
2018-04-07 19:30:37 +02:00
|
|
|
outline none
|
|
|
|
border none
|
2018-09-27 04:55:17 +02:00
|
|
|
border-bottom solid 1px var(--faceDivider)
|
|
|
|
border-radius var(--round) var(--round) 0 0
|
2018-04-07 19:30:37 +02:00
|
|
|
|
|
|
|
&:hover
|
2018-09-27 04:55:17 +02:00
|
|
|
box-shadow 0 0 0 100px inset rgba(0, 0, 0, 0.05)
|
2018-04-07 19:30:37 +02:00
|
|
|
|
|
|
|
&:active
|
2018-09-27 04:55:17 +02:00
|
|
|
box-shadow 0 0 0 100px inset rgba(0, 0, 0, 0.1)
|
2018-04-07 19:30:37 +02:00
|
|
|
|
|
|
|
&:disabled
|
2018-09-27 04:55:17 +02:00
|
|
|
cursor wait
|
2018-04-07 19:30:37 +02:00
|
|
|
|
2018-05-25 14:05:16 +02:00
|
|
|
> .conversation
|
2018-04-07 19:30:37 +02:00
|
|
|
> *
|
2018-09-27 04:55:17 +02:00
|
|
|
border-bottom 1px solid var(--faceDivider)
|
2018-04-07 19:30:37 +02:00
|
|
|
|
|
|
|
> .renote
|
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
|
|
|
|
|
|
|
> p
|
|
|
|
margin 0
|
|
|
|
padding 16px 32px
|
|
|
|
|
2018-04-29 10:17:15 +02:00
|
|
|
.avatar
|
2018-04-07 19:30:37 +02:00
|
|
|
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-fa]
|
|
|
|
margin-right 4px
|
|
|
|
|
|
|
|
.name
|
|
|
|
font-weight bold
|
|
|
|
|
|
|
|
& + article
|
|
|
|
padding-top 8px
|
|
|
|
|
|
|
|
> .reply-to
|
2018-09-27 04:55:17 +02:00
|
|
|
border-bottom 1px solid var(--faceDivider)
|
2018-04-07 19:30:37 +02:00
|
|
|
|
|
|
|
> article
|
|
|
|
padding 28px 32px 18px 32px
|
|
|
|
|
|
|
|
&:after
|
|
|
|
content ""
|
|
|
|
display block
|
|
|
|
clear both
|
|
|
|
|
|
|
|
&:hover
|
2018-04-28 03:59:37 +02:00
|
|
|
> 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-04-07 19:30:37 +02:00
|
|
|
width 60px
|
|
|
|
height 60px
|
2018-04-29 10:17:15 +02:00
|
|
|
border-radius 8px
|
2018-04-07 19:30:37 +02:00
|
|
|
|
|
|
|
> header
|
|
|
|
position absolute
|
|
|
|
top 28px
|
|
|
|
left 108px
|
|
|
|
width calc(100% - 108px)
|
|
|
|
|
|
|
|
> .name
|
|
|
|
display inline-block
|
|
|
|
margin 0
|
|
|
|
line-height 24px
|
2018-09-27 04:55:17 +02:00
|
|
|
color var(--noteHeaderName)
|
2018-04-07 19:30:37 +02:00
|
|
|
font-size 18px
|
|
|
|
font-weight 700
|
|
|
|
text-align left
|
|
|
|
text-decoration none
|
|
|
|
|
|
|
|
&:hover
|
|
|
|
text-decoration underline
|
|
|
|
|
|
|
|
> .username
|
|
|
|
display block
|
|
|
|
text-align left
|
|
|
|
margin 0
|
2018-09-27 07:32:48 +02:00
|
|
|
color var(--noteHeaderAcct)
|
2018-04-07 19:30:37 +02:00
|
|
|
|
|
|
|
> .time
|
|
|
|
position absolute
|
|
|
|
top 0
|
|
|
|
right 32px
|
|
|
|
font-size 1em
|
2018-09-27 07:32:48 +02:00
|
|
|
color var(--noteHeaderInfo)
|
2018-04-07 19:30:37 +02:00
|
|
|
|
|
|
|
> .body
|
|
|
|
padding 8px 0
|
|
|
|
|
2018-09-13 10:44:36 +02:00
|
|
|
> .cw
|
2018-04-27 19:29:17 +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-27 19:29:17 +02:00
|
|
|
|
2018-09-13 10:44:36 +02:00
|
|
|
> .text
|
|
|
|
margin-right 8px
|
|
|
|
|
|
|
|
> .content
|
|
|
|
> .text
|
|
|
|
cursor default
|
|
|
|
display block
|
|
|
|
margin 0
|
|
|
|
padding 0
|
|
|
|
overflow-wrap break-word
|
|
|
|
font-size 1.5em
|
2018-09-27 07:32:48 +02:00
|
|
|
color var(--noteText)
|
2018-09-13 10:44:36 +02:00
|
|
|
|
|
|
|
> .renote
|
|
|
|
margin 8px 0
|
|
|
|
|
|
|
|
> *
|
|
|
|
padding 16px
|
2018-09-27 16:09:23 +02:00
|
|
|
border dashed 1px var(--quoteBorder)
|
2018-09-13 10:44:36 +02:00
|
|
|
border-radius 8px
|
|
|
|
|
|
|
|
> .location
|
|
|
|
margin 4px 0
|
|
|
|
font-size 12px
|
|
|
|
color #ccc
|
|
|
|
|
|
|
|
> .map
|
|
|
|
width 100%
|
|
|
|
height 300px
|
|
|
|
|
|
|
|
&:empty
|
|
|
|
display none
|
|
|
|
|
|
|
|
> .mk-url-preview
|
|
|
|
margin-top 8px
|
2018-04-07 19:30:37 +02:00
|
|
|
|
|
|
|
> footer
|
|
|
|
font-size 1.2em
|
|
|
|
|
|
|
|
> button
|
|
|
|
margin 0 28px 0 0
|
|
|
|
padding 8px
|
|
|
|
background transparent
|
|
|
|
border none
|
|
|
|
font-size 1em
|
2018-09-27 04:55:17 +02:00
|
|
|
color var(--noteActions)
|
2018-04-07 19:30:37 +02:00
|
|
|
cursor pointer
|
|
|
|
|
|
|
|
&: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
|
|
|
|
|
|
|
> .replies
|
|
|
|
> *
|
2018-09-27 04:55:17 +02:00
|
|
|
border-top 1px solid var(--faceDivider)
|
2018-04-07 19:30:37 +02:00
|
|
|
|
|
|
|
</style>
|