aboutsummaryrefslogtreecommitdiff
path: root/src/components/notification/notification.js
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2018-06-18 12:09:14 +0300
committerHenry Jameson <me@hjkos.com>2018-07-06 20:12:09 +0300
commitfa8c221f3a6f9b1421e29aa014304576810a08e6 (patch)
tree37a7f735983b6ab0e021808344ac82d9b0c2bcae /src/components/notification/notification.js
parentf911182a2f608bc0589fc16210fdbc9673f6cc4e (diff)
moved style generator into separate file. notifications are highlighted too now.
Diffstat (limited to 'src/components/notification/notification.js')
-rw-r--r--src/components/notification/notification.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/components/notification/notification.js b/src/components/notification/notification.js
index 3a274374..d2dd91de 100644
--- a/src/components/notification/notification.js
+++ b/src/components/notification/notification.js
@@ -1,6 +1,7 @@
import Status from '../status/status.vue'
import StillImage from '../still-image/still-image.vue'
import UserCardContent from '../user_card_content/user_card_content.vue'
+import { highlightClass, highlightStyle } from '../../services/user_highlighter/user_highlighter.js'
const Notification = {
data () {
@@ -18,6 +19,14 @@ const Notification = {
toggleUserExpanded () {
this.userExpanded = !this.userExpanded
}
+ },
+ computed: {
+ userClass () {
+ return highlightClass(this.notification.action.user, this.$store)
+ },
+ userStyle () {
+ return highlightStyle(this.notification.action.user, this.$store)
+ },
}
}