aboutsummaryrefslogtreecommitdiff
path: root/src/components/settings/settings.vue
blob: d6dbab271bd7f9065094bd61a1358d03247f4ead (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
<template>
<div class="settings panel panel-default">
  <div class="panel-heading">
    {{$t('settings.settings')}}
  </div>
  <div class="panel-body">
    <div class="setting-item">
      <h2>{{$t('settings.theme')}}</h2>
      <style-switcher></style-switcher>
    </div>
    <div class="setting-item">
      <h2>{{$t('settings.filtering')}}</h2>
      <p>{{$t('settings.filtering_explanation')}}</p>
      <textarea id="muteWords" v-model="muteWordsString"></textarea>
    </div>
    <div class="setting-item">
      <h2>{{$t('nav.timeline')}}</h2>
      <ul class="setting-list">
        <li>
          <input type="checkbox" id="streaming" v-model="streamingLocal">
          <label for="streaming">{{$t('settings.streaming')}}</label>
          <ul class="setting-list suboptions" :class="[{disabled: !streamingLocal}]">
            <li>
              <input :disabled="!streamingLocal" type="checkbox" id="pauseOnUnfocused" v-model="pauseOnUnfocusedLocal">
              <label for="pauseOnUnfocused">{{$t('settings.pauseOnUnfocused')}}</label>
            </li>
          </ul>
        </li>
        <li>
          <input type="checkbox" id="autoload" v-model="autoLoadLocal">
          <label for="autoload">{{$t('settings.autoload')}}</label>
        </li>
        <li>
          <input type="checkbox" id="hoverPreview" v-model="hoverPreviewLocal">
          <label for="hoverPreview">{{$t('settings.reply_link_preview')}}</label>
        </li>
      </ul>
    </div>
    <div class="setting-item">
      <h2>{{$t('settings.attachments')}}</h2>
      <ul class="setting-list">
        <li>
          <input type="checkbox" id="hideAttachments" v-model="hideAttachmentsLocal">
          <label for="hideAttachments">{{$t('settings.hide_attachments_in_tl')}}</label>
        </li>
        <li>
          <input type="checkbox" id="hideAttachmentsInConv" v-model="hideAttachmentsInConvLocal">
          <label for="hideAttachmentsInConv">{{$t('settings.hide_attachments_in_convo')}}</label>
        </li>
        <li>
          <input type="checkbox" id="hideNsfw" v-model="hideNsfwLocal">
          <label for="hideNsfw">{{$t('settings.nsfw_clickthrough')}}</label>
        </li>
        <li>
          <input type="checkbox" id="stopGifs" v-model="stopGifs">
          <label for="stopGifs">{{$t('settings.stop_gifs')}}</label>
        </li>
      </ul>
    </div>
  </div>
</div>
</template>

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

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

.setting-item {
  border-bottom: 2px solid var(--btn, $fallback--btn);
  margin: 1em 1em 1.4em;
  padding-bottom: 1.4em;


  textarea {
    width: 100%;
    height: 100px;
  }

  .old-avatar {
    width: 128px;
    border-radius: $fallback--avatarRadius;
    border-radius: var(--avatarRadius, $fallback--avatarRadius);
  }

  .new-avatar {
    object-fit: cover;
    width: 128px;
    height: 128px;
    border-radius: $fallback--avatarRadius;
    border-radius: var(--avatarRadius, $fallback--avatarRadius);
  }

  .btn {
    margin-top: 1em;
    min-height: 28px;
    width: 10em;
  }
}
.setting-list {
  list-style-type: none;
  padding-left: 2em;
  li {
    margin-bottom: 0.5em;
  }
  .suboptions {
    margin-top: 0.3em
  }
}
</style>