aboutsummaryrefslogtreecommitdiff
path: root/src/components/notification/notification.vue
blob: 88f4e886ae390571130160a8df6473a5c4ec2bfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<template>
  <status
    v-if="notification.type === 'mention'"
    :compact="true"
    :statusoid="notification.status"
  />
  <div
    v-else
    class="non-mention"
    :class="[userClass, { highlighted: userStyle }]"
    :style="[ userStyle ]"
  >
    <a
      class="avatar-container"
      :href="notification.from_profile.statusnet_profile_url"
      @click.stop.prevent.capture="toggleUserExpanded"
    >
      <UserAvatar
        :compact="true"
        :better-shadow="betterShadow"
        :user="notification.from_profile"
      />
    </a>
    <div class="notification-right">
      <UserCard
        v-if="userExpanded"
        :user="getUser(notification)"
        :rounded="true"
        :bordered="true"
      />
      <span class="notification-details">
        <div class="name-and-action">
          <span
            v-if="!!notification.from_profile.name_html"
            class="username"
            :title="'@'+notification.from_profile.screen_name"
            v-html="notification.from_profile.name_html"
          />
          <span
            v-else
            class="username"
            :title="'@'+notification.from_profile.screen_name"
          >{{ notification.from_profile.name }}</span>
          <span v-if="notification.type === 'like'">
            <i class="fa icon-star lit" />
            <small>{{ $t('notifications.favorited_you') }}</small>
          </span>
          <span v-if="notification.type === 'repeat'">
            <i
              class="fa icon-retweet lit"
              :title="$t('tool_tip.repeat')"
            />
            <small>{{ $t('notifications.repeated_you') }}</small>
          </span>
          <span v-if="notification.type === 'follow'">
            <i class="fa icon-user-plus lit" />
            <small>{{ $t('notifications.followed_you') }}</small>
          </span>
        </div>
        <div
          v-if="notification.type === 'follow'"
          class="timeago"
        >
          <span class="faint">
            <Timeago
              :time="notification.created_at"
              :auto-update="240"
            />
          </span>
        </div>
        <div
          v-else
          class="timeago"
        >
          <router-link
            v-if="notification.status"
            :to="{ name: 'conversation', params: { id: notification.status.id } }"
            class="faint-link"
          >
            <Timeago
              :time="notification.created_at"
              :auto-update="240"
            />
          </router-link>
        </div>
      </span>
      <div
        v-if="notification.type === 'follow'"
        class="follow-text"
      >
        <router-link :to="userProfileLink(notification.from_profile)">
          @{{ notification.from_profile.screen_name }}
        </router-link>
      </div>
      <template v-else>
        <status
          class="faint"
          :compact="true"
          :statusoid="notification.action"
          :no-heading="true"
        />
      </template>
    </div>
  </div>
</template>

<script src="./notification.js"></script>