aboutsummaryrefslogtreecommitdiff
path: root/src/components/timeline/timeline.vue
blob: e0a34bd1b24bdff2fc3c7761d3b87c990c244c53 (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
<template>
  <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">
        <conversation 
          v-for="status in timeline.visibleStatuses"
          class="status-fadein"
          :key="status.id"
          :statusoid="status"
          :collapsable="true"
        />
      </div>
    </div>
    <div :class="classes.footer">
      <div v-if="count===0" class="new-status-notification text-center panel-footer faint">
        {{$t('timeline.no_statuses')}}
      </div>
      <div v-else-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>
</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);
}
</style>