Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/autotrack data fetch #111

Open
wants to merge 1 commit into
base: v2
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/front/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint nuxt.config.ts --fix ; nuxi typecheck ; eslint ./src/"
"lint": "eslint nuxt.config.ts --fix ; nuxi typecheck && eslint ./src/"
},
"devDependencies": {
"@nuxt/eslint-config": "^0.1.1",
Expand Down
6 changes: 3 additions & 3 deletions apps/front/src/components/user/UserCreateForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<h1>Register</h1>
<form @submit.prevent.stop="registerUser">
<UserForm
v-model:email="email"
v-model:email="localReactive.email"
v-model:password="password"
v-model:password-confirm="passwordConfirm"
:is-password-confirmed="isPasswordConfirmed"
Expand All @@ -17,7 +17,7 @@ import useUser from "~/composables/user/useUser";

const { createUser, errorMessage } = useCreateUser();
const {
email,
localReactive,
password,
passwordConfirm,
isPasswordConfirmed,
Expand All @@ -30,7 +30,7 @@ const registerUser = async () => {
throw createError("You need a valid password");
}
try {
await createUser(email.value, securedPassword.value);
await createUser(localReactive.email, securedPassword.value);
await navigateTo("/users");
} catch (e) {
logger.info(e);
Expand Down
6 changes: 3 additions & 3 deletions apps/front/src/components/user/UserUpdateForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<form v-if="!userPending" @submit.prevent.stop="updateUser">
<h1>Update user {{ data.email }}</h1>
<UserForm
v-model:email="email"
v-model:email="localReactive.email"
v-model:password="password"
v-model:password-confirm="passwordConfirm"
:is-password-confirmed="isPasswordConfirmed"
Expand Down Expand Up @@ -34,7 +34,7 @@ const {
} = await useGetUser(props.userId as string);

const {
email,
localReactive,
password,
passwordConfirm,
isPasswordConfirmed,
Expand All @@ -45,7 +45,7 @@ const updateUser = async () => {
await updateUserApi(
data.value.id,
{
email: email.value,
email: localReactive.email,
},
securedPassword.value
);
Expand Down
1 change: 1 addition & 0 deletions apps/front/src/composables/api/user/useGetUser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@ export default async function useGetUser(userId: string) {
return useAppFetch<User>(() => "/users/" + userId, {
key: "getUser",
method: GET,
lazy: true,
});
}
17 changes: 17 additions & 0 deletions apps/front/src/composables/useLocalReactiveFromRef.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/**
* This composable is usefull if you want to create a copy from a nuxt fetch
* Better to use reactive to track objets
* **/
export default function useLocalReactiveFromRef<T extends object>(
originalRef: Ref<T> | T
): T {
const val = unref(originalRef);
const localReactive = reactive(val) as T;
watchEffect(() => {
const val = unref(originalRef);
for (const key in val) {
localReactive[key] = val[key];
}
});
return localReactive;
}
15 changes: 12 additions & 3 deletions apps/front/src/composables/user/useUser.ts
Original file line number Diff line number Diff line change
@@ -1,18 +1,27 @@
import { User } from "~/types/User";

import useLocalReactiveFromRef from "~/composables/useLocalReactiveFromRef";
export default function useUser(user: Ref<User> | undefined = undefined) {
// Here we put the whole object as reactive state
// We create a copy so when you update the email, it wont be reflected in initial data.
// But when the email is updated in initial data, it update your local copy
const localReactive = useLocalReactiveFromRef<User>(
user || {
email: "",
id: 0,
}
);
// Password has very specific rules. You should only need to have an useLocalReactiveFromRef
const password = ref("");
const passwordConfirm = ref("");
const email = user ? toRef(user?.value?.email) : ref("");
const isPasswordConfirmed = computed(
() => password.value === passwordConfirm.value
);

const isPasswordEmpty = computed(() => !password.value);
return {
localReactive: localReactive,
password,
passwordConfirm,
email: email,
isPasswordConfirmed,
securedPassword: computed(() =>
isPasswordConfirmed && isPasswordEmpty ? password.value : ""
Expand Down