Sharkey/src/client/app/mobile/views/components/notification-preview.vue

138 lines
3.4 KiB
Vue
Raw Normal View History

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