forked from AkkomaGang/akkoma-fe
Revert "Show actual status in notifications when mentioned."
This reverts commit 0e1ab69c33
.
This commit is contained in:
parent
7c0f3ea666
commit
74931dece7
5 changed files with 53 additions and 61 deletions
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<div class="timeline panel panel-default base00-background conversation">
|
||||
<div class="timeline panel panel-default base00-background">
|
||||
<div class="panel-heading base01-background base04">
|
||||
Conversation
|
||||
<div v-if="collapsable">
|
||||
|
@ -8,7 +8,7 @@
|
|||
</div>
|
||||
<div class="panel-body">
|
||||
<div class="timeline">
|
||||
<status v-for="status in conversation" :key="status.id" v-bind:statusoid="status" :expandable='false'></status>
|
||||
<status v-for="status in conversation" :key="status.id" v-bind:statusoid="status":expandable='false'></status>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
import { sortBy, take, filter } from 'lodash'
|
||||
import Status from '../status/status.vue'
|
||||
|
||||
const Notifications = {
|
||||
data () {
|
||||
|
@ -7,9 +6,6 @@ const Notifications = {
|
|||
visibleNotificationCount: 10
|
||||
}
|
||||
},
|
||||
components: {
|
||||
Status
|
||||
},
|
||||
computed: {
|
||||
notifications () {
|
||||
return this.$store.state.statuses.notifications
|
||||
|
|
|
@ -1,16 +1,8 @@
|
|||
@import '../../_variables.scss';
|
||||
.notification {
|
||||
border-bottom: 1px solid silver;
|
||||
|
||||
.notification-base {
|
||||
padding: 0.4em 0 0 0.7em;
|
||||
display: flex;
|
||||
.avatar {
|
||||
padding-top: 0.3em;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
border-radius: 50%;
|
||||
}
|
||||
border-bottom: 1px solid silver;
|
||||
|
||||
.text {
|
||||
min-width: 0px;
|
||||
|
@ -39,6 +31,12 @@
|
|||
margin-bottom: 0.3em;
|
||||
}
|
||||
}
|
||||
|
||||
.avatar {
|
||||
padding-top: 0.3em;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
&:last-child {
|
||||
|
|
|
@ -4,7 +4,6 @@
|
|||
<div class="panel-heading base01-background base04">Notifications ({{unseenCount}}) <button @click.prevent="markAsSeen">Read!</button></div>
|
||||
<div class="panel-body">
|
||||
<div v-for="notification in visibleNotifications" class="notification" :class='{"base01-background": notification.seen}'>
|
||||
<div class="notification-base">
|
||||
<a :href="notification.action.user.statusnet_profile_url">
|
||||
<img class='avatar' :src="notification.action.user.profile_image_url_original">
|
||||
</a>
|
||||
|
@ -20,11 +19,10 @@
|
|||
</div>
|
||||
<div v-if="notification.type === 'mention'">
|
||||
<h1>{{ notification.action.user.name }}<br><i class="fa icon-reply"></i> <router-link :to="{ name: 'conversation', params: { id: notification.status.id } }">mentioned</router-link> you</h1>
|
||||
<p>{{ notification.status.text }}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<status v-if="notification.type === 'mention'" :statusoid="notification.action" :expandable="false"></status>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<div class="status-el base00-background" v-if="!status.deleted">
|
||||
<div class="status-el base00-background" v-if="!status.deleted" v-bind:class="{ 'expanded-status': !expandable }">
|
||||
<template v-if="muted">
|
||||
<div class="media status container muted">
|
||||
<small><router-link :to="{ name: 'user-profile', params: { id: status.user.id } }">{{status.user.screen_name}}</router-link></small>
|
||||
|
@ -121,6 +121,10 @@
|
|||
}
|
||||
}
|
||||
|
||||
.expanded-status {
|
||||
border-left: 4px solid rgba(255, 48, 16, 0.65);
|
||||
}
|
||||
|
||||
.status-actions {
|
||||
padding-top: 5px;
|
||||
}
|
||||
|
@ -156,8 +160,4 @@
|
|||
border-radius: 1em;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
.conversation .status-el {
|
||||
border-left: 4px solid rgba(255, 48, 16, 0.65);
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in a new issue