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

138 lines
3.3 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-03-29 08:48:47 +03:00
<img class="avatar" :src="`${notification.user.avatarUrl}?thumbnail&size=64`" alt="avatar"/>
2018-02-15 10:20:28 +02:00
<div class="text">
2018-04-05 19:36:34 +03:00
<p><mk-reaction-icon :reaction="notification.reaction"/>{{ name }}</p>
2018-04-07 20:30:37 +03:00
<p class="note-ref">%fa:quote-left%{{ getNoteSummary(notification.note) }}%fa: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'">
<img class="avatar" :src="`${notification.note.user.avatarUrl}?thumbnail&size=64`" alt="avatar"/>
2018-02-15 10:20:28 +02:00
<div class="text">
2018-04-07 20:30:37 +03:00
<p>%fa:retweet%{{ noteerName }}</p>
<p class="note-ref">%fa:quote-left%{{ getNoteSummary(notification.note.renote) }}%fa:quote-right%</p>
2018-02-15 10:20:28 +02:00
</div>
</template>
<template v-if="notification.type == 'quote'">
2018-04-07 20:30:37 +03:00
<img class="avatar" :src="`${notification.note.user.avatarUrl}?thumbnail&size=64`" alt="avatar"/>
2018-02-15 10:20:28 +02:00
<div class="text">
2018-04-07 20:30:37 +03:00
<p>%fa:quote-left%{{ noteerName }}</p>
<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-03-29 08:48:47 +03:00
<img class="avatar" :src="`${notification.user.avatarUrl}?thumbnail&size=64`" alt="avatar"/>
2018-02-15 10:20:28 +02:00
<div class="text">
2018-04-05 19:36:34 +03:00
<p>%fa:user-plus%{{ name }}</p>
2018-02-15 10:20:28 +02:00
</div>
</template>
<template v-if="notification.type == 'reply'">
2018-04-07 20:30:37 +03:00
<img class="avatar" :src="`${notification.note.user.avatarUrl}?thumbnail&size=64`" alt="avatar"/>
2018-02-15 10:20:28 +02:00
<div class="text">
2018-04-07 20:30:37 +03:00
<p>%fa:reply%{{ noteerName }}</p>
<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-04-07 20:30:37 +03:00
<img class="avatar" :src="`${notification.note.user.avatarUrl}?thumbnail&size=64`" alt="avatar"/>
2018-02-15 10:20:28 +02:00
<div class="text">
2018-04-07 20:30:37 +03:00
<p>%fa:at%{{ noteerName }}</p>
<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-03-29 08:48:47 +03:00
<img class="avatar" :src="`${notification.user.avatarUrl}?thumbnail&size=64`" alt="avatar"/>
2018-02-15 10:20:28 +02:00
<div class="text">
2018-04-05 19:36:34 +03:00
<p>%fa:chart-pie%{{ name }}</p>
2018-04-07 20:30:37 +03:00
<p class="note-ref">%fa:quote-left%{{ getNoteSummary(notification.note) }}%fa:quote-right%</p>
2018-02-15 10:20:28 +02:00
</div>
</template>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
2018-04-07 20:30:37 +03:00
import getNoteSummary from '../../../../../renderers/get-note-summary';
2018-04-05 19:36:34 +03:00
import getUserName from '../../../../../renderers/get-user-name';
2018-02-15 10:20:28 +02:00
export default Vue.extend({
props: ['notification'],
2018-04-05 19:36:34 +03:00
computed: {
name() {
return getUserName(this.notification.user);
},
2018-04-07 20:30:37 +03:00
noteerName() {
return getUserName(this.notification.note.user);
2018-04-05 19:36:34 +03:00
}
},
2018-02-15 10:20:28 +02:00
data() {
return {
2018-04-07 20:30:37 +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
img
display block
float left
min-width 36px
min-height 36px
max-width 36px
max-height 36px
border-radius 6px
.text
float right
width calc(100% - 36px)
padding-left 8px
p
margin 0
i, mk-reaction-icon
margin-right 4px
2018-04-07 20:30:37 +03:00
.note-ref
2018-02-15 10:20:28 +02:00
[data-fa]
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-02-15 10:20:28 +02:00
.text p i
color #77B255
&.follow
.text p i
color #53c7ce
&.reply, &.mention
.text p i
color #fff
</style>