mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-19 00:22:15 +00:00
76 lines
2.6 KiB
Vue
76 lines
2.6 KiB
Vue
<template>
|
|
<PageTab>
|
|
<div class="card shadow-card">
|
|
<FormLabel>
|
|
{{ $t('user_box_password.title') }}
|
|
</FormLabel>
|
|
|
|
<AppInputSwitch :title="$t('Reset User Password')" :description="$t('user_box_password.description')" :is-last="true">
|
|
<ButtonBase @click.native="requestPasswordResetEmail" :loading="isSendingRequest" :disabled="isSendingRequest" class="sm:w-auto w-full" button-style="theme">
|
|
{{ $t('admin_page_user.send_password_link') }}
|
|
</ButtonBase>
|
|
</AppInputSwitch>
|
|
</div>
|
|
</PageTab>
|
|
</template>
|
|
|
|
<script>
|
|
import {ValidationProvider, ValidationObserver} from 'vee-validate/dist/vee-validate.full'
|
|
import PageTabGroup from '/resources/js/components/Others/Layout/PageTabGroup'
|
|
import AppInputSwitch from "../../../../components/Admin/AppInputSwitch"
|
|
import FormLabel from '/resources/js/components/Others/Forms/FormLabel'
|
|
import ButtonBase from '/resources/js/components/FilesView/ButtonBase'
|
|
import SetupBox from '/resources/js/components/Others/Forms/SetupBox'
|
|
import PageTab from '/resources/js/components/Others/Layout/PageTab'
|
|
import InfoBox from '/resources/js/components/Others/Forms/InfoBox'
|
|
import {required} from 'vee-validate/dist/rules'
|
|
import {events} from '/resources/js/bus'
|
|
import axios from 'axios'
|
|
|
|
export default {
|
|
name: 'UserPassword',
|
|
components: {
|
|
ValidationProvider,
|
|
ValidationObserver,
|
|
AppInputSwitch,
|
|
PageTabGroup,
|
|
ButtonBase,
|
|
FormLabel,
|
|
SetupBox,
|
|
required,
|
|
InfoBox,
|
|
PageTab,
|
|
},
|
|
data() {
|
|
return {
|
|
isLoading: false,
|
|
isSendingRequest: false,
|
|
}
|
|
},
|
|
methods: {
|
|
requestPasswordResetEmail() {
|
|
|
|
this.isSendingRequest = true
|
|
|
|
axios
|
|
.post(`${this.$store.getters.api}/admin/users/${this.$route.params.id}/reset-password`,
|
|
{}
|
|
)
|
|
.then(() => {
|
|
events.$emit('toaster', {
|
|
type: 'success',
|
|
message: this.$t('toaster.sended_password'),
|
|
})
|
|
})
|
|
.catch(() => {
|
|
events.$emit('alert:open', {
|
|
title: this.$t('popup_error.title'),
|
|
message: this.$t('popup_error.message'),
|
|
})
|
|
})
|
|
.finally(() => this.isSendingRequest = false)
|
|
}
|
|
}
|
|
}
|
|
</script>
|