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-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-06-19 19:26:33 +10:00
|
|
|
previewfile: null
|
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
|
2017-04-16 21:44:11 +10:00
|
|
|
}
|
|
|
|
reader.readAsDataURL(file)
|
2017-04-22 01:52:42 +10:00
|
|
|
},
|
|
|
|
submitAvatar () {
|
2017-06-19 19:26:33 +10:00
|
|
|
if (!this.previewfile) { return }
|
|
|
|
|
2017-04-22 01:52:42 +10:00
|
|
|
const img = this.previewfile
|
2017-06-19 19:26:33 +10: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-22 01:52:42 +10:00
|
|
|
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
|