2017-02-17 08:25:29 +11:00
|
|
|
import StyleSwitcher from '../style_switcher/style_switcher.vue'
|
|
|
|
|
|
|
|
const settings = {
|
2017-02-23 10:04:47 +11:00
|
|
|
data () {
|
|
|
|
return {
|
2017-02-23 10:59:48 +11:00
|
|
|
hideAttachmentsLocal: this.$store.state.config.hideAttachments,
|
2017-02-23 10:38:05 +11:00
|
|
|
hideNsfwLocal: this.$store.state.config.hideNsfw
|
2017-02-23 10:04:47 +11:00
|
|
|
}
|
|
|
|
},
|
2017-02-17 08:25:29 +11:00
|
|
|
components: {
|
|
|
|
StyleSwitcher
|
2017-02-23 10:04:47 +11:00
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
hideAttachmentsLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'hideAttachments', value })
|
2017-02-23 10:59:48 +11:00
|
|
|
},
|
2017-02-23 10:38:05 +11:00
|
|
|
hideNsfwLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'hideNsfw', value })
|
|
|
|
}
|
2017-02-17 08:25:29 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default settings
|