2018-08-15 02:51:21 -07:00
|
|
|
/* eslint-env browser */
|
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,
|
2018-08-15 02:51:21 -07:00
|
|
|
loopVideoLocal: this.$store.state.config.loopVideo,
|
|
|
|
loopVideoSilentOnlyLocal: this.$store.state.config.loopVideoSilentOnly,
|
2017-04-21 08:52:42 -07:00
|
|
|
muteWordsString: this.$store.state.config.muteWords.join('\n'),
|
2017-06-03 08:51:55 -07:00
|
|
|
autoLoadLocal: this.$store.state.config.autoLoad,
|
2017-11-12 15:06:48 -08:00
|
|
|
streamingLocal: this.$store.state.config.streaming,
|
2018-08-15 02:51:21 -07:00
|
|
|
pauseOnUnfocusedLocal: this.$store.state.config.pauseOnUnfocused,
|
2018-03-11 16:31:33 -07:00
|
|
|
hoverPreviewLocal: this.$store.state.config.hoverPreview,
|
2018-08-19 19:41:40 -07:00
|
|
|
collapseMessageWithSubjectLocal: this.$store.state.config.collapseMessageWithSubject,
|
2018-08-15 02:51:21 -07:00
|
|
|
stopGifs: this.$store.state.config.stopGifs,
|
|
|
|
loopSilentAvailable:
|
|
|
|
// Firefox
|
|
|
|
Object.getOwnPropertyDescriptor(HTMLVideoElement.prototype, 'mozHasAudio') ||
|
|
|
|
// Chrome-likes
|
|
|
|
Object.getOwnPropertyDescriptor(HTMLMediaElement.prototype, 'webkitAudioDecodedByteCount') ||
|
|
|
|
// Future spec, still not supported in Nightly 63 as of 08/2018
|
|
|
|
Object.getOwnPropertyDescriptor(HTMLMediaElement.prototype, 'audioTracks')
|
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
|
|
|
},
|
2017-04-16 04:44:11 -07:00
|
|
|
computed: {
|
|
|
|
user () {
|
|
|
|
return this.$store.state.users.currentUser
|
|
|
|
}
|
|
|
|
},
|
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
|
|
|
},
|
2018-08-15 02:51:21 -07:00
|
|
|
loopVideoLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'loopVideo', value })
|
|
|
|
},
|
|
|
|
loopVideoSilentOnlyLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'loopVideoSilentOnly', value })
|
|
|
|
},
|
2017-06-03 08:51:55 -07:00
|
|
|
autoLoadLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'autoLoad', value })
|
|
|
|
},
|
2017-11-12 15:06:48 -08:00
|
|
|
streamingLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'streaming', value })
|
|
|
|
},
|
2018-08-13 07:07:45 -07:00
|
|
|
pauseOnUnfocusedLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'pauseOnUnfocused', value })
|
|
|
|
},
|
2017-06-07 07:58:24 -07:00
|
|
|
hoverPreviewLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'hoverPreview', 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 })
|
2018-03-11 16:31:33 -07:00
|
|
|
},
|
2018-08-19 19:41:40 -07:00
|
|
|
collapseMessageWithSubjectLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'collapseMessageWithSubject', value })
|
2018-08-19 18:59:06 -07:00
|
|
|
},
|
2018-03-11 16:31:33 -07:00
|
|
|
stopGifs (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'stopGifs', value })
|
2017-02-22 15:38:05 -08:00
|
|
|
}
|
2017-02-16 13:25:29 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default settings
|