2018-02-21 17:25:57 +01:00
|
|
|
<template>
|
|
|
|
<div>
|
2018-11-08 19:44:35 +01:00
|
|
|
<ui-button @click="reset">{{ $t('reset') }}</ui-button>
|
2018-02-21 17:25:57 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-11-08 19:44:35 +01:00
|
|
|
import i18n from '../../../i18n';
|
2018-02-21 17:25:57 +01:00
|
|
|
|
|
|
|
export default Vue.extend({
|
2018-11-08 19:44:35 +01:00
|
|
|
i18n: i18n('common/views/components/password-settings.vue'),
|
2018-02-21 17:25:57 +01:00
|
|
|
methods: {
|
|
|
|
reset() {
|
|
|
|
(this as any).apis.input({
|
2018-11-08 19:44:35 +01:00
|
|
|
title: this.$t('enter-current-password'),
|
2018-02-21 17:25:57 +01:00
|
|
|
type: 'password'
|
|
|
|
}).then(currentPassword => {
|
|
|
|
(this as any).apis.input({
|
2018-11-08 19:44:35 +01:00
|
|
|
title: this.$t('enter-new-password'),
|
2018-02-21 17:25:57 +01:00
|
|
|
type: 'password'
|
|
|
|
}).then(newPassword => {
|
|
|
|
(this as any).apis.input({
|
2018-11-08 19:44:35 +01:00
|
|
|
title: this.$t('enter-new-password-again'),
|
2018-02-21 17:25:57 +01:00
|
|
|
type: 'password'
|
|
|
|
}).then(newPassword2 => {
|
|
|
|
if (newPassword !== newPassword2) {
|
|
|
|
(this as any).apis.dialog({
|
|
|
|
title: null,
|
2018-11-08 19:44:35 +01:00
|
|
|
text: this.$t('not-match'),
|
2018-02-21 17:25:57 +01:00
|
|
|
actions: [{
|
|
|
|
text: 'OK'
|
|
|
|
}]
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
(this as any).api('i/change_password', {
|
2018-03-29 07:48:47 +02:00
|
|
|
currentPasword: currentPassword,
|
|
|
|
newPassword: newPassword
|
2018-02-21 17:25:57 +01:00
|
|
|
}).then(() => {
|
2018-11-08 19:44:35 +01:00
|
|
|
(this as any).apis.notify(this.$t('changed'));
|
2018-02-21 17:25:57 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|