yandere_fe/src/components/settings/settings.js

38 lines
1.2 KiB
JavaScript
Raw Normal View History

2017-02-16 13:25:29 -08:00
import StyleSwitcher from '../style_switcher/style_switcher.vue'
2017-04-09 13:15:49 -07:00
import { filter, trim } from 'lodash'
2017-02-16 13:25:29 -08:00
const settings = {
2017-02-22 15:04:47 -08:00
data () {
return {
hideAttachmentsLocal: this.$store.state.config.hideAttachments,
hideAttachmentsInConvLocal: this.$store.state.config.hideAttachmentsInConv,
hideNsfwLocal: this.$store.state.config.hideNsfw,
autoLoadLocal: this.$store.state.config.autoLoad,
muteWordsString: this.$store.state.config.muteWords.join('\n')
2017-02-22 15:04:47 -08:00
}
},
2017-02-16 13:25:29 -08:00
components: {
StyleSwitcher
2017-02-22 15:04:47 -08:00
},
watch: {
hideAttachmentsLocal (value) {
this.$store.dispatch('setOption', { name: 'hideAttachments', value })
},
hideAttachmentsInConvLocal (value) {
this.$store.dispatch('setOption', { name: 'hideAttachmentsInConv', value })
},
2017-02-22 15:38:05 -08:00
hideNsfwLocal (value) {
this.$store.dispatch('setOption', { name: 'hideNsfw', value })
},
autoLoadLocal (value) {
this.$store.dispatch('setOption', { name: 'autoLoad', value })
},
muteWordsString (value) {
2017-04-09 13:15:49 -07:00
value = filter(value.split('\n'), (word) => trim(word).length > 0)
this.$store.dispatch('setOption', { name: 'muteWords', value })
2017-02-22 15:38:05 -08:00
}
2017-02-16 13:25:29 -08:00
}
}
export default settings