biome format --write

This commit is contained in:
Henry Jameson 2026-01-06 16:22:52 +02:00
commit 9262e803ec
415 changed files with 54076 additions and 17419 deletions

View file

@ -1,34 +1,30 @@
import { mapState } from 'vuex'
import passwordResetApi from '../../services/new_api/password_reset.js'
import { library } from '@fortawesome/fontawesome-svg-core'
import {
faTimes
} from '@fortawesome/free-solid-svg-icons'
import { faTimes } from '@fortawesome/free-solid-svg-icons'
library.add(
faTimes
)
library.add(faTimes)
const passwordReset = {
data: () => ({
user: {
email: ''
email: '',
},
isPending: false,
success: false,
throttled: false,
error: null
error: null,
}),
computed: {
...mapState({
signedIn: (state) => !!state.users.currentUser,
instance: state => state.instance
instance: (state) => state.instance,
}),
mailerEnabled () {
mailerEnabled() {
return this.instance.mailerEnabled
}
},
},
created () {
created() {
if (this.signedIn) {
this.$router.push({ name: 'root' })
}
@ -36,36 +32,38 @@ const passwordReset = {
props: {
passwordResetRequested: {
default: false,
type: Boolean
}
type: Boolean,
},
},
methods: {
dismissError () {
dismissError() {
this.error = null
},
submit () {
submit() {
this.isPending = true
const email = this.user.email
const instance = this.instance.server
passwordResetApi({ instance, email }).then(({ status }) => {
this.isPending = false
this.user.email = ''
passwordResetApi({ instance, email })
.then(({ status }) => {
this.isPending = false
this.user.email = ''
if (status === 204) {
this.success = true
this.error = null
} else if (status === 429) {
this.throttled = true
this.error = this.$t('password_reset.too_many_requests')
}
}).catch(() => {
this.isPending = false
this.user.email = ''
this.error = this.$t('general.generic_error')
})
}
}
if (status === 204) {
this.success = true
this.error = null
} else if (status === 429) {
this.throttled = true
this.error = this.$t('password_reset.too_many_requests')
}
})
.catch(() => {
this.isPending = false
this.user.email = ''
this.error = this.$t('general.generic_error')
})
},
},
}
export default passwordReset