aboutsummaryrefslogtreecommitdiff
path: root/src/components/timeline/timeline.vue
blob: 9d2e1ea1faa8c57e22e73981b20e791416ddb7c0 (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
<template>
  <div class="timeline panel panel-default" v-if="viewing == 'statuses'">
    <div class="panel-heading timeline-heading base02-background base04">
      <div class="title">
        {{title}}
      </div>
      <button @click.prevent="showNewStatuses" class="base05 base02-background loadmore-button" v-if="timeline.newStatusCount > 0 && !timelineError">
        {{$t('timeline.show_new')}}{{newStatusCountStr}}
      </button>
      <div @click.prevent class="base06 error  loadmore-text" v-if="timelineError">
        {{$t('timeline.error_fetching')}}
      </div>
      <div @click.prevent class="base04 base02-background loadmore-text" v-if="!timeline.newStatusCount > 0 && !timelineError">
        {{$t('timeline.up_to_date')}}
      </div>
    </div>
    <div class="panel-body base01-background">
      <div class="timeline">
        <status-or-conversation v-for="status in timeline.visibleStatuses" :key="status.id" v-bind:statusoid="status"></status-or-conversation>
        <a href="#" v-on:click.prevent='fetchOlderStatuses()' v-if="!timeline.loading">
          <div class="base02-background base03-border new-status-notification text-center">{{$t('timeline.load_older')}}</div>
        </a>
          <div class="base02-background base03-border new-status-notification text-center" v-else>...</div>
      </div>
    </div>
  </div>
  <div class="timeline panel panel-default" v-else-if="viewing == 'followers'">
    <div class="panel-heading timeline-heading base02-background base04">
      <div class="title">
        {{$t('user_card.followers')}}
      </div>
    </div>
    <div class="panel-body base01-background">
      <div class="timeline">
        <user-card v-for="follower in followers" :user="follower" :showFollows="false"></user-card>
      </div>
    </div>
  </div>
  <div class="timeline panel panel-default" v-else-if="viewing == 'friends'">
    <div class="panel-heading timeline-heading base02-background base04">
      <div class="title">
        {{$t('user_card.followees')}}
      </div>
    </div>
    <div class="panel-body base01-background">
      <div class="timeline">
        <user-card v-for="friend in friends" :user="friend" :showFollows="true"></user-card>
      </div>
    </div>
  </div>
</template>
<script src="./timeline.js"></script>

<style lang="scss">

  .timeline {
    .timeline-heading {
      position: relative;
      display: flex;
    }
    .title {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 70%;
    }
    .loadmore-button {
      position: absolute;
      right: 0.6em;
      font-size: 14px;

      min-width: 6em;
      height: 1.8em;
      line-height: 100%;
    }
    .loadmore-text {
      position: absolute;
      right: 0.6em;
      font-size: 14px;
      min-width: 6em;
      border-radius: 5px;
      font-family: sans-serif;
      text-align: center;
      padding: 0 0.5em 0 0.5em;
      opacity: 0.8;
    }
    .error {
      background-color: rgba(255, 48, 16, 0.65);
    }
  }

  .new-status-notification {
    position:relative;
    margin-top: -1px;
    font-size: 1.1em;
    border-width: 1px 0 0 0;
    border-style: solid;
    border-radius: 0 0 10px 10px;
    padding: 10px;
    z-index: 1;
  }
</style>