2017-02-16 22:25:29 +01:00
|
|
|
import StyleSwitcher from '../style_switcher/style_switcher.vue'
|
2017-04-09 22:15:49 +02:00
|
|
|
import { filter, trim } from 'lodash'
|
2017-02-16 22:25:29 +01:00
|
|
|
|
|
|
|
const settings = {
|
2017-02-23 00:04:47 +01:00
|
|
|
data () {
|
|
|
|
return {
|
2017-02-23 00:59:48 +01:00
|
|
|
hideAttachmentsLocal: this.$store.state.config.hideAttachments,
|
2017-03-04 21:25:59 +01:00
|
|
|
hideAttachmentsInConvLocal: this.$store.state.config.hideAttachmentsInConv,
|
2017-04-09 15:53:23 +02:00
|
|
|
hideNsfwLocal: this.$store.state.config.hideNsfw,
|
2017-04-21 17:52:42 +02:00
|
|
|
muteWordsString: this.$store.state.config.muteWords.join('\n'),
|
2017-06-03 17:51:55 +02:00
|
|
|
autoLoadLocal: this.$store.state.config.autoLoad,
|
2017-06-07 16:58:24 +02:00
|
|
|
hoverPreviewLocal: this.$store.state.config.hoverPreview,
|
2017-06-19 11:26:33 +02:00
|
|
|
previewfile: null
|
2017-02-23 00:04:47 +01:00
|
|
|
}
|
|
|
|
},
|
2017-02-16 22:25:29 +01:00
|
|
|
components: {
|
|
|
|
StyleSwitcher
|
2017-02-23 00:04:47 +01:00
|
|
|
},
|
2017-04-16 13:44:11 +02:00
|
|
|
computed: {
|
|
|
|
user () {
|
|
|
|
return this.$store.state.users.currentUser
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
uploadAvatar ({target}) {
|
|
|
|
const file = target.files[0]
|
2017-04-17 10:12:30 +02:00
|
|
|
// eslint-disable-next-line no-undef
|
2017-04-16 13:44:11 +02:00
|
|
|
const reader = new FileReader()
|
|
|
|
reader.onload = ({target}) => {
|
|
|
|
const img = target.result
|
2017-04-21 17:52:42 +02:00
|
|
|
this.previewfile = img
|
2017-04-16 13:44:11 +02:00
|
|
|
}
|
|
|
|
reader.readAsDataURL(file)
|
2017-04-21 17:52:42 +02:00
|
|
|
},
|
|
|
|
submitAvatar () {
|
2017-06-19 11:26:33 +02:00
|
|
|
if (!this.previewfile) { return }
|
|
|
|
|
2017-04-21 17:52:42 +02:00
|
|
|
const img = this.previewfile
|
2017-06-19 11:26:33 +02:00
|
|
|
// eslint-disable-next-line no-undef
|
|
|
|
let imginfo = new Image()
|
|
|
|
let cropX, cropY, cropW, cropH
|
|
|
|
imginfo.src = this.previewfile
|
|
|
|
if (imginfo.height > imginfo.width) {
|
|
|
|
cropX = 0
|
|
|
|
cropW = imginfo.width
|
|
|
|
cropY = Math.floor((imginfo.height - imginfo.width) / 2)
|
|
|
|
cropH = imginfo.width
|
|
|
|
} else {
|
|
|
|
cropY = 0
|
|
|
|
cropH = imginfo.height
|
|
|
|
cropX = Math.floor((imginfo.width - imginfo.height) / 2)
|
|
|
|
cropW = imginfo.height
|
|
|
|
}
|
|
|
|
this.$store.state.api.backendInteractor.updateAvatar({params: {img, cropX, cropY, cropW, cropH}}).then((user) => {
|
2017-04-21 17:52:42 +02:00
|
|
|
if (!user.error) {
|
|
|
|
this.$store.commit('addNewUsers', [user])
|
|
|
|
this.$store.commit('setCurrentUser', user)
|
|
|
|
}
|
|
|
|
})
|
2017-04-16 13:44:11 +02:00
|
|
|
}
|
|
|
|
},
|
2017-02-23 00:04:47 +01:00
|
|
|
watch: {
|
|
|
|
hideAttachmentsLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'hideAttachments', value })
|
2017-02-23 00:59:48 +01:00
|
|
|
},
|
2017-03-04 21:25:59 +01:00
|
|
|
hideAttachmentsInConvLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'hideAttachmentsInConv', value })
|
|
|
|
},
|
2017-02-23 00:38:05 +01:00
|
|
|
hideNsfwLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'hideNsfw', value })
|
2017-04-09 15:53:23 +02:00
|
|
|
},
|
2017-06-03 17:51:55 +02:00
|
|
|
autoLoadLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'autoLoad', value })
|
|
|
|
},
|
2017-06-07 16:58:24 +02:00
|
|
|
hoverPreviewLocal (value) {
|
|
|
|
this.$store.dispatch('setOption', { name: 'hoverPreview', value })
|
|
|
|
},
|
2017-04-09 15:53:23 +02:00
|
|
|
muteWordsString (value) {
|
2017-04-09 22:15:49 +02:00
|
|
|
value = filter(value.split('\n'), (word) => trim(word).length > 0)
|
|
|
|
this.$store.dispatch('setOption', { name: 'muteWords', value })
|
2017-02-23 00:38:05 +01:00
|
|
|
}
|
2017-02-16 22:25:29 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default settings
|