aboutsummaryrefslogtreecommitdiff
path: root/src/components/timeline/timeline.vue
blob: aa3a8bff8672c825c2b2699cb22dc7de09f94a03 (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
108
109
110
111
112
<template>
  <div class="timeline panel panel-default" v-if="viewing == 'statuses'">
    <div class="panel-heading timeline-heading">
      <div class="title">
        {{title}}
      </div>
      <button @click.prevent="showNewStatuses" class="loadmore-button" v-if="timeline.newStatusCount > 0 && !timelineError">
        {{$t('timeline.show_new')}}{{newStatusCountStr}}
      </button>
      <div @click.prevent class="loadmore-text" v-if="timelineError">
        {{$t('timeline.error_fetching')}}
      </div>
      <div @click.prevent class="loadmore-text" v-if="!timeline.newStatusCount > 0 && !timelineError">
        {{$t('timeline.up_to_date')}}
      </div>
    </div>
    <div class="panel-body">
      <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="new-status-notification text-center">{{$t('timeline.load_older')}}</div>
        </a>
          <div class="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">
      <div class="title">
        {{$t('user_card.followers')}}
      </div>
    </div>
    <div class="panel-body">
      <div class="timeline">
        <user-card v-for="follower in followers" :key="follower.id" :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">
      <div class="title">
        {{$t('user_card.followees')}}
      </div>
    </div>
    <div class="panel-body">
      <div class="timeline">
        <user-card v-for="friend in friends" :key="friend.id" :user="friend" :showFollows="true"></user-card>
      </div>
    </div>
  </div>
</template>
<script src="./timeline.js"></script>

<style lang="scss">
@import '../../_variables.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;
        background-color: transparent;
        color: $fallback--faint;
        color: var(--faint, $fallback--faint);
        font-family: sans-serif;
        text-align: center;
        padding: 0 0.5em 0 0.5em;
        opacity: 0.8;
    }

    .error {
        color: $fallback--lightFg;
        color: var(--lightFg, $fallback--lightFg);
        background-color: $fallback--cRed;
        background-color: var(--cRed, $fallback--cRed);
    }
}

.new-status-notification {
    position:relative;
    margin-top: -1px;
    font-size: 1.1em;
    border-width: 1px 0 0 0;
    border-style: solid;
    border-color: var(--border, $fallback--border);
    padding: 10px;
    z-index: 1;
  }
</style>