2017-02-17 08:25:29 +11:00
|
|
|
import StyleSwitcher from '../style_switcher/style_switcher.vue'
|
2017-04-10 06:15:49 +10:00
|
|
|
import { filter, trim } from 'lodash'
|
2017-02-17 08:25:29 +11:00
|
|
|
|
|
|
|
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-03-05 07:25:59 +11:00
|
|
|
hideAttachmentsInConvLocal: this.$store.state.config.hideAttachmentsInConv,
|
2017-04-09 23:53:23 +10:00
|
|
|
hideNsfwLocal: this.$store.state.config.hideNsfw,
|
2017-04-22 01:52:42 +10:00
|
|
|
muteWordsString: this.$store.state.config.muteWords.join('\n'),
|
2017-06-04 01:51:55 +10:00
|
|
|
autoLoadLocal: this.$store.state.config.autoLoad,
|
2017-11-13 10:06:48 +11:00
|
|
|
streamingLocal: this.$store.state.config.streaming,
|
2018-03-12 10:31:33 +11:00
|
|
|
hoverPreviewLocal: this.$store.state.config.hoverPreview,
|
|
|
|
stopGifs: this.$store.state.config.stopGifs
|
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
|
|
|
},
|
2017-04-16 21:44:11 +10:00
|
|
|
computed: {
|
|
|
|
user () {
|
|
|
|
return this.$store.state.users.currentUser
|
|
|
|
}
|
|
|
|
},
|
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-03-05 07:25:59 +11:00
|
|
|
hideAttachmentsInConvLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'hideAttachmentsInConv', value })
|
|
|
|
},
|
2017-02-23 10:38:05 +11:00
|
|
|
hideNsfwLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'hideNsfw', value })
|
2017-04-09 23:53:23 +10:00
|
|
|
},
|
2017-06-04 01:51:55 +10:00
|
|
|
autoLoadLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'autoLoad', value })
|
|
|
|
},
|
2017-11-13 10:06:48 +11:00
|
|
|
streamingLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'streaming', value })
|
|
|
|
},
|
2017-06-08 00:58:24 +10:00
|
|
|
hoverPreviewLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'hoverPreview', value })
|
|
|
|
},
|
2017-04-09 23:53:23 +10:00
|
|
|
muteWordsString (value) {
|
2017-04-10 06:15:49 +10:00
|
|
|
value = filter(value.split('\n'), (word) => trim(word).length > 0)
|
|
|
|
this.$store.dispatch('setOption', { name: 'muteWords', value })
|
2018-03-12 10:31:33 +11:00
|
|
|
},
|
|
|
|
stopGifs (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'stopGifs', value })
|
2017-02-23 10:38:05 +11:00
|
|
|
}
|
2017-02-17 08:25:29 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default settings
|