Revert "refactor(editor): Turn showMessage mixin to composable" (#6243)

Revert "refactor(editor): Turn showMessage mixin to composable (#6081)"

This reverts commit b95fcd7323.
This commit is contained in:
Csaba Tuncsik
2023-05-12 16:43:34 +02:00
committed by GitHub
parent 13bcec1661
commit 638e3f209d
75 changed files with 863 additions and 991 deletions

View File

@@ -9,25 +9,20 @@
</template>
<script lang="ts">
import AuthView from '@/views/AuthView.vue';
import { useToast } from '@/composables';
import AuthView from './AuthView.vue';
import { showMessage } from '@/mixins/showMessage';
import { defineComponent } from 'vue';
import mixins from 'vue-typed-mixins';
import type { IFormBoxConfig } from '@/Interface';
import { VIEWS } from '@/constants';
import { mapStores } from 'pinia';
import { useUsersStore } from '@/stores/users.store';
export default defineComponent({
export default mixins(showMessage).extend({
name: 'ChangePasswordView',
components: {
AuthView,
},
setup() {
return {
...useToast(),
};
},
data() {
return {
password: '',
@@ -93,7 +88,7 @@ export default defineComponent({
await this.usersStore.validatePasswordToken({ token, userId });
} catch (e) {
this.showMessage({
this.$showMessage({
title: this.$locale.baseText('auth.changePassword.tokenValidationError'),
type: 'error',
});
@@ -133,7 +128,7 @@ export default defineComponent({
if (token && userId) {
await this.usersStore.changePassword({ token, userId, password: this.password });
this.showMessage({
this.$showMessage({
type: 'success',
title: this.$locale.baseText('auth.changePassword.passwordUpdated'),
message: this.$locale.baseText('auth.changePassword.passwordUpdatedMessage'),
@@ -141,13 +136,13 @@ export default defineComponent({
await this.$router.push({ name: VIEWS.SIGNIN });
} else {
this.showError(
this.$showError(
new Error(this.$locale.baseText('auth.validation.missingParameters')),
this.$locale.baseText('auth.changePassword.error'),
);
}
} catch (error) {
this.showError(error, this.$locale.baseText('auth.changePassword.error'));
this.$showError(error, this.$locale.baseText('auth.changePassword.error'));
}
this.loading = false;
},