aboutsummaryrefslogtreecommitdiff
path: root/src/components/settings/settings.js
blob: c1b88f823f176b685b6a199aa0e9a55ced63ce2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import StyleSwitcher from '../style_switcher/style_switcher.vue'

const settings = {
  data () {
    return {
      hideAttachmentsLocal: this.$store.state.config.hideAttachments,
      hideNsfwLocal: this.$store.state.config.hideNsfw
    }
  },
  components: {
    StyleSwitcher
  },
  watch: {
    hideAttachmentsLocal (value) {
      this.$store.dispatch('setOption', { name: 'hideAttachments', value })
    },
    hideNsfwLocal (value) {
      this.$store.dispatch('setOption', { name: 'hideNsfw', value })
    }
  }
}

export default settings