2018-08-15 09:51:21 +00:00
|
|
|
/* eslint-env browser */
|
2019-03-10 23:58:12 +00:00
|
|
|
import { filter, trim } from 'lodash'
|
|
|
|
|
2019-01-31 15:00:31 +00:00
|
|
|
import TabSwitcher from '../tab_switcher/tab_switcher.js'
|
2017-02-16 21:25:29 +00:00
|
|
|
import StyleSwitcher from '../style_switcher/style_switcher.vue'
|
2018-08-25 10:12:33 +00:00
|
|
|
import InterfaceLanguageSwitcher from '../interface_language_switcher/interface_language_switcher.vue'
|
2019-03-11 01:06:51 +00:00
|
|
|
import { extractCommit } from '../../services/version/version.service'
|
|
|
|
|
|
|
|
const pleromaFeCommitUrl = 'https://git.pleroma.social/pleroma/pleroma-fe/commit/'
|
|
|
|
const pleromaBeCommitUrl = 'https://git.pleroma.social/pleroma/pleroma/commit/'
|
2017-02-16 21:25:29 +00:00
|
|
|
|
|
|
|
const settings = {
|
2017-02-22 23:04:47 +00:00
|
|
|
data () {
|
2018-09-09 18:21:23 +00:00
|
|
|
const user = this.$store.state.config
|
|
|
|
const instance = this.$store.state.instance
|
2018-09-03 19:40:45 +00:00
|
|
|
|
2017-02-22 23:04:47 +00:00
|
|
|
return {
|
2018-09-09 18:21:23 +00:00
|
|
|
hideAttachmentsLocal: user.hideAttachments,
|
|
|
|
hideAttachmentsInConvLocal: user.hideAttachmentsInConv,
|
2019-02-27 14:38:58 +00:00
|
|
|
maxThumbnails: user.maxThumbnails,
|
2018-09-09 18:21:23 +00:00
|
|
|
hideNsfwLocal: user.hideNsfw,
|
2019-01-26 15:45:03 +00:00
|
|
|
useOneClickNsfw: user.useOneClickNsfw,
|
2018-12-05 08:37:01 +00:00
|
|
|
hideISPLocal: user.hideISP,
|
2018-12-11 22:12:29 +00:00
|
|
|
preloadImage: user.preloadImage,
|
2018-12-18 20:31:10 +00:00
|
|
|
|
2018-10-16 13:09:29 +00:00
|
|
|
hidePostStatsLocal: typeof user.hidePostStats === 'undefined'
|
|
|
|
? instance.hidePostStats
|
|
|
|
: user.hidePostStats,
|
2018-10-16 13:15:04 +00:00
|
|
|
hidePostStatsDefault: this.$t('settings.values.' + instance.hidePostStats),
|
2018-12-18 20:31:10 +00:00
|
|
|
|
2018-10-16 13:09:29 +00:00
|
|
|
hideUserStatsLocal: typeof user.hideUserStats === 'undefined'
|
|
|
|
? instance.hideUserStats
|
|
|
|
: user.hideUserStats,
|
2018-10-16 13:15:04 +00:00
|
|
|
hideUserStatsDefault: this.$t('settings.values.' + instance.hideUserStats),
|
2018-12-18 20:31:10 +00:00
|
|
|
|
2019-02-06 18:18:13 +00:00
|
|
|
hideFilteredStatusesLocal: typeof user.hideFilteredStatuses === 'undefined'
|
|
|
|
? instance.hideFilteredStatuses
|
|
|
|
: user.hideFilteredStatuses,
|
|
|
|
hideFilteredStatusesDefault: this.$t('settings.values.' + instance.hideFilteredStatuses),
|
|
|
|
|
2018-09-09 18:21:23 +00:00
|
|
|
notificationVisibilityLocal: user.notificationVisibility,
|
|
|
|
replyVisibilityLocal: user.replyVisibility,
|
|
|
|
loopVideoLocal: user.loopVideo,
|
|
|
|
muteWordsString: user.muteWords.join('\n'),
|
|
|
|
autoLoadLocal: user.autoLoad,
|
|
|
|
streamingLocal: user.streaming,
|
|
|
|
pauseOnUnfocusedLocal: user.pauseOnUnfocused,
|
|
|
|
hoverPreviewLocal: user.hoverPreview,
|
2018-12-18 20:31:10 +00:00
|
|
|
|
2019-03-02 13:07:14 +00:00
|
|
|
hideMutedPostsLocal: typeof user.hideMutedPosts === 'undefined'
|
|
|
|
? instance.hideMutedPosts
|
|
|
|
: user.hideMutedPosts,
|
|
|
|
hideMutedPostsDefault: this.$t('settings.values.' + instance.hideMutedPosts),
|
|
|
|
|
2018-09-09 18:21:23 +00:00
|
|
|
collapseMessageWithSubjectLocal: typeof user.collapseMessageWithSubject === 'undefined'
|
|
|
|
? instance.collapseMessageWithSubject
|
|
|
|
: user.collapseMessageWithSubject,
|
2018-09-20 14:21:11 +00:00
|
|
|
collapseMessageWithSubjectDefault: this.$t('settings.values.' + instance.collapseMessageWithSubject),
|
2018-12-18 20:31:10 +00:00
|
|
|
|
2018-09-25 11:47:02 +00:00
|
|
|
subjectLineBehaviorLocal: typeof user.subjectLineBehavior === 'undefined'
|
|
|
|
? instance.subjectLineBehavior
|
|
|
|
: user.subjectLineBehavior,
|
|
|
|
subjectLineBehaviorDefault: instance.subjectLineBehavior,
|
2018-12-18 20:31:10 +00:00
|
|
|
|
2019-02-06 19:26:46 +00:00
|
|
|
postContentTypeLocal: typeof user.postContentType === 'undefined'
|
|
|
|
? instance.postContentType
|
|
|
|
: user.postContentType,
|
|
|
|
postContentTypeDefault: instance.postContentType,
|
|
|
|
|
2018-12-03 03:47:35 +00:00
|
|
|
alwaysShowSubjectInputLocal: typeof user.alwaysShowSubjectInput === 'undefined'
|
|
|
|
? instance.alwaysShowSubjectInput
|
|
|
|
: user.alwaysShowSubjectInput,
|
2019-03-03 13:15:41 +00:00
|
|
|
alwaysShowSubjectInputDefault: this.$t('settings.values.' + instance.alwaysShowSubjectInput),
|
2018-12-18 20:31:10 +00:00
|
|
|
|
|
|
|
scopeCopyLocal: typeof user.scopeCopy === 'undefined'
|
|
|
|
? instance.scopeCopy
|
|
|
|
: user.scopeCopy,
|
2018-09-25 11:47:02 +00:00
|
|
|
scopeCopyDefault: this.$t('settings.values.' + instance.scopeCopy),
|
2018-12-18 20:31:10 +00:00
|
|
|
|
2019-03-03 13:15:41 +00:00
|
|
|
minimalScopesModeLocal: typeof user.minimalScopesMode === 'undefined'
|
|
|
|
? instance.minimalScopesMode
|
|
|
|
: user.minimalScopesMode,
|
|
|
|
minimalScopesModeDefault: this.$t('settings.values.' + instance.minimalScopesMode),
|
|
|
|
|
2018-09-09 18:21:23 +00:00
|
|
|
stopGifs: user.stopGifs,
|
2019-01-26 15:45:03 +00:00
|
|
|
webPushNotificationsLocal: user.webPushNotifications,
|
|
|
|
loopVideoSilentOnlyLocal: user.loopVideosSilentOnly,
|
|
|
|
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'),
|
2019-01-31 19:19:41 +00:00
|
|
|
playVideosInModal: user.playVideosInModal,
|
2019-03-10 23:58:12 +00:00
|
|
|
useContainFit: user.useContainFit,
|
|
|
|
|
|
|
|
backendVersion: instance.backendVersion,
|
|
|
|
frontendVersion: instance.frontendVersion
|
2017-02-22 23:04:47 +00:00
|
|
|
}
|
|
|
|
},
|
2017-02-16 21:25:29 +00:00
|
|
|
components: {
|
2018-08-28 11:28:05 +00:00
|
|
|
TabSwitcher,
|
2018-08-25 10:12:33 +00:00
|
|
|
StyleSwitcher,
|
|
|
|
InterfaceLanguageSwitcher
|
2017-02-22 23:04:47 +00:00
|
|
|
},
|
2017-04-16 11:44:11 +00:00
|
|
|
computed: {
|
|
|
|
user () {
|
|
|
|
return this.$store.state.users.currentUser
|
2018-09-07 15:17:17 +00:00
|
|
|
},
|
|
|
|
currentSaveStateNotice () {
|
2018-09-09 16:36:13 +00:00
|
|
|
return this.$store.state.interface.settings.currentSaveStateNotice
|
2019-02-17 20:24:24 +00:00
|
|
|
},
|
2019-03-05 05:29:56 +00:00
|
|
|
postFormats () {
|
|
|
|
return this.$store.state.instance.postFormats || []
|
|
|
|
},
|
2019-03-11 01:06:51 +00:00
|
|
|
instanceSpecificPanelPresent () { return this.$store.state.instance.showInstanceSpecificPanel },
|
|
|
|
frontendVersionLink () {
|
2019-03-11 01:13:01 +00:00
|
|
|
return pleromaFeCommitUrl + this.frontendVersion
|
2019-03-10 23:58:12 +00:00
|
|
|
},
|
2019-03-11 01:06:51 +00:00
|
|
|
backendVersionLink () {
|
2019-03-11 01:13:01 +00:00
|
|
|
return pleromaBeCommitUrl + extractCommit(this.backendVersion)
|
2019-03-10 23:58:12 +00:00
|
|
|
}
|
2017-04-16 11:44:11 +00:00
|
|
|
},
|
2017-02-22 23:04:47 +00:00
|
|
|
watch: {
|
|
|
|
hideAttachmentsLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'hideAttachments', value })
|
2017-02-22 23:59:48 +00:00
|
|
|
},
|
2017-03-04 20:25:59 +00:00
|
|
|
hideAttachmentsInConvLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'hideAttachmentsInConv', value })
|
|
|
|
},
|
2018-09-03 23:41:37 +00:00
|
|
|
hidePostStatsLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'hidePostStats', value })
|
|
|
|
},
|
2018-09-03 23:32:25 +00:00
|
|
|
hideUserStatsLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'hideUserStats', value })
|
|
|
|
},
|
2019-02-06 18:18:13 +00:00
|
|
|
hideFilteredStatusesLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'hideFilteredStatuses', value })
|
|
|
|
},
|
2017-02-22 23:38:05 +00:00
|
|
|
hideNsfwLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'hideNsfw', value })
|
2017-04-09 13:53:23 +00:00
|
|
|
},
|
2019-01-26 15:45:03 +00:00
|
|
|
useOneClickNsfw (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'useOneClickNsfw', value })
|
|
|
|
},
|
2018-12-11 22:14:45 +00:00
|
|
|
preloadImage (value) {
|
2018-12-11 22:12:29 +00:00
|
|
|
this.$store.dispatch('setOption', { name: 'preloadImage', value })
|
2018-12-11 22:03:53 +00:00
|
|
|
},
|
2018-12-05 08:37:01 +00:00
|
|
|
hideISPLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'hideISP', value })
|
|
|
|
},
|
2018-08-28 18:21:29 +00: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 19:04:26 +00:00
|
|
|
replyVisibilityLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'replyVisibility', value })
|
|
|
|
},
|
2018-08-15 09:51:21 +00:00
|
|
|
loopVideoLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'loopVideo', value })
|
|
|
|
},
|
2019-01-26 15:45:03 +00:00
|
|
|
loopVideoSilentOnlyLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'loopVideoSilentOnly', value })
|
|
|
|
},
|
2017-06-03 15:51:55 +00:00
|
|
|
autoLoadLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'autoLoad', value })
|
|
|
|
},
|
2017-11-12 23:06:48 +00:00
|
|
|
streamingLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'streaming', value })
|
|
|
|
},
|
2018-08-13 14:07:45 +00:00
|
|
|
pauseOnUnfocusedLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'pauseOnUnfocused', value })
|
|
|
|
},
|
2017-06-07 14:58:24 +00:00
|
|
|
hoverPreviewLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'hoverPreview', value })
|
|
|
|
},
|
2017-04-09 13:53:23 +00:00
|
|
|
muteWordsString (value) {
|
2017-04-09 20:15:49 +00:00
|
|
|
value = filter(value.split('\n'), (word) => trim(word).length > 0)
|
|
|
|
this.$store.dispatch('setOption', { name: 'muteWords', value })
|
2018-03-11 23:31:33 +00:00
|
|
|
},
|
2019-03-02 13:07:14 +00:00
|
|
|
hideMutedPostsLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'hideMutedPosts', value })
|
|
|
|
},
|
2018-08-20 02:41:40 +00:00
|
|
|
collapseMessageWithSubjectLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'collapseMessageWithSubject', value })
|
2018-08-20 01:59:06 +00:00
|
|
|
},
|
2018-09-25 11:47:02 +00:00
|
|
|
scopeCopyLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'scopeCopy', value })
|
|
|
|
},
|
2018-12-03 03:47:35 +00:00
|
|
|
alwaysShowSubjectInputLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'alwaysShowSubjectInput', value })
|
|
|
|
},
|
2018-09-25 11:47:02 +00:00
|
|
|
subjectLineBehaviorLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'subjectLineBehavior', value })
|
|
|
|
},
|
2019-02-06 19:26:46 +00:00
|
|
|
postContentTypeLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'postContentType', value })
|
|
|
|
},
|
2019-03-03 13:15:41 +00:00
|
|
|
minimalScopesModeLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'minimalScopesMode', value })
|
|
|
|
},
|
2018-03-11 23:31:33 +00:00
|
|
|
stopGifs (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'stopGifs', value })
|
2018-12-12 17:03:50 +00:00
|
|
|
},
|
|
|
|
webPushNotificationsLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'webPushNotifications', value })
|
|
|
|
if (value) this.$store.dispatch('registerPushNotifications')
|
2019-01-26 15:45:03 +00:00
|
|
|
},
|
2019-01-31 19:19:41 +00:00
|
|
|
playVideosInModal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'playVideosInModal', value })
|
2019-01-26 15:45:03 +00:00
|
|
|
},
|
|
|
|
useContainFit (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'useContainFit', value })
|
2019-02-27 14:38:58 +00:00
|
|
|
},
|
|
|
|
maxThumbnails (value) {
|
|
|
|
value = this.maxThumbnails = Math.floor(Math.max(value, 0))
|
|
|
|
this.$store.dispatch('setOption', { name: 'maxThumbnails', value })
|
2017-02-22 23:38:05 +00:00
|
|
|
}
|
2017-02-16 21:25:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default settings
|