koel/resources/assets/js/components/profile-preferences/ProfileForm.vue

126 lines
3 KiB
Vue
Raw Normal View History

2022-04-15 14:24:30 +00:00
<template>
2022-04-21 22:51:48 +00:00
<form data-testid="update-profile-form" @submit.prevent="update">
2022-04-15 14:24:30 +00:00
<div class="form-row">
2022-07-22 16:15:30 +00:00
<label>
Current Password
<input
v-model="profile.current_password"
v-koel-focus
name="current_password"
placeholder="Required to update your profile"
required
type="password"
>
</label>
2022-04-15 14:24:30 +00:00
</div>
<div class="form-row">
2022-07-22 16:15:30 +00:00
<label>
Name
<input id="inputProfileName" v-model="profile.name" name="name" required type="text">
</label>
2022-04-15 14:24:30 +00:00
</div>
<div class="form-row">
2022-07-22 16:15:30 +00:00
<label>
Email Address
<input id="inputProfileEmail" v-model="profile.email" name="email" required type="email">
</label>
2022-04-15 14:24:30 +00:00
</div>
2022-07-22 16:15:30 +00:00
<div class="form-row">
<label>
New Password
2022-04-15 14:24:30 +00:00
<input
2022-04-21 22:51:48 +00:00
id="inputProfileNewPassword"
2022-04-15 14:24:30 +00:00
v-model="profile.new_password"
2022-04-21 22:51:48 +00:00
autocomplete="new-password"
2022-04-15 14:24:30 +00:00
name="new_password"
2022-04-21 22:51:48 +00:00
placeholder="Leave empty to keep current password"
2022-04-15 14:24:30 +00:00
type="password"
>
2022-07-22 16:15:30 +00:00
<span class="password-rules help">
Min. 10 characters. Should be a mix of characters, numbers, and symbols.
</span>
</label>
2022-04-15 14:24:30 +00:00
</div>
<div class="form-row">
2022-04-21 22:51:48 +00:00
<Btn class="btn-submit" type="submit">Save</Btn>
2022-04-29 20:15:10 +00:00
<span v-if="isDemo" class="demo-notice">
2022-04-15 14:24:30 +00:00
Changes will not be saved in the demo version.
</span>
</div>
</form>
</template>
2022-04-15 17:00:08 +00:00
<script lang="ts" setup>
import { onMounted, ref } from 'vue'
2022-04-21 22:51:48 +00:00
import { UpdateCurrentProfileData, userStore } from '@/stores'
import { isDemo, parseValidationError, requireInjection } from '@/utils'
import { DialogBoxKey, MessageToasterKey } from '@/symbols'
2022-04-15 14:24:30 +00:00
import Btn from '@/components/ui/Btn.vue'
2022-04-15 14:24:30 +00:00
const toaster = requireInjection(MessageToasterKey)
const dialog = requireInjection(DialogBoxKey)
2022-04-15 17:00:08 +00:00
const profile = ref<UpdateCurrentProfileData>({} as unknown as UpdateCurrentProfileData)
2022-04-15 14:24:30 +00:00
2022-04-15 17:00:08 +00:00
onMounted(() => {
profile.value = {
name: userStore.current.name,
email: userStore.current.email,
current_password: null
2022-04-15 14:24:30 +00:00
}
})
2022-04-15 17:00:08 +00:00
const update = async () => {
if (!profile.value) {
throw Error()
}
2022-04-29 20:15:10 +00:00
if (isDemo) {
toaster.value.success('Profile updated.')
2022-04-29 20:15:10 +00:00
return
}
2022-04-15 17:00:08 +00:00
try {
await userStore.updateProfile(profile.value)
profile.value.current_password = null
delete profile.value.new_password
toaster.value.success('Profile updated.')
2022-04-15 17:00:08 +00:00
} catch (err: any) {
const msg = err.response.status === 422 ? parseValidationError(err.response.data)[0] : 'Unknown error.'
dialog.value.error(msg, 'Error')
2022-04-15 17:00:08 +00:00
}
}
2022-04-15 14:24:30 +00:00
</script>
<style lang="scss" scoped>
input {
&[type="text"], &[type="email"], &[type="password"] {
width: 33%;
}
}
.password-rules {
2022-07-22 16:15:30 +00:00
display: block;
2022-04-15 14:24:30 +00:00
margin-top: .75rem;
}
2022-04-29 20:15:10 +00:00
.demo-notice {
font-size: .95rem;
opacity: .7;
margin-left: 5px;
}
2022-04-15 17:00:08 +00:00
@media only screen and (max-width: 667px) {
2022-04-15 14:24:30 +00:00
input {
&[type="text"], &[type="email"], &[type="password"] {
width: 100%;
height: 32px;
}
}
}
</style>