forked from AkkomaGang/akkoma-fe
Added change password to user settings
This commit is contained in:
parent
f06fef26b1
commit
e0ba6a5876
5 changed files with 70 additions and 6 deletions
|
@ -13,7 +13,10 @@ const UserSettings = {
|
||||||
previews: [ null, null, null ],
|
previews: [ null, null, null ],
|
||||||
deletingAccount: false,
|
deletingAccount: false,
|
||||||
deleteAccountConfirmPasswordInput: '',
|
deleteAccountConfirmPasswordInput: '',
|
||||||
deleteAccountError: false
|
deleteAccountError: false,
|
||||||
|
changePasswordInputs: [ '', '', '' ],
|
||||||
|
changedPassword: false,
|
||||||
|
changePasswordError: false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
components: {
|
components: {
|
||||||
|
@ -195,6 +198,23 @@ const UserSettings = {
|
||||||
this.deleteAccountError = res.error
|
this.deleteAccountError = res.error
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
},
|
||||||
|
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
|
||||||
|
} else {
|
||||||
|
this.changedPassword = false
|
||||||
|
this.changePasswordError = res.error
|
||||||
|
}
|
||||||
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -49,6 +49,25 @@
|
||||||
<i class=" icon-spin4 animate-spin uploading" v-if="uploading[2]"></i>
|
<i class=" icon-spin4 animate-spin uploading" v-if="uploading[2]"></i>
|
||||||
<button class="btn btn-default" v-else-if="previews[2]" @click="submitBg">{{$t('general.submit')}}</button>
|
<button class="btn btn-default" v-else-if="previews[2]" @click="submitBg">{{$t('general.submit')}}</button>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="setting-item">
|
||||||
|
<h3>{{$t('settings.change_password')}}</h3>
|
||||||
|
<div>
|
||||||
|
<p>{{$t('settings.current_password')}}</p>
|
||||||
|
<input type="password" v-model="changePasswordInputs[0]">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<p>{{$t('settings.new_password')}}</p>
|
||||||
|
<input type="password" v-model="changePasswordInputs[1]">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<p>{{$t('settings.confirm_new_password')}}</p>
|
||||||
|
<input type="password" v-model="changePasswordInputs[2]">
|
||||||
|
</div>
|
||||||
|
<button class="btn btn-default" @click="changePassword">{{$t('general.submit')}}</button>
|
||||||
|
<p v-if="changedPassword">{{$t('settings.changed_password')}}</p>
|
||||||
|
<p v-else-if="changePasswordError !== false">{{$t('settings.change_password_error')}}</p>
|
||||||
|
<p v-if="changePasswordError">{{changePasswordError}}</p>
|
||||||
|
</div>
|
||||||
<div class="setting-item" v-if="pleromaBackend">
|
<div class="setting-item" v-if="pleromaBackend">
|
||||||
<h3>{{$t('settings.follow_import')}}</h3>
|
<h3>{{$t('settings.follow_import')}}</h3>
|
||||||
<p>{{$t('settings.import_followers_from_a_csv_file')}}</p>
|
<p>{{$t('settings.import_followers_from_a_csv_file')}}</p>
|
||||||
|
@ -62,7 +81,7 @@
|
||||||
<p>{{$t('settings.follows_imported')}}</p>
|
<p>{{$t('settings.follows_imported')}}</p>
|
||||||
</div>
|
</div>
|
||||||
<div v-else-if="followImportError">
|
<div v-else-if="followImportError">
|
||||||
<i class="icon-cross" @click="dismissImported"</i>
|
<i class="icon-cross" @click="dismissImported"></i>
|
||||||
<p>{{$t('settings.follow_import_error')}}</p>
|
<p>{{$t('settings.follow_import_error')}}</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -291,12 +291,18 @@ const en = {
|
||||||
follows_imported: 'Follows imported! Processing them will take a while.',
|
follows_imported: 'Follows imported! Processing them will take a while.',
|
||||||
follow_import_error: 'Error importing followers',
|
follow_import_error: 'Error importing followers',
|
||||||
delete_account: 'Delete Account',
|
delete_account: 'Delete Account',
|
||||||
delete_account_description: 'Permanantly delete your account and all your messages.',
|
delete_account_description: 'Permanently delete your account and all your messages.',
|
||||||
delete_account_instructions: 'Type your password in the input below to confirm account deletion.',
|
delete_account_instructions: 'Type your password in the input below to confirm account deletion.',
|
||||||
delete_account_error: 'There was an issue deleting your account. If this persists please contact your instance administrator.',
|
delete_account_error: 'There was an issue deleting your account. If this persists please contact your instance administrator.',
|
||||||
follow_export: 'Follow export',
|
follow_export: 'Follow export',
|
||||||
follow_export_processing: 'Processing, you\'ll soon be asked to download your file',
|
follow_export_processing: 'Processing, you\'ll soon be asked to download your file',
|
||||||
follow_export_button: 'Export your follows to a csv file'
|
follow_export_button: 'Export your follows to a csv file',
|
||||||
|
change_password: 'Change Password',
|
||||||
|
current_password: 'Current password',
|
||||||
|
new_password: 'New password',
|
||||||
|
confirm_new_password: 'Confirm new password',
|
||||||
|
changed_password: 'Password changed successfully!',
|
||||||
|
change_password_error: 'There was an issue changing your password.'
|
||||||
},
|
},
|
||||||
notifications: {
|
notifications: {
|
||||||
notifications: 'Notifications',
|
notifications: 'Notifications',
|
||||||
|
|
|
@ -31,6 +31,7 @@ const UNBLOCKING_URL = '/api/blocks/destroy.json'
|
||||||
const USER_URL = '/api/users/show.json'
|
const USER_URL = '/api/users/show.json'
|
||||||
const FOLLOW_IMPORT_URL = '/api/pleroma/follow_import'
|
const FOLLOW_IMPORT_URL = '/api/pleroma/follow_import'
|
||||||
const DELETE_ACCOUNT_URL = '/api/pleroma/delete_account'
|
const DELETE_ACCOUNT_URL = '/api/pleroma/delete_account'
|
||||||
|
const CHANGE_PASSWORD_URL = '/api/pleroma/change_password'
|
||||||
|
|
||||||
import { each, map } from 'lodash'
|
import { each, map } from 'lodash'
|
||||||
import 'whatwg-fetch'
|
import 'whatwg-fetch'
|
||||||
|
@ -387,6 +388,21 @@ const deleteAccount = ({credentials, password}) => {
|
||||||
.then((response) => response.json())
|
.then((response) => response.json())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const changePassword = ({credentials, password, newPassword, newPasswordConfirmation}) => {
|
||||||
|
const form = new FormData()
|
||||||
|
|
||||||
|
form.append('password', password)
|
||||||
|
form.append('new_password', newPassword)
|
||||||
|
form.append('new_password_confirmation', newPasswordConfirmation)
|
||||||
|
|
||||||
|
return fetch(CHANGE_PASSWORD_URL, {
|
||||||
|
body: form,
|
||||||
|
method: 'POST',
|
||||||
|
headers: authHeaders(credentials)
|
||||||
|
})
|
||||||
|
.then((response) => response.json())
|
||||||
|
}
|
||||||
|
|
||||||
const fetchMutes = ({credentials}) => {
|
const fetchMutes = ({credentials}) => {
|
||||||
const url = '/api/qvitter/mutes.json'
|
const url = '/api/qvitter/mutes.json'
|
||||||
|
|
||||||
|
@ -423,7 +439,8 @@ const apiService = {
|
||||||
updateBanner,
|
updateBanner,
|
||||||
externalProfile,
|
externalProfile,
|
||||||
followImport,
|
followImport,
|
||||||
deleteAccount
|
deleteAccount,
|
||||||
|
changePassword
|
||||||
}
|
}
|
||||||
|
|
||||||
export default apiService
|
export default apiService
|
||||||
|
|
|
@ -62,6 +62,7 @@ const backendInteractorService = (credentials) => {
|
||||||
const followImport = ({params}) => apiService.followImport({params, credentials})
|
const followImport = ({params}) => apiService.followImport({params, credentials})
|
||||||
|
|
||||||
const deleteAccount = ({password}) => apiService.deleteAccount({credentials, password})
|
const deleteAccount = ({password}) => apiService.deleteAccount({credentials, password})
|
||||||
|
const changePassword = ({password, newPassword, newPasswordConfirmation}) => apiService.changePassword({credentials, password, newPassword, newPasswordConfirmation})
|
||||||
|
|
||||||
const backendInteractorServiceInstance = {
|
const backendInteractorServiceInstance = {
|
||||||
fetchStatus,
|
fetchStatus,
|
||||||
|
@ -85,7 +86,8 @@ const backendInteractorService = (credentials) => {
|
||||||
updateProfile,
|
updateProfile,
|
||||||
externalProfile,
|
externalProfile,
|
||||||
followImport,
|
followImport,
|
||||||
deleteAccount
|
deleteAccount,
|
||||||
|
changePassword
|
||||||
}
|
}
|
||||||
|
|
||||||
return backendInteractorServiceInstance
|
return backendInteractorServiceInstance
|
||||||
|
|
Loading…
Reference in a new issue