aboutsummaryrefslogtreecommitdiff
path: root/src/components/notifications/notifications.vue
blob: c9113bc4820ce44ef81de68129ef3997a5555cb8 (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
<template>
  <div class="notifications">
    <div class="panel panel-default base00-background">
      <div class="panel-heading base01-background base04">
        <span class="unseen-count" v-if="unseenCount">{{unseenCount}}</span>
        Notifications
        <button @click.prevent="markAsSeen" class="base05 base01-background read-button">Read!</button>
      </div>
      <div class="panel-body base03-border">
        <div v-for="notification in visibleNotifications" :key="notification" class="notification" :class='{"unseen": !notification.seen}'>
          <a :href="notification.action.user.statusnet_profile_url">
            <img class='avatar' :src="notification.action.user.profile_image_url_original">
          </a>
          <div class='text' style="width: 100%;">
            <div v-if="notification.type === 'favorite'">
              <h1>
                <span :title="'@'+notification.action.user.screen_name">{{ notification.action.user.name }}</span>
                <i class="fa icon-star"></i>
                <small><router-link :to="{ name: 'conversation', params: { id: notification.status.id } }"><timeago :since="notification.action.created_at" :auto-update="240"></timeago></router-link></small>
              </h1>
            <div v-html="notification.status.statusnet_html"></div>
            </div>
            <div v-if="notification.type === 'repeat'">
              <h1>
                <span :title="'@'+notification.action.user.screen_name">{{ notification.action.user.name }}</span>
                <i class="fa icon-retweet lit"></i>
                <small><router-link :to="{ name: 'conversation', params: { id: notification.status.id } }"><timeago :since="notification.action.created_at" :auto-update="240"></timeago></router-link></small>
              </h1>
            <div v-html="notification.status.statusnet_html"></div>
            </div>
            <div v-if="notification.type === 'mention'">
              <h1>
                <span :title="'@'+notification.action.user.screen_name">{{ notification.action.user.name }}</span>
                <i class="fa icon-reply lit"></i>
                <small><router-link :to="{ name: 'conversation', params: { id: notification.status.id } }"><timeago :since="notification.action.created_at" :auto-update="240"></timeago></router-link></small>
              </h1>
              <status :compact="true" :statusoid="notification.status"></status>
            </div>
            <div v-if="notification.type === 'follow'">
              <h1>
                <span :title="'@'+notification.action.user.screen_name">{{ notification.action.user.name }}</span>
                <i class="fa icon-user-plus lit"></i>
              </h1>
              <div>
                <router-link :to="{ name: 'user-profile', params: { id: notification.action.user.id } }">@{{ notification.action.user.screen_name }}</router-link> followed you
              </div>
            </div>
          </div>
        </div>
      </div>
    </div>
  </div>
</template>

<script src="./notifications.js"></script>
<style lang="scss" src="./notifications.scss"></style>