2018-08-28 05:22:25 +10:00
|
|
|
import TabSwitcher from '../tab_switcher/tab_switcher.jsx'
|
2017-08-03 05:09:40 +10:00
|
|
|
import StyleSwitcher from '../style_switcher/style_switcher.vue'
|
|
|
|
|
|
|
|
const UserSettings = {
|
|
|
|
data () {
|
|
|
|
return {
|
|
|
|
newname: this.$store.state.users.currentUser.name,
|
|
|
|
newbio: this.$store.state.users.currentUser.description,
|
2018-05-30 00:19:28 +10:00
|
|
|
newlocked: this.$store.state.users.currentUser.locked,
|
2018-09-22 13:54:05 +10:00
|
|
|
newnorichtext: this.$store.state.users.currentUser.no_rich_text,
|
2018-06-23 17:53:15 +10:00
|
|
|
newdefaultScope: this.$store.state.users.currentUser.default_scope,
|
2017-12-24 01:44:22 +11:00
|
|
|
followList: null,
|
|
|
|
followImportError: false,
|
|
|
|
followsImported: false,
|
2018-05-14 09:47:08 +10:00
|
|
|
enableFollowsExport: true,
|
2017-12-24 01:44:22 +11:00
|
|
|
uploading: [ false, false, false, false ],
|
2018-05-14 00:09:07 +10:00
|
|
|
previews: [ null, null, null ],
|
|
|
|
deletingAccount: false,
|
|
|
|
deleteAccountConfirmPasswordInput: '',
|
2018-05-22 08:01:09 +10:00
|
|
|
deleteAccountError: false,
|
|
|
|
changePasswordInputs: [ '', '', '' ],
|
|
|
|
changedPassword: false,
|
2018-08-19 09:23:03 +10:00
|
|
|
changePasswordError: false,
|
|
|
|
activeTab: 'profile'
|
2017-08-03 05:09:40 +10:00
|
|
|
}
|
|
|
|
},
|
|
|
|
components: {
|
2018-08-28 05:22:25 +10:00
|
|
|
StyleSwitcher,
|
|
|
|
TabSwitcher
|
2017-08-03 05:09:40 +10:00
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
user () {
|
|
|
|
return this.$store.state.users.currentUser
|
2017-12-24 01:44:22 +11:00
|
|
|
},
|
|
|
|
pleromaBackend () {
|
2018-09-10 04:21:23 +10:00
|
|
|
return this.$store.state.instance.pleromaBackend
|
2018-06-23 17:53:15 +10:00
|
|
|
},
|
|
|
|
scopeOptionsEnabled () {
|
2018-09-10 04:21:23 +10:00
|
|
|
return this.$store.state.instance.scopeOptionsEnabled
|
2018-06-23 17:53:15 +10:00
|
|
|
},
|
|
|
|
vis () {
|
|
|
|
return {
|
|
|
|
public: { selected: this.newdefaultScope === 'public' },
|
|
|
|
unlisted: { selected: this.newdefaultScope === 'unlisted' },
|
|
|
|
private: { selected: this.newdefaultScope === 'private' },
|
|
|
|
direct: { selected: this.newdefaultScope === 'direct' }
|
|
|
|
}
|
2018-06-27 23:28:07 +10:00
|
|
|
}
|
2017-08-03 05:09:40 +10:00
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
updateProfile () {
|
|
|
|
const name = this.newname
|
|
|
|
const description = this.newbio
|
2018-05-30 00:19:28 +10:00
|
|
|
const locked = this.newlocked
|
2018-06-27 23:28:07 +10:00
|
|
|
/* eslint-disable camelcase */
|
2018-06-23 17:53:15 +10:00
|
|
|
const default_scope = this.newdefaultScope
|
2018-09-22 13:54:05 +10:00
|
|
|
const no_rich_text = this.newnorichtext
|
|
|
|
this.$store.state.api.backendInteractor.updateProfile({params: {name, description, locked, default_scope, no_rich_text}}).then((user) => {
|
2017-08-16 07:46:55 +10:00
|
|
|
if (!user.error) {
|
2017-08-03 05:09:40 +10:00
|
|
|
this.$store.commit('addNewUsers', [user])
|
|
|
|
this.$store.commit('setCurrentUser', user)
|
|
|
|
}
|
|
|
|
})
|
2018-06-27 23:28:07 +10:00
|
|
|
/* eslint-enable camelcase */
|
2017-08-03 05:09:40 +10:00
|
|
|
},
|
2018-06-23 17:53:15 +10:00
|
|
|
changeVis (visibility) {
|
|
|
|
this.newdefaultScope = visibility
|
|
|
|
},
|
2017-08-18 18:51:17 +10:00
|
|
|
uploadFile (slot, e) {
|
|
|
|
const file = e.target.files[0]
|
|
|
|
if (!file) { return }
|
2017-08-03 05:09:40 +10:00
|
|
|
// eslint-disable-next-line no-undef
|
|
|
|
const reader = new FileReader()
|
|
|
|
reader.onload = ({target}) => {
|
|
|
|
const img = target.result
|
2017-08-18 18:51:17 +10:00
|
|
|
this.previews[slot] = img
|
|
|
|
this.$forceUpdate() // just changing the array with the index doesn't update the view
|
2017-08-03 05:09:40 +10:00
|
|
|
}
|
|
|
|
reader.readAsDataURL(file)
|
|
|
|
},
|
|
|
|
submitAvatar () {
|
2017-08-18 18:51:17 +10:00
|
|
|
if (!this.previews[0]) { return }
|
2017-08-03 05:09:40 +10:00
|
|
|
|
2017-08-18 18:51:17 +10:00
|
|
|
let img = this.previews[0]
|
2017-08-03 05:09:40 +10:00
|
|
|
// eslint-disable-next-line no-undef
|
|
|
|
let imginfo = new Image()
|
|
|
|
let cropX, cropY, cropW, cropH
|
|
|
|
imginfo.src = img
|
|
|
|
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
|
|
|
|
}
|
2017-08-18 18:51:17 +10:00
|
|
|
this.uploading[0] = true
|
2017-08-03 05:09:40 +10:00
|
|
|
this.$store.state.api.backendInteractor.updateAvatar({params: {img, cropX, cropY, cropW, cropH}}).then((user) => {
|
|
|
|
if (!user.error) {
|
|
|
|
this.$store.commit('addNewUsers', [user])
|
|
|
|
this.$store.commit('setCurrentUser', user)
|
2017-08-18 18:51:17 +10:00
|
|
|
this.previews[0] = null
|
2017-08-03 05:09:40 +10:00
|
|
|
}
|
2017-08-18 18:51:17 +10:00
|
|
|
this.uploading[0] = false
|
2017-08-03 05:09:40 +10:00
|
|
|
})
|
|
|
|
},
|
|
|
|
submitBanner () {
|
2017-08-18 18:51:17 +10:00
|
|
|
if (!this.previews[1]) { return }
|
2017-08-03 05:09:40 +10:00
|
|
|
|
2017-08-18 18:51:17 +10:00
|
|
|
let banner = this.previews[1]
|
2017-08-16 07:46:55 +10:00
|
|
|
// eslint-disable-next-line no-undef
|
2017-08-03 05:09:40 +10:00
|
|
|
let imginfo = new Image()
|
2017-08-16 07:46:55 +10:00
|
|
|
/* eslint-disable camelcase */
|
2017-08-03 05:09:40 +10:00
|
|
|
let offset_top, offset_left, width, height
|
|
|
|
imginfo.src = banner
|
|
|
|
width = imginfo.width
|
|
|
|
height = imginfo.height
|
|
|
|
offset_top = 0
|
|
|
|
offset_left = 0
|
2017-08-18 18:51:17 +10:00
|
|
|
this.uploading[1] = true
|
2017-08-03 05:09:40 +10:00
|
|
|
this.$store.state.api.backendInteractor.updateBanner({params: {banner, offset_top, offset_left, width, height}}).then((data) => {
|
|
|
|
if (!data.error) {
|
|
|
|
let clone = JSON.parse(JSON.stringify(this.$store.state.users.currentUser))
|
|
|
|
clone.cover_photo = data.url
|
|
|
|
this.$store.commit('addNewUsers', [clone])
|
|
|
|
this.$store.commit('setCurrentUser', clone)
|
2017-08-18 18:51:17 +10:00
|
|
|
this.previews[1] = null
|
2017-08-03 05:09:40 +10:00
|
|
|
}
|
2017-08-18 18:51:17 +10:00
|
|
|
this.uploading[1] = false
|
2017-08-03 05:09:40 +10:00
|
|
|
})
|
2017-08-16 07:46:55 +10:00
|
|
|
/* eslint-enable camelcase */
|
2017-08-03 05:09:40 +10:00
|
|
|
},
|
|
|
|
submitBg () {
|
2017-08-18 18:51:17 +10:00
|
|
|
if (!this.previews[2]) { return }
|
|
|
|
let img = this.previews[2]
|
2017-08-16 07:46:55 +10:00
|
|
|
// eslint-disable-next-line no-undef
|
2017-08-03 05:09:40 +10:00
|
|
|
let imginfo = new Image()
|
|
|
|
let cropX, cropY, cropW, cropH
|
|
|
|
imginfo.src = img
|
|
|
|
cropX = 0
|
|
|
|
cropY = 0
|
|
|
|
cropW = imginfo.width
|
|
|
|
cropH = imginfo.width
|
2017-08-18 18:51:17 +10:00
|
|
|
this.uploading[2] = true
|
2017-08-03 05:09:40 +10:00
|
|
|
this.$store.state.api.backendInteractor.updateBg({params: {img, cropX, cropY, cropW, cropH}}).then((data) => {
|
|
|
|
if (!data.error) {
|
|
|
|
let clone = JSON.parse(JSON.stringify(this.$store.state.users.currentUser))
|
|
|
|
clone.background_image = data.url
|
|
|
|
this.$store.commit('addNewUsers', [clone])
|
|
|
|
this.$store.commit('setCurrentUser', clone)
|
2017-08-18 18:51:17 +10:00
|
|
|
this.previews[2] = null
|
2017-08-03 05:09:40 +10:00
|
|
|
}
|
2017-08-18 18:51:17 +10:00
|
|
|
this.uploading[2] = false
|
2017-08-03 05:09:40 +10:00
|
|
|
})
|
2017-12-24 01:44:22 +11:00
|
|
|
},
|
|
|
|
importFollows () {
|
|
|
|
this.uploading[3] = true
|
|
|
|
const followList = this.followList
|
|
|
|
this.$store.state.api.backendInteractor.followImport({params: followList})
|
|
|
|
.then((status) => {
|
|
|
|
if (status) {
|
|
|
|
this.followsImported = true
|
|
|
|
} else {
|
|
|
|
this.followImportError = true
|
|
|
|
}
|
|
|
|
this.uploading[3] = false
|
|
|
|
})
|
|
|
|
},
|
2018-05-14 09:47:08 +10:00
|
|
|
/* This function takes an Array of Users
|
|
|
|
* and outputs a file with all the addresses for the user to download
|
|
|
|
*/
|
2018-05-17 08:51:52 +10:00
|
|
|
exportPeople (users, filename) {
|
2018-05-14 09:47:08 +10:00
|
|
|
// Get all the friends addresses
|
2018-05-17 08:51:52 +10:00
|
|
|
var UserAddresses = users.map(function (user) {
|
|
|
|
// check is it's a local user
|
|
|
|
if (user && user.is_local) {
|
|
|
|
// append the instance address
|
|
|
|
// eslint-disable-next-line no-undef
|
|
|
|
user.screen_name += '@' + location.hostname
|
|
|
|
}
|
|
|
|
return user.screen_name
|
|
|
|
}).join('\n')
|
2018-05-14 09:47:08 +10:00
|
|
|
// Make the user download the file
|
2018-05-17 08:51:52 +10:00
|
|
|
var fileToDownload = document.createElement('a')
|
|
|
|
fileToDownload.setAttribute('href', 'data:text/plain;charset=utf-8,' + encodeURIComponent(UserAddresses))
|
|
|
|
fileToDownload.setAttribute('download', filename)
|
|
|
|
fileToDownload.style.display = 'none'
|
|
|
|
document.body.appendChild(fileToDownload)
|
|
|
|
fileToDownload.click()
|
|
|
|
document.body.removeChild(fileToDownload)
|
2018-05-14 09:47:08 +10:00
|
|
|
},
|
2018-05-17 08:51:52 +10:00
|
|
|
exportFollows () {
|
|
|
|
this.enableFollowsExport = false
|
2018-05-14 09:47:08 +10:00
|
|
|
this.$store.state.api.backendInteractor
|
2018-05-17 08:51:52 +10:00
|
|
|
.fetchFriends({id: this.$store.state.users.currentUser.id})
|
2018-05-18 20:34:36 +10:00
|
|
|
.then((friendList) => {
|
2018-05-17 08:51:52 +10:00
|
|
|
this.exportPeople(friendList, 'friends.csv')
|
2018-05-18 20:34:36 +10:00
|
|
|
})
|
2018-05-14 09:47:08 +10:00
|
|
|
},
|
2017-12-24 01:44:22 +11:00
|
|
|
followListChange () {
|
|
|
|
// eslint-disable-next-line no-undef
|
|
|
|
let formData = new FormData()
|
|
|
|
formData.append('list', this.$refs.followlist.files[0])
|
|
|
|
this.followList = formData
|
|
|
|
},
|
|
|
|
dismissImported () {
|
|
|
|
this.followsImported = false
|
|
|
|
this.followImportError = false
|
2018-05-14 00:09:07 +10:00
|
|
|
},
|
|
|
|
confirmDelete () {
|
|
|
|
this.deletingAccount = true
|
|
|
|
},
|
|
|
|
deleteAccount () {
|
|
|
|
this.$store.state.api.backendInteractor.deleteAccount({password: this.deleteAccountConfirmPasswordInput})
|
|
|
|
.then((res) => {
|
|
|
|
if (res.status === 'success') {
|
|
|
|
this.$store.dispatch('logout')
|
2018-05-20 21:16:49 +10:00
|
|
|
this.$router.push('/main/all')
|
2018-05-14 00:09:07 +10:00
|
|
|
} else {
|
|
|
|
this.deleteAccountError = res.error
|
|
|
|
}
|
|
|
|
})
|
2018-05-22 08:01:09 +10:00
|
|
|
},
|
|
|
|
changePassword () {
|
|
|
|
const params = {
|
|
|
|
password: this.changePasswordInputs[0],
|
|
|
|
newPassword: this.changePasswordInputs[1],
|
|
|
|
newPasswordConfirmation: this.changePasswordInputs[2]
|
|
|
|
}
|
|
|
|
this.$store.state.api.backendInteractor.changePassword(params)
|
|
|
|
.then((res) => {
|
|
|
|
if (res.status === 'success') {
|
|
|
|
this.changedPassword = true
|
|
|
|
this.changePasswordError = false
|
2018-12-01 00:30:55 +11:00
|
|
|
this._logout()
|
2018-05-22 08:01:09 +10:00
|
|
|
} else {
|
|
|
|
this.changedPassword = false
|
|
|
|
this.changePasswordError = res.error
|
|
|
|
}
|
|
|
|
})
|
2018-08-19 09:23:03 +10:00
|
|
|
},
|
|
|
|
activateTab (tabName) {
|
|
|
|
this.activeTab = tabName
|
2018-12-01 00:30:55 +11:00
|
|
|
},
|
|
|
|
_logout () {
|
|
|
|
this.$store.dispatch('logout')
|
|
|
|
this.$router.replace('/')
|
2017-08-03 05:09:40 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default UserSettings
|