mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-31 02:03:35 -04:00 
			
		
		
		
	* fix ts types * feat(code-generation): ♻️ update code-generation formats * new scope * add step button * fix linter error * update code-generation tags * feat(backend): ✨ start multi-tenant support * feat(backend): ✨ group invitation token generation and signup * refactor(backend): ♻️ move group admin actions to admin router * set url base to include `/admin` * feat(frontend): ✨ generate user sign-up links * test(backend): ✅ refactor test-suite to further decouple tests (WIP) * feat(backend): 🐛 assign owner on backup import for recipes * fix(backend): 🐛 assign recipe owner on migration from other service Co-authored-by: hay-kot <hay-kot@pm.me>
		
			
				
	
	
		
			178 lines
		
	
	
		
			5.4 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			178 lines
		
	
	
		
			5.4 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <v-container fill-height fluid class="d-flex justify-center align-start narrow-container">
 | |
|     <v-card color="background d-flex flex-column align-center" flat width="700px">
 | |
|       <v-card-title class="headline"> User Registration </v-card-title>
 | |
|       <v-card-text>
 | |
|         <v-form ref="domRegisterForm" @submit.prevent="register()">
 | |
|           <div class="d-flex justify-center my-2">
 | |
|             <v-btn-toggle v-model="joinGroup" mandatory tile group color="primary">
 | |
|               <v-btn :value="false" small @click="joinGroup = false"> Create a Group </v-btn>
 | |
|               <v-btn :value="true" small @click="joinGroup = true"> Join a Group </v-btn>
 | |
|             </v-btn-toggle>
 | |
|           </div>
 | |
|           <v-text-field
 | |
|             v-if="!joinGroup"
 | |
|             v-model="form.group"
 | |
|             filled
 | |
|             rounded
 | |
|             autofocus
 | |
|             validate-on-blur
 | |
|             class="rounded-lg"
 | |
|             :prepend-icon="$globals.icons.group"
 | |
|             :rules="[tokenOrGroup]"
 | |
|             label="New Group Name"
 | |
|           />
 | |
|           <v-text-field
 | |
|             v-else
 | |
|             v-model="form.groupToken"
 | |
|             filled
 | |
|             rounded
 | |
|             validate-on-blur
 | |
|             :rules="[tokenOrGroup]"
 | |
|             class="rounded-lg"
 | |
|             :prepend-icon="$globals.icons.group"
 | |
|             label="Group Token"
 | |
|           />
 | |
|           <v-text-field
 | |
|             v-model="form.email"
 | |
|             filled
 | |
|             rounded
 | |
|             class="rounded-lg"
 | |
|             validate-on-blur
 | |
|             :prepend-icon="$globals.icons.email"
 | |
|             label="Email"
 | |
|             :rules="[validators.required, validators.email]"
 | |
|           />
 | |
|           <v-text-field
 | |
|             v-model="form.username"
 | |
|             filled
 | |
|             rounded
 | |
|             class="rounded-lg"
 | |
|             :prepend-icon="$globals.icons.user"
 | |
|             label="Username"
 | |
|             :rules="[validators.required]"
 | |
|           />
 | |
|           <v-text-field
 | |
|             v-model="form.password"
 | |
|             filled
 | |
|             rounded
 | |
|             class="rounded-lg"
 | |
|             :prepend-icon="$globals.icons.lock"
 | |
|             name="password"
 | |
|             label="Password"
 | |
|             type="password"
 | |
|             :rules="[validators.required]"
 | |
|           />
 | |
|           <v-text-field
 | |
|             v-model="form.passwordConfirm"
 | |
|             filled
 | |
|             rounded
 | |
|             validate-on-blur
 | |
|             class="rounded-lg"
 | |
|             :prepend-icon="$globals.icons.lock"
 | |
|             name="password"
 | |
|             label="Confirm Password"
 | |
|             type="password"
 | |
|             :rules="[validators.required, passwordMatch]"
 | |
|           />
 | |
|           <div class="mt-n4 px-8">
 | |
|             <v-checkbox v-model="form.private" label="Keep My Recipes Private"></v-checkbox>
 | |
|             <p class="text-caption mt-n4">
 | |
|               Sets your group and all recipes defaults to private. You can always change this later.
 | |
|             </p>
 | |
|             <v-checkbox v-model="form.advanced" label="Enable Advanced Content"></v-checkbox>
 | |
|             <p class="text-caption mt-n4">
 | |
|               Enables advanced features like Recipe Scaling, API keys, Webhooks, and Data Management. Don't worry, you
 | |
|               can always change this later
 | |
|             </p>
 | |
|           </div>
 | |
|           <div class="d-flex flex-column justify-center">
 | |
|             <v-btn :loading="loggingIn" color="primary" type="submit" large rounded class="rounded-xl" block>
 | |
|               Register
 | |
|             </v-btn>
 | |
|             <v-btn class="mx-auto my-2" text to="/login"> Login </v-btn>
 | |
|           </div>
 | |
|         </v-form>
 | |
|       </v-card-text>
 | |
|     </v-card>
 | |
|   </v-container>
 | |
| </template>
 | |
| 
 | |
| <script lang="ts">
 | |
| import { computed, defineComponent, reactive, toRefs, ref, useRouter, watch } from "@nuxtjs/composition-api";
 | |
| import { validators } from "@/composables/use-validators";
 | |
| import { useApiSingleton } from "~/composables/use-api";
 | |
| import { alert } from "~/composables/use-toast";
 | |
| import { useRouterQuery } from "@/composables/use-router";
 | |
| 
 | |
| export default defineComponent({
 | |
|   layout: "basic",
 | |
|   setup() {
 | |
|     const api = useApiSingleton();
 | |
|     const state = reactive({
 | |
|       joinGroup: false,
 | |
|       loggingIn: false,
 | |
|       success: false,
 | |
|     });
 | |
|     const allowSignup = computed(() => process.env.AllOW_SIGNUP);
 | |
| 
 | |
|     const token = useRouterQuery("token");
 | |
| 
 | |
|     watch(token, (newToken) => {
 | |
|       if (newToken) {
 | |
|         console.log(token);
 | |
|         form.groupToken = newToken;
 | |
|       }
 | |
|     });
 | |
| 
 | |
|     if (token) {
 | |
|       state.joinGroup = true;
 | |
|     }
 | |
| 
 | |
|     // @ts-ignore
 | |
|     const domRegisterForm = ref<VForm>(null);
 | |
| 
 | |
|     const form = reactive({
 | |
|       group: "",
 | |
|       groupToken: token,
 | |
|       email: "",
 | |
|       username: "",
 | |
|       password: "",
 | |
|       passwordConfirm: "",
 | |
|       advanced: false,
 | |
|       private: false,
 | |
|     });
 | |
| 
 | |
|     const passwordMatch = () => form.password === form.passwordConfirm || "Passwords do not match";
 | |
|     const tokenOrGroup = () => form.group !== "" || form.groupToken !== "" || "Group name or token must be given";
 | |
| 
 | |
|     const router = useRouter();
 | |
| 
 | |
|     async function register() {
 | |
|       if (!domRegisterForm.value?.validate()) {
 | |
|         return;
 | |
|       }
 | |
| 
 | |
|       const { response } = await api.register.register(form);
 | |
| 
 | |
|       if (response?.status === 201) {
 | |
|         state.success = true;
 | |
|         alert.success("Registration Success");
 | |
|         router.push("/user/login");
 | |
|       }
 | |
|     }
 | |
| 
 | |
|     return {
 | |
|       token,
 | |
|       domRegisterForm,
 | |
|       validators,
 | |
|       allowSignup,
 | |
|       form,
 | |
|       ...toRefs(state),
 | |
|       passwordMatch,
 | |
|       tokenOrGroup,
 | |
|       register,
 | |
|     };
 | |
|   },
 | |
| });
 | |
| </script> |