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 {
|
2017-02-22 15:59:48 -08:00
|
|
|
hideAttachmentsLocal: this.$store.state.config.hideAttachments,
|
2017-03-04 12:25:59 -08:00
|
|
|
hideAttachmentsInConvLocal: this.$store.state.config.hideAttachmentsInConv,
|
2017-04-09 06:53:23 -07:00
|
|
|
hideNsfwLocal: this.$store.state.config.hideNsfw,
|
|
|
|
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 })
|
2017-02-22 15:59:48 -08:00
|
|
|
},
|
2017-03-04 12:25:59 -08:00
|
|
|
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 })
|
2017-04-09 06:53:23 -07:00
|
|
|
},
|
|
|
|
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
|