aboutsummaryrefslogtreecommitdiff
path: root/src/components/update_notification/update_notification.vue
blob: d0e2499c80e44982a679aa819d4ecb90fe531796 (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
<template>
  <Modal
    :is-open="!!shouldShow"
    class="UpdateNotification"
    :no-background="true"
  >
    <div
      class="UpdateNotificationModal panel"
      :class="{ '-peek': !showingMore }"
      :style="dynamicStyles"
    >
      <div class="panel-heading">
        <span class="title">
          {{ $t('update.big_update_title') }}
        </span>
      </div>
      <div class="panel-body">
        <div class="content">
          <img
            class="pleroma-tan"
            :src="pleromaTanVariant"
            :style="pleromaTanStyles"
          >
          <div class="spacer-top" />
          <div class="text">
            <p>
              {{ $t('update.big_update_content') }}
            </p>
            <div
              ref="animatedText"
              class="extra-info-group"
            >
              <i18n-t
                keypath="update.update_bugs"
                tag="p"
              >
                <template #pleromaGitlab>
                  <a
                    target="_blank"
                    href="https://git.pleroma.social/"
                  >{{ $t('update.update_bugs_gitlab') }}</a>
                </template>
              </i18n-t>
              <i18n-t
                keypath="update.update_changelog"
                tag="p"
              >
                <template #theFullChangelog>
                  <a
                    target="_blank"
                    href="https://pleroma.social/announcements/"
                  >{{ $t('update.update_changelog_here') }}</a>
                </template>
              </i18n-t>
              <p class="art-credit">
                <i18n-t
                  keypath="update.art_by"
                  tag="small"
                >
                  <template #linkToArtist>
                    <a
                      target="_blank"
                      href="https://post.ebin.club/pipivovott"
                    >pipivovott</a>
                  </template>
                </i18n-t>
              </p>
            </div>
          </div>
          <div class="spacer-bottom" />
        </div>
      </div>
      <div class="panel-footer">
        <button
          class="button-default"
          @click.prevent="neverShowAgain"
        >
          {{ $t("general.never_show_again") }}
        </button>
        <button
          v-if="!showingMore"
          class="button-default"
          @click.prevent="toggleShow"
        >
          {{ $t("general.show_more") }}
        </button>
        <button
          class="button-default"
          @click.prevent="dismiss"
        >
          {{ $t("general.dismiss") }}
        </button>
      </div>
    </div>
  </Modal>
</template>

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

<style src="./update_notification.scss" lang="scss"></style>