2018-02-15 02:20:28 -06:00
|
|
|
<template>
|
|
|
|
<div class="mk-notification-preview" :class="notification.type">
|
|
|
|
<template v-if="notification.type == 'reaction'">
|
2018-06-01 07:55:27 -05:00
|
|
|
<mk-avatar class="avatar" :user="notification.user"/>
|
2018-02-15 02:20:28 -06:00
|
|
|
<div class="text">
|
2018-12-06 01:09:33 -06:00
|
|
|
<p><mk-reaction-icon :reaction="notification.reaction"/><mk-user-name :user="notification.user"/></p>
|
2018-11-05 10:40:11 -06:00
|
|
|
<p class="note-ref"><fa icon="quote-left"/>{{ getNoteSummary(notification.note) }}<fa icon="quote-right"/></p>
|
2018-02-15 02:20:28 -06:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2018-04-07 12:30:37 -05:00
|
|
|
<template v-if="notification.type == 'renote'">
|
2018-06-01 07:55:27 -05:00
|
|
|
<mk-avatar class="avatar" :user="notification.note.user"/>
|
2018-02-15 02:20:28 -06:00
|
|
|
<div class="text">
|
2018-12-06 01:09:33 -06:00
|
|
|
<p><fa icon="retweet"/><mk-user-name :user="notification.note.user"/></p>
|
2018-11-05 10:40:11 -06:00
|
|
|
<p class="note-ref"><fa icon="quote-left"/>{{ getNoteSummary(notification.note.renote) }}<fa icon="quote-right"/></p>
|
2018-02-15 02:20:28 -06:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<template v-if="notification.type == 'quote'">
|
2018-06-01 07:55:27 -05:00
|
|
|
<mk-avatar class="avatar" :user="notification.note.user"/>
|
2018-02-15 02:20:28 -06:00
|
|
|
<div class="text">
|
2018-12-06 01:09:33 -06:00
|
|
|
<p><fa icon="quote-left"/><mk-user-name :user="notification.note.user"/></p>
|
2018-04-07 12:30:37 -05:00
|
|
|
<p class="note-preview">{{ getNoteSummary(notification.note) }}</p>
|
2018-02-15 02:20:28 -06:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<template v-if="notification.type == 'follow'">
|
2018-06-01 07:55:27 -05:00
|
|
|
<mk-avatar class="avatar" :user="notification.user"/>
|
2018-02-15 02:20:28 -06:00
|
|
|
<div class="text">
|
2018-12-06 01:09:33 -06:00
|
|
|
<p><fa icon="user-plus"/><mk-user-name :user="notification.user"/></p>
|
2018-02-15 02:20:28 -06:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2018-06-02 02:13:32 -05:00
|
|
|
<template v-if="notification.type == 'receiveFollowRequest'">
|
2018-06-01 07:55:27 -05:00
|
|
|
<mk-avatar class="avatar" :user="notification.user"/>
|
|
|
|
<div class="text">
|
2018-12-06 01:09:33 -06:00
|
|
|
<p><fa icon="user-clock"/><mk-user-name :user="notification.user"/></p>
|
2018-06-01 07:55:27 -05:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2018-02-15 02:20:28 -06:00
|
|
|
<template v-if="notification.type == 'reply'">
|
2018-06-01 07:55:27 -05:00
|
|
|
<mk-avatar class="avatar" :user="notification.note.user"/>
|
2018-02-15 02:20:28 -06:00
|
|
|
<div class="text">
|
2018-12-06 01:09:33 -06:00
|
|
|
<p><fa icon="reply"/><mk-user-name :user="notification.note.user"/></p>
|
2018-04-07 12:30:37 -05:00
|
|
|
<p class="note-preview">{{ getNoteSummary(notification.note) }}</p>
|
2018-02-15 02:20:28 -06:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<template v-if="notification.type == 'mention'">
|
2018-06-01 07:55:27 -05:00
|
|
|
<mk-avatar class="avatar" :user="notification.note.user"/>
|
2018-02-15 02:20:28 -06:00
|
|
|
<div class="text">
|
2018-12-06 01:09:33 -06:00
|
|
|
<p><fa icon="at"/><mk-user-name :user="notification.note.user"/></p>
|
2018-04-07 12:30:37 -05:00
|
|
|
<p class="note-preview">{{ getNoteSummary(notification.note) }}</p>
|
2018-02-15 02:20:28 -06:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<template v-if="notification.type == 'poll_vote'">
|
2018-06-01 07:55:27 -05:00
|
|
|
<mk-avatar class="avatar" :user="notification.user"/>
|
2018-02-15 02:20:28 -06:00
|
|
|
<div class="text">
|
2018-12-06 01:09:33 -06:00
|
|
|
<p><fa icon="chart-pie"/><mk-user-name :user="notification.user"/></p>
|
2018-11-05 10:40:11 -06:00
|
|
|
<p class="note-ref"><fa icon="quote-left"/>{{ getNoteSummary(notification.note) }}<fa icon="quote-right"/></p>
|
2018-02-15 02:20:28 -06:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-07-07 05:19:00 -05:00
|
|
|
import getNoteSummary from '../../../../../misc/get-note-summary';
|
2018-02-15 02:20:28 -06:00
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
props: ['notification'],
|
|
|
|
data() {
|
|
|
|
return {
|
2018-04-09 04:52:29 -05:00
|
|
|
getNoteSummary
|
2018-02-15 02:20:28 -06:00
|
|
|
};
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
|
|
|
.mk-notification-preview
|
|
|
|
margin 0
|
|
|
|
padding 8px
|
|
|
|
color #fff
|
|
|
|
overflow-wrap break-word
|
|
|
|
|
|
|
|
&:after
|
|
|
|
content ""
|
|
|
|
display block
|
|
|
|
clear both
|
|
|
|
|
2018-06-01 07:55:27 -05:00
|
|
|
> .avatar
|
2018-02-15 02:20:28 -06:00
|
|
|
display block
|
|
|
|
float left
|
2018-06-01 07:55:27 -05:00
|
|
|
width 36px
|
|
|
|
height 36px
|
2018-02-15 02:20:28 -06:00
|
|
|
border-radius 6px
|
|
|
|
|
2018-06-01 07:55:27 -05:00
|
|
|
> .text
|
2018-02-15 02:20:28 -06:00
|
|
|
float right
|
|
|
|
width calc(100% - 36px)
|
|
|
|
padding-left 8px
|
|
|
|
|
|
|
|
p
|
|
|
|
margin 0
|
|
|
|
|
2018-11-05 13:10:30 -06:00
|
|
|
[data-icon], mk-reaction-icon
|
2018-02-15 02:20:28 -06:00
|
|
|
margin-right 4px
|
|
|
|
|
2018-04-07 12:30:37 -05:00
|
|
|
.note-ref
|
2018-02-15 02:20:28 -06:00
|
|
|
|
2018-11-05 10:40:11 -06:00
|
|
|
[data-icon]
|
2018-02-15 02:20:28 -06:00
|
|
|
font-size 1em
|
|
|
|
font-weight normal
|
|
|
|
font-style normal
|
|
|
|
display inline-block
|
|
|
|
margin-right 3px
|
|
|
|
|
2018-04-07 12:30:37 -05:00
|
|
|
&.renote, &.quote
|
2018-11-05 13:10:30 -06:00
|
|
|
.text p [data-icon]
|
2018-02-15 02:20:28 -06:00
|
|
|
color #77B255
|
|
|
|
|
|
|
|
&.follow
|
2018-11-05 13:10:30 -06:00
|
|
|
.text p [data-icon]
|
2018-02-15 02:20:28 -06:00
|
|
|
color #53c7ce
|
|
|
|
|
2018-06-02 02:13:32 -05:00
|
|
|
&.receiveFollowRequest
|
2018-11-05 13:10:30 -06:00
|
|
|
.text p [data-icon]
|
2018-06-01 07:55:27 -05:00
|
|
|
color #888
|
|
|
|
|
2018-02-15 02:20:28 -06:00
|
|
|
&.reply, &.mention
|
2018-11-05 13:10:30 -06:00
|
|
|
.text p [data-icon]
|
2018-02-15 02:20:28 -06:00
|
|
|
color #fff
|
|
|
|
|
|
|
|
</style>
|
|
|
|
|