mirror of
https://github.com/YunoHost/yunohost-portal.git
synced 2024-09-03 20:06:23 +02:00
update Edit + Password without BaseForm
This commit is contained in:
parent
077fb2827a
commit
c5bb881d30
2 changed files with 64 additions and 35 deletions
|
@ -1,15 +1,20 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
|
import { useForm } from 'vee-validate'
|
||||||
|
import { toTypedSchema } from '@vee-validate/yup'
|
||||||
import * as yup from 'yup'
|
import * as yup from 'yup'
|
||||||
|
|
||||||
const me = await useUserInfo()
|
const me = await useUserInfo()
|
||||||
|
|
||||||
const schema = {
|
const { handleSubmit } = useForm({
|
||||||
|
validationSchema: toTypedSchema(
|
||||||
|
yup.object({
|
||||||
username: yup.string(),
|
username: yup.string(),
|
||||||
fullname: yup.string().required().min(1),
|
fullname: yup.string().required().min(1),
|
||||||
mailAliases: yup.array().of(yup.string().email()),
|
mailAliases: yup.array().of(yup.string().email()),
|
||||||
mailForward: yup.array().of(yup.string().email()),
|
mailForward: yup.array().of(yup.string().email()),
|
||||||
}
|
}),
|
||||||
const initialValues = {
|
),
|
||||||
|
initialValues: {
|
||||||
username: me.value.username,
|
username: me.value.username,
|
||||||
fullname: me.value.fullname,
|
fullname: me.value.fullname,
|
||||||
mailAliases: me.value['mail-aliases'].length
|
mailAliases: me.value['mail-aliases'].length
|
||||||
|
@ -18,16 +23,17 @@ const initialValues = {
|
||||||
mailForward: me.value['mail-forward'].length
|
mailForward: me.value['mail-forward'].length
|
||||||
? me.value['mail-forward']
|
? me.value['mail-forward']
|
||||||
: [''],
|
: [''],
|
||||||
}
|
},
|
||||||
|
})
|
||||||
|
|
||||||
function onSubmit(form) {
|
const onSubmit = handleSubmit((form) => {
|
||||||
console.log('SUBMIT user edit', form)
|
console.log('SUBMIT user edit', form)
|
||||||
}
|
})
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<!-- {{ initialValues }} -->
|
<!-- {{ initialValues }} -->
|
||||||
<BaseForm :schema="schema" :initial-values="initialValues" @submit="onSubmit">
|
<form novalidate @submit="onSubmit">
|
||||||
<div class="flex justify-between">
|
<div class="flex justify-between">
|
||||||
<div class="w-1/3">
|
<div class="w-1/3">
|
||||||
<FormField name="username" :label="$t('username')" class="mb-3">
|
<FormField name="username" :label="$t('username')" class="mb-3">
|
||||||
|
@ -45,6 +51,8 @@ function onSubmit(form) {
|
||||||
name="fullname"
|
name="fullname"
|
||||||
type="text"
|
type="text"
|
||||||
:placeholder="$t('fullname')"
|
:placeholder="$t('fullname')"
|
||||||
|
autocomplete="name"
|
||||||
|
class="w-full"
|
||||||
/>
|
/>
|
||||||
</FormField>
|
</FormField>
|
||||||
</div>
|
</div>
|
||||||
|
@ -81,5 +89,5 @@ function onSubmit(form) {
|
||||||
</NuxtLink>
|
</NuxtLink>
|
||||||
<YButton :text="$t('ok')" type="submit" variant="success" />
|
<YButton :text="$t('ok')" type="submit" variant="success" />
|
||||||
</div>
|
</div>
|
||||||
</BaseForm>
|
</form>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -1,22 +1,28 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
|
import { useForm } from 'vee-validate'
|
||||||
|
import { toTypedSchema } from '@vee-validate/yup'
|
||||||
import * as yup from 'yup'
|
import * as yup from 'yup'
|
||||||
|
|
||||||
const schema = {
|
const { handleSubmit } = useForm({
|
||||||
|
validationSchema: toTypedSchema(
|
||||||
|
yup.object({
|
||||||
currentPassword: yup.string(),
|
currentPassword: yup.string(),
|
||||||
newPassword: yup.string().required().min(8),
|
newPassword: yup.string().required().min(8),
|
||||||
confirmNewPassword: yup
|
confirmNewPassword: yup
|
||||||
.string()
|
.string()
|
||||||
.oneOf([yup.ref('newPassword')])
|
.oneOf([yup.ref('newPassword')])
|
||||||
.required(),
|
.required(),
|
||||||
}
|
}),
|
||||||
|
),
|
||||||
|
})
|
||||||
|
|
||||||
function onSubmit(form) {
|
const onSubmit = handleSubmit((form) => {
|
||||||
console.log('SUBMIT user password edit', form)
|
console.log('SUBMIT user password edit', form)
|
||||||
}
|
})
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<BaseForm :schema="schema" @submit="onSubmit">
|
<form novalidate @submit="onSubmit">
|
||||||
<!-- FIXME replace with accessible component -->
|
<!-- FIXME replace with accessible component -->
|
||||||
<div role="alert" class="alert alert-warning mb-10">
|
<div role="alert" class="alert alert-warning mb-10">
|
||||||
<Icon name="mdi:warning-outline" size="2em" />
|
<Icon name="mdi:warning-outline" size="2em" />
|
||||||
|
@ -26,20 +32,35 @@ function onSubmit(form) {
|
||||||
<div class="md:flex">
|
<div class="md:flex">
|
||||||
<div class="basis-1/2 mb-10 md:mr-10">
|
<div class="basis-1/2 mb-10 md:mr-10">
|
||||||
<FormField name="currentPassword" :label="$t('current_password')">
|
<FormField name="currentPassword" :label="$t('current_password')">
|
||||||
<TextInput name="username" type="text" class="w-full" />
|
<TextInput
|
||||||
|
name="currentPassword"
|
||||||
|
type="text"
|
||||||
|
autocomplete="currrent-password"
|
||||||
|
class="w-full"
|
||||||
|
/>
|
||||||
</FormField>
|
</FormField>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="basis-1/2 md:ml-10">
|
<div class="basis-1/2 md:ml-10">
|
||||||
<FormField name="newPassword" :label="$t('new_password')" class="mb-3">
|
<FormField name="newPassword" :label="$t('new_password')" class="mb-3">
|
||||||
<TextInput name="newPassword" type="text" class="w-full" />
|
<TextInput
|
||||||
|
name="newPassword"
|
||||||
|
type="text"
|
||||||
|
autocomplete="new-password"
|
||||||
|
class="w-full"
|
||||||
|
/>
|
||||||
</FormField>
|
</FormField>
|
||||||
|
|
||||||
<FormField
|
<FormField
|
||||||
name="confirmNewPassword"
|
name="confirmNewPassword"
|
||||||
:label="$t('confirm_new_password')"
|
:label="$t('confirm_new_password')"
|
||||||
>
|
>
|
||||||
<TextInput name="confirmNewPassword" type="text" class="w-full" />
|
<TextInput
|
||||||
|
name="confirmNewPassword"
|
||||||
|
type="text"
|
||||||
|
autocomplete="new-password"
|
||||||
|
class="w-full"
|
||||||
|
/>
|
||||||
</FormField>
|
</FormField>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -50,5 +71,5 @@ function onSubmit(form) {
|
||||||
</NuxtLink>
|
</NuxtLink>
|
||||||
<YButton :text="$t('ok')" type="submit" variant="success" />
|
<YButton :text="$t('ok')" type="submit" variant="success" />
|
||||||
</div>
|
</div>
|
||||||
</BaseForm>
|
</form>
|
||||||
</template>
|
</template>
|
||||||
|
|
Loading…
Reference in a new issue