mirror of
https://github.com/YunoHost/yunohost-portal.git
synced 2024-09-03 20:06:23 +02:00
86 lines
2.2 KiB
Vue
86 lines
2.2 KiB
Vue
|
<script setup lang="ts">
|
||
|
import * as yup from 'yup'
|
||
|
|
||
|
const me = await useUserInfo()
|
||
|
|
||
|
const schema = {
|
||
|
username: yup.string(),
|
||
|
fullname: yup.string().required().min(1),
|
||
|
mailAliases: yup.array().of(yup.string().email()),
|
||
|
mailForward: yup.array().of(yup.string().email()),
|
||
|
}
|
||
|
const initialValues = {
|
||
|
username: me.value.username,
|
||
|
fullname: me.value.fullname,
|
||
|
mailAliases: me.value['mail-aliases'].length
|
||
|
? me.value['mail-aliases']
|
||
|
: [''],
|
||
|
mailForward: me.value['mail-forward'].length
|
||
|
? me.value['mail-forward']
|
||
|
: [''],
|
||
|
}
|
||
|
|
||
|
function onSubmit(form) {
|
||
|
console.log('SUBMIT user edit', form)
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<!-- {{ initialValues }} -->
|
||
|
<BaseForm :schema="schema" :initial-values="initialValues" @submit="onSubmit">
|
||
|
<div class="flex justify-between">
|
||
|
<div class="w-1/3">
|
||
|
<FormField name="username" :label="$t('username')" class="mb-3">
|
||
|
<TextInput
|
||
|
name="username"
|
||
|
type="text"
|
||
|
:placeholder="$t('username')"
|
||
|
disabled
|
||
|
class="w-full"
|
||
|
/>
|
||
|
</FormField>
|
||
|
|
||
|
<FormField name="fullname" :label="$t('fullname')">
|
||
|
<TextInput
|
||
|
name="fullname"
|
||
|
type="text"
|
||
|
:placeholder="$t('fullname')"
|
||
|
/>
|
||
|
</FormField>
|
||
|
</div>
|
||
|
|
||
|
<div class="basis-1/2">
|
||
|
<FormField
|
||
|
name="mailAliases"
|
||
|
:label="$t('mail_addresses')"
|
||
|
class="mb-10"
|
||
|
>
|
||
|
<TextInputList
|
||
|
name="mailAliases"
|
||
|
type="text"
|
||
|
:placeholder="$t('new_mail')"
|
||
|
/>
|
||
|
</FormField>
|
||
|
|
||
|
<FormField name="mailForward" :label="$t('mail_forward')">
|
||
|
<TextInputList
|
||
|
name="mailForward"
|
||
|
type="text"
|
||
|
:placeholder="$t('new_forward')"
|
||
|
/>
|
||
|
</FormField>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div class="flex mt-10">
|
||
|
<NuxtLink to="/password" class="btn btn-primary">
|
||
|
{{ $t('change_password') }}
|
||
|
</NuxtLink>
|
||
|
<NuxtLink to="/" class="btn ml-auto mr-2">
|
||
|
{{ $t('cancel') }}
|
||
|
</NuxtLink>
|
||
|
<YButton :text="$t('ok')" type="submit" variant="success" />
|
||
|
</div>
|
||
|
</BaseForm>
|
||
|
</template>
|