2018-08-15 02:51:21 -07:00
|
|
|
/* eslint-env browser */
|
2018-08-28 04:28:05 -07:00
|
|
|
import TabSwitcher from '../tab_switcher/tab_switcher.jsx'
|
2017-02-16 13:25:29 -08:00
|
|
|
import StyleSwitcher from '../style_switcher/style_switcher.vue'
|
2018-08-25 03:12:33 -07:00
|
|
|
import InterfaceLanguageSwitcher from '../interface_language_switcher/interface_language_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 () {
|
2018-09-09 11:21:23 -07:00
|
|
|
const user = this.$store.state.config
|
|
|
|
const instance = this.$store.state.instance
|
2018-09-03 12:40:45 -07:00
|
|
|
|
2017-02-22 15:04:47 -08:00
|
|
|
return {
|
2018-09-09 11:21:23 -07:00
|
|
|
hideAttachmentsLocal: user.hideAttachments,
|
|
|
|
hideAttachmentsInConvLocal: user.hideAttachmentsInConv,
|
|
|
|
hideNsfwLocal: user.hideNsfw,
|
2018-10-16 06:09:29 -07:00
|
|
|
hidePostStatsLocal: typeof user.hidePostStats === 'undefined'
|
|
|
|
? instance.hidePostStats
|
|
|
|
: user.hidePostStats,
|
2018-10-16 06:15:04 -07:00
|
|
|
hidePostStatsDefault: this.$t('settings.values.' + instance.hidePostStats),
|
2018-10-16 06:09:29 -07:00
|
|
|
hideUserStatsLocal: typeof user.hideUserStats === 'undefined'
|
|
|
|
? instance.hideUserStats
|
|
|
|
: user.hideUserStats,
|
2018-10-16 06:15:04 -07:00
|
|
|
hideUserStatsDefault: this.$t('settings.values.' + instance.hideUserStats),
|
2018-09-09 11:21:23 -07:00
|
|
|
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-20 07:21:11 -07:00
|
|
|
collapseMessageWithSubjectDefault: this.$t('settings.values.' + instance.collapseMessageWithSubject),
|
2018-09-25 04:47:02 -07:00
|
|
|
subjectLineBehaviorLocal: typeof user.subjectLineBehavior === 'undefined'
|
|
|
|
? instance.subjectLineBehavior
|
|
|
|
: user.subjectLineBehavior,
|
|
|
|
subjectLineBehaviorDefault: instance.subjectLineBehavior,
|
2018-12-02 19:47:35 -08:00
|
|
|
alwaysShowSubjectInputLocal: typeof user.alwaysShowSubjectInput === 'undefined'
|
|
|
|
? instance.alwaysShowSubjectInput
|
|
|
|
: user.alwaysShowSubjectInput,
|
|
|
|
alwaysShowSubjectInputDefault: instance.alwaysShowSubjectInput,
|
2018-09-25 04:47:02 -07:00
|
|
|
scopeCopyLocal: user.scopeCopy,
|
|
|
|
scopeCopyDefault: this.$t('settings.values.' + instance.scopeCopy),
|
2018-09-09 11:21:23 -07:00
|
|
|
stopGifs: user.stopGifs,
|
2018-08-15 02:51:21 -07: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-22 15:04:47 -08:00
|
|
|
}
|
|
|
|
},
|
2017-02-16 13:25:29 -08:00
|
|
|
components: {
|
2018-08-28 04:28:05 -07:00
|
|
|
TabSwitcher,
|
2018-08-25 03:12:33 -07:00
|
|
|
StyleSwitcher,
|
|
|
|
InterfaceLanguageSwitcher
|
2017-02-22 15:04:47 -08:00
|
|
|
},
|
2017-04-16 04:44:11 -07:00
|
|
|
computed: {
|
|
|
|
user () {
|
|
|
|
return this.$store.state.users.currentUser
|
2018-09-07 08:17:17 -07:00
|
|
|
},
|
|
|
|
currentSaveStateNotice () {
|
2018-09-09 09:36:13 -07:00
|
|
|
return this.$store.state.interface.settings.currentSaveStateNotice
|
2017-04-16 04:44:11 -07:00
|
|
|
}
|
|
|
|
},
|
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 })
|
|
|
|
},
|
2018-09-03 16:41:37 -07:00
|
|
|
hidePostStatsLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'hidePostStats', value })
|
|
|
|
},
|
2018-09-03 16:32:25 -07:00
|
|
|
hideUserStatsLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'hideUserStats', 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-28 11:21:29 -07: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-24 12:04:26 -07:00
|
|
|
replyVisibilityLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'replyVisibility', value })
|
|
|
|
},
|
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-09-25 04:47:02 -07:00
|
|
|
scopeCopyLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'scopeCopy', value })
|
|
|
|
},
|
2018-12-02 19:47:35 -08:00
|
|
|
alwaysShowSubjectInputLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'alwaysShowSubjectInput', value })
|
|
|
|
},
|
2018-09-25 04:47:02 -07:00
|
|
|
subjectLineBehaviorLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'subjectLineBehavior', value })
|
|
|
|
},
|
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
|