refactoring

fix-dropdown
taehoon 6 years ago
parent 95bc2d727b
commit ab19669bf1

@ -251,10 +251,8 @@ const UserSettings = {
} }
}) })
}, },
getFollowsContent () { generateExportableUsersContent (users) {
return this.$store.state.api.backendInteractor.exportFriends({ id: this.$store.state.users.currentUser.id }) // Get addresses
.then((users) => {
// Get all the friends addresses
return users.map((user) => { return users.map((user) => {
// check is it's a local user // check is it's a local user
if (user && user.is_local) { if (user && user.is_local) {
@ -264,22 +262,14 @@ const UserSettings = {
} }
return user.screen_name return user.screen_name
}).join('\n') }).join('\n')
}) },
getFollowsContent () {
return this.$store.state.api.backendInteractor.exportFriends({ id: this.$store.state.users.currentUser.id })
.then(this.generateExportableUsersContent)
}, },
getBlocksContent () { getBlocksContent () {
return this.$store.state.api.backendInteractor.fetchBlocks() return this.$store.state.api.backendInteractor.fetchBlocks()
.then((users) => { .then(this.generateExportableUsersContent)
// Get all the friends addresses
return users.map((user) => {
// check is it's a local user
if (user && user.is_local) {
// append the instance address
// eslint-disable-next-line no-undef
return user.screen_name + '@' + location.hostname
}
return user.screen_name
}).join('\n')
})
}, },
confirmDelete () { confirmDelete () {
this.deletingAccount = true this.deletingAccount = true

Loading…
Cancel
Save