2018-02-21 10:25:57 -06:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<button @click="reset" class="ui primary">%i18n:desktop.tags.mk-password-setting.reset%</button>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
methods: {
|
|
|
|
reset() {
|
|
|
|
(this as any).apis.input({
|
|
|
|
title: '%i18n:desktop.tags.mk-password-setting.enter-current-password%',
|
|
|
|
type: 'password'
|
|
|
|
}).then(currentPassword => {
|
|
|
|
(this as any).apis.input({
|
|
|
|
title: '%i18n:desktop.tags.mk-password-setting.enter-new-password%',
|
|
|
|
type: 'password'
|
|
|
|
}).then(newPassword => {
|
|
|
|
(this as any).apis.input({
|
|
|
|
title: '%i18n:desktop.tags.mk-password-setting.enter-new-password-again%',
|
|
|
|
type: 'password'
|
|
|
|
}).then(newPassword2 => {
|
|
|
|
if (newPassword !== newPassword2) {
|
|
|
|
(this as any).apis.dialog({
|
|
|
|
title: null,
|
|
|
|
text: '%i18n:desktop.tags.mk-password-setting.not-match%',
|
|
|
|
actions: [{
|
|
|
|
text: 'OK'
|
|
|
|
}]
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
(this as any).api('i/change_password', {
|
2018-03-29 00:48:47 -05:00
|
|
|
currentPasword: currentPassword,
|
|
|
|
newPassword: newPassword
|
2018-02-21 10:25:57 -06:00
|
|
|
}).then(() => {
|
|
|
|
(this as any).apis.notify('%i18n:desktop.tags.mk-password-setting.changed%');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|