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-19 18:32:40 +10:00
|
|
|
previewfile: null,
|
2017-06-04 01:51:55 +10:00
|
|
|
autoLoadLocal: this.$store.state.config.autoLoad,
|
2017-06-08 00:58:24 +10:00
|
|
|
hoverPreviewLocal: this.$store.state.config.hoverPreview,
|
2017-04-09 23:53:23 +10:00
|
|
|
muteWordsString: this.$store.state.config.muteWords.join('\n')
|
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
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
uploadAvatar ({target}) {
|
|
|
|
const file = target.files[0]
|
2017-04-17 18:12:30 +10:00
|
|
|
// eslint-disable-next-line no-undef
|
2017-04-16 21:44:11 +10:00
|
|
|
const reader = new FileReader()
|
|
|
|
reader.onload = ({target}) => {
|
|
|
|
const img = target.result
|
2017-04-22 01:52:42 +10:00
|
|
|
this.previewfile = img
|
|
|
|
/*this.$store.state.api.backendInteractor.updateAvatar({params: {img}}).then((user) => {
|
2017-04-16 21:44:11 +10:00
|
|
|
if (!user.error) {
|
|
|
|
this.$store.commit('addNewUsers', [user])
|
|
|
|
this.$store.commit('setCurrentUser', user)
|
|
|
|
}
|
2017-04-22 01:52:42 +10:00
|
|
|
})*/
|
2017-04-16 21:44:11 +10:00
|
|
|
}
|
|
|
|
reader.readAsDataURL(file)
|
2017-04-22 01:52:42 +10:00
|
|
|
},
|
|
|
|
submitAvatar () {
|
|
|
|
if (!this.previewfile)
|
|
|
|
return
|
|
|
|
const img = this.previewfile
|
|
|
|
this.$store.state.api.backendInteractor.updateAvatar({params: {img}}).then((user) => {
|
|
|
|
if (!user.error) {
|
|
|
|
this.$store.commit('addNewUsers', [user])
|
|
|
|
this.$store.commit('setCurrentUser', user)
|
|
|
|
}
|
|
|
|
})
|
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
|
|
|
},
|
2017-06-04 01:51:55 +10:00
|
|
|
autoLoadLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'autoLoad', 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 })
|
2017-02-23 10:38:05 +11:00
|
|
|
}
|
2017-02-17 08:25:29 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default settings
|