2018-08-15 19:51:21 +10:00
|
|
|
/* eslint-env browser */
|
2018-08-28 21:28:05 +10:00
|
|
|
import TabSwitcher from '../tab_switcher/tab_switcher.jsx'
|
2017-02-17 08:25:29 +11:00
|
|
|
import StyleSwitcher from '../style_switcher/style_switcher.vue'
|
2018-08-25 20:12:33 +10:00
|
|
|
import InterfaceLanguageSwitcher from '../interface_language_switcher/interface_language_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 () {
|
2018-09-10 04:21:23 +10:00
|
|
|
const user = this.$store.state.config
|
|
|
|
const instance = this.$store.state.instance
|
2018-09-04 05:40:45 +10:00
|
|
|
|
2017-02-23 10:04:47 +11:00
|
|
|
return {
|
2018-09-10 04:21:23 +10:00
|
|
|
hideAttachmentsLocal: user.hideAttachments,
|
|
|
|
hideAttachmentsInConvLocal: user.hideAttachmentsInConv,
|
|
|
|
hideNsfwLocal: user.hideNsfw,
|
|
|
|
notificationVisibilityLocal: user.notificationVisibility,
|
|
|
|
replyVisibilityLocal: user.replyVisibility,
|
|
|
|
loopVideoLocal: user.loopVideo,
|
|
|
|
loopVideoSilentOnlyLocal: user.loopVideoSilentOnly,
|
|
|
|
muteWordsString: user.muteWords.join('\n'),
|
|
|
|
autoLoadLocal: user.autoLoad,
|
|
|
|
streamingLocal: user.streaming,
|
|
|
|
pauseOnUnfocusedLocal: user.pauseOnUnfocused,
|
|
|
|
hoverPreviewLocal: user.hoverPreview,
|
|
|
|
collapseMessageWithSubjectLocal: typeof user.collapseMessageWithSubject === 'undefined'
|
|
|
|
? instance.collapseMessageWithSubject
|
|
|
|
: user.collapseMessageWithSubject,
|
2018-09-21 00:21:11 +10:00
|
|
|
collapseMessageWithSubjectDefault: this.$t('settings.values.' + instance.collapseMessageWithSubject),
|
2018-09-10 04:21:23 +10:00
|
|
|
stopGifs: user.stopGifs,
|
2018-08-15 19:51:21 +10:00
|
|
|
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-23 10:04:47 +11:00
|
|
|
}
|
|
|
|
},
|
2017-02-17 08:25:29 +11:00
|
|
|
components: {
|
2018-08-28 21:28:05 +10:00
|
|
|
TabSwitcher,
|
2018-08-25 20:12:33 +10:00
|
|
|
StyleSwitcher,
|
|
|
|
InterfaceLanguageSwitcher
|
2017-02-23 10:04:47 +11:00
|
|
|
},
|
2017-04-16 21:44:11 +10:00
|
|
|
computed: {
|
|
|
|
user () {
|
|
|
|
return this.$store.state.users.currentUser
|
2018-09-08 01:17:17 +10:00
|
|
|
},
|
|
|
|
currentSaveStateNotice () {
|
2018-09-10 02:36:13 +10:00
|
|
|
return this.$store.state.interface.settings.currentSaveStateNotice
|
2017-04-16 21:44:11 +10:00
|
|
|
}
|
|
|
|
},
|
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
|
|
|
},
|
2018-08-29 04:21:29 +10:00
|
|
|
'notificationVisibilityLocal.likes' (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'notificationVisibility', value: this.$store.state.config.notificationVisibility })
|
|
|
|
},
|
|
|
|
'notificationVisibilityLocal.follows' (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'notificationVisibility', value: this.$store.state.config.notificationVisibility })
|
|
|
|
},
|
|
|
|
'notificationVisibilityLocal.repeats' (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'notificationVisibility', value: this.$store.state.config.notificationVisibility })
|
|
|
|
},
|
|
|
|
'notificationVisibilityLocal.mentions' (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'notificationVisibility', value: this.$store.state.config.notificationVisibility })
|
|
|
|
},
|
2018-08-25 05:04:26 +10:00
|
|
|
replyVisibilityLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'replyVisibility', value })
|
|
|
|
},
|
2018-08-15 19:51:21 +10:00
|
|
|
loopVideoLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'loopVideo', value })
|
|
|
|
},
|
|
|
|
loopVideoSilentOnlyLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'loopVideoSilentOnly', value })
|
|
|
|
},
|
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 })
|
|
|
|
},
|
2018-08-14 00:07:45 +10:00
|
|
|
pauseOnUnfocusedLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'pauseOnUnfocused', 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
|
|
|
},
|
2018-08-20 12:41:40 +10:00
|
|
|
collapseMessageWithSubjectLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'collapseMessageWithSubject', value })
|
2018-08-20 11:59:06 +10:00
|
|
|
},
|
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
|