aboutsummaryrefslogtreecommitdiff
path: root/src/components/timeline/timeline.vue
blob: 74909f6d0be9a3ae7b8ddf5a393c14ac453c325d (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
<template>
  <div>
    <div v-if="!currentUser" class="login-hint panel panel-default">
      <div class="panel-body">
        <router-link :to="{ name: 'login' }">
          {{ $t("login.hint") }}
        </router-link>
      </div>
    </div>
    <div :class="classes.root">
      <div :class="classes.header">
        <div class="title">
          {{title}}
        </div>
        <div @click.prevent class="loadmore-error alert error" v-if="timelineError">
          {{$t('timeline.error_fetching')}}
        </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 faint" v-if="!timeline.newStatusCount > 0 && !timelineError">
          {{$t('timeline.up_to_date')}}
        </div>
      </div>
      <div :class="classes.body">
        <div class="timeline">
          <status-or-conversation v-for="status in timeline.visibleStatuses" :key="status.id" v-bind:statusoid="status" class="status-fadein"></status-or-conversation>
        </div>
      </div>
      <div :class="classes.footer">
        <div v-if="bottomedOut" class="new-status-notification text-center panel-footer faint">
          {{$t('timeline.no_more_statuses')}}
        </div>
        <a v-else-if="!timeline.loading" href="#" v-on:click.prevent='fetchOlderStatuses()'>
          <div class="new-status-notification text-center panel-footer">{{$t('timeline.load_older')}}</div>
        </a>
        <div v-else class="new-status-notification text-center panel-footer">
          <i class="icon-spin3 animate-spin"/>
        </div>
      </div>
    </div>
  </div>
</template>

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

<style lang="scss">
@import '../../_variables.scss';

.timeline {
  .loadmore-text {
    opacity: 1;
  }
}

.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;
  background-color: $fallback--fg;
  background-color: var(--panel, $fallback--fg);
}

.login-hint {
  text-align: center;
  
  @media all and (min-width: 801px) {
    display: none;
  }

  a {
    display: inline-block;
    padding: 1em 0px;
    width: 100%;
  }
}
</style>