mirror of
https://github.com/hay-kot/mealie.git
synced 2025-07-05 20:42:23 -07:00
Some checks are pending
CodeQL / Analyze (push) Waiting to run
Docker Nightly Production / Backend Server Tests (push) Waiting to run
Docker Nightly Production / Frontend Tests (push) Waiting to run
Docker Nightly Production / Build Package (push) Waiting to run
Docker Nightly Production / Build Tagged Release (push) Blocked by required conditions
Docker Nightly Production / Notify Discord (push) Blocked by required conditions
Release Drafter / ✏️ Draft release (push) Waiting to run
141 lines
3.7 KiB
Vue
141 lines
3.7 KiB
Vue
<template>
|
|
<v-container class="narrow-container">
|
|
<BasePageTitle class="mb-2">
|
|
<template #header>
|
|
<v-img
|
|
width="100%"
|
|
max-height="125"
|
|
max-width="125"
|
|
:src="require('~/static/svgs/manage-profile.svg')"
|
|
/>
|
|
</template>
|
|
<template #title>
|
|
{{ $t('user.admin-user-creation') }}
|
|
</template>
|
|
</BasePageTitle>
|
|
<AppToolbar back />
|
|
<v-form
|
|
ref="refNewUserForm"
|
|
@submit.prevent="handleSubmit"
|
|
>
|
|
<v-card variant="outlined">
|
|
<v-card-text>
|
|
<v-select
|
|
v-if="groups"
|
|
v-model="selectedGroupId"
|
|
:items="groups"
|
|
item-title="name"
|
|
item-value="id"
|
|
:return-object="false"
|
|
variant="filled"
|
|
:label="$t('group.user-group')"
|
|
:rules="[validators.required]"
|
|
/>
|
|
<v-select
|
|
v-model="newUserData.household"
|
|
:disabled="!selectedGroupId"
|
|
:items="households"
|
|
item-title="name"
|
|
item-value="name"
|
|
:return-object="false"
|
|
variant="filled"
|
|
:label="$t('household.user-household')"
|
|
:hint="selectedGroupId ? '' : $t('group.you-must-select-a-group-before-selecting-a-household')"
|
|
persistent-hint
|
|
:rules="[validators.required]"
|
|
/>
|
|
<AutoForm
|
|
v-model="newUserData"
|
|
:items="userForm"
|
|
/>
|
|
</v-card-text>
|
|
</v-card>
|
|
<div class="d-flex pa-2">
|
|
<BaseButton
|
|
type="submit"
|
|
class="ml-auto"
|
|
/>
|
|
</div>
|
|
</v-form>
|
|
</v-container>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { useAdminApi } from "~/composables/api";
|
|
import { useGroups } from "~/composables/use-groups";
|
|
import { useAdminHouseholds } from "~/composables/use-households";
|
|
import { useUserForm } from "~/composables/use-users";
|
|
import { validators } from "~/composables/use-validators";
|
|
import type { UserIn } from "~/lib/api/types/user";
|
|
import type { VForm } from "~/types/auto-forms";
|
|
|
|
export default defineNuxtComponent({
|
|
setup() {
|
|
definePageMeta({
|
|
layout: "admin",
|
|
});
|
|
|
|
const { userForm } = useUserForm();
|
|
const { groups } = useGroups();
|
|
const { useHouseholdsInGroup } = useAdminHouseholds();
|
|
const router = useRouter();
|
|
|
|
// ==============================================
|
|
// New User Form
|
|
|
|
const refNewUserForm = ref<VForm | null>(null);
|
|
|
|
const adminApi = useAdminApi();
|
|
|
|
const selectedGroupId = ref<string>("");
|
|
const households = useHouseholdsInGroup(selectedGroupId);
|
|
|
|
const selectedGroup = computed(() => {
|
|
return groups.value?.find(group => group.id === selectedGroupId.value);
|
|
});
|
|
const state = reactive({
|
|
newUserData: {
|
|
username: "",
|
|
fullName: "",
|
|
email: "",
|
|
admin: false,
|
|
group: selectedGroup.value?.name || "",
|
|
household: "",
|
|
advanced: false,
|
|
canInvite: false,
|
|
canManage: false,
|
|
canOrganize: false,
|
|
password: "",
|
|
authMethod: "Mealie",
|
|
},
|
|
});
|
|
watch(selectedGroup, (newGroup) => {
|
|
state.newUserData.group = newGroup?.name || "";
|
|
state.newUserData.household = "";
|
|
});
|
|
|
|
async function handleSubmit() {
|
|
if (!refNewUserForm.value?.validate()) return;
|
|
|
|
const { response } = await adminApi.users.createOne(state.newUserData as UserIn);
|
|
|
|
if (response?.status === 201) {
|
|
router.push("/admin/manage/users");
|
|
}
|
|
}
|
|
|
|
return {
|
|
...toRefs(state),
|
|
userForm,
|
|
refNewUserForm,
|
|
handleSubmit,
|
|
groups,
|
|
selectedGroupId,
|
|
households,
|
|
validators,
|
|
};
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped></style>
|