mirror of
https://github.com/urosran/cally.git
synced 2025-11-26 16:34:54 +00:00
bugfixes
This commit is contained in:
@ -8,7 +8,7 @@ const Entry = () => {
|
|||||||
const [tab, setTab] = useState<"register" | "login" | "reset-password">("login");
|
const [tab, setTab] = useState<"register" | "login" | "reset-password">("login");
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<View>
|
<View style={{height:"100%"}}>
|
||||||
{tab === "register" && <SignUpPage setTab={setTab}/>}
|
{tab === "register" && <SignUpPage setTab={setTab}/>}
|
||||||
{tab === "login" && <SignInPage setTab={setTab}/>}
|
{tab === "login" && <SignInPage setTab={setTab}/>}
|
||||||
{tab === "reset-password" && <ResetPasswordPage setTab={setTab}/>}
|
{tab === "reset-password" && <ResetPasswordPage setTab={setTab}/>}
|
||||||
|
|||||||
@ -167,7 +167,7 @@ const SignInPage = ({
|
|||||||
bottom
|
bottom
|
||||||
width="100%"
|
width="100%"
|
||||||
height="70%"
|
height="70%"
|
||||||
containerStyle={{ padding: 0 }}
|
containerStyle={{ padding: 15, backgroundColor:"white" }}
|
||||||
>
|
>
|
||||||
{hasPermission === null ? (
|
{hasPermission === null ? (
|
||||||
<Text>Requesting camera permissions...</Text>
|
<Text>Requesting camera permissions...</Text>
|
||||||
@ -175,7 +175,7 @@ const SignInPage = ({
|
|||||||
<Text>No access to camera</Text>
|
<Text>No access to camera</Text>
|
||||||
) : (
|
) : (
|
||||||
<CameraView
|
<CameraView
|
||||||
style={{ flex: 1 }}
|
style={{ flex: 1, borderRadius: 15 }}
|
||||||
onBarcodeScanned={handleQrCodeScanned}
|
onBarcodeScanned={handleQrCodeScanned}
|
||||||
barcodeScannerSettings={{
|
barcodeScannerSettings={{
|
||||||
barcodeTypes: ["qr"],
|
barcodeTypes: ["qr"],
|
||||||
@ -186,7 +186,7 @@ const SignInPage = ({
|
|||||||
label="Cancel"
|
label="Cancel"
|
||||||
onPress={() => setShowCameraDialog(false)}
|
onPress={() => setShowCameraDialog(false)}
|
||||||
backgroundColor="#fd1775"
|
backgroundColor="#fd1775"
|
||||||
style={{ margin: 10 }}
|
style={{ margin: 10, marginBottom: 30 }}
|
||||||
/>
|
/>
|
||||||
</Dialog>
|
</Dialog>
|
||||||
</View>
|
</View>
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
import React, { useRef, useState } from "react";
|
import React, {useRef, useState} from "react";
|
||||||
import {
|
import {
|
||||||
Button,
|
Button,
|
||||||
ButtonSize,
|
ButtonSize,
|
||||||
@ -9,14 +9,13 @@ import {
|
|||||||
TouchableOpacity,
|
TouchableOpacity,
|
||||||
View,
|
View,
|
||||||
} from "react-native-ui-lib";
|
} from "react-native-ui-lib";
|
||||||
import { useSignUp } from "@/hooks/firebase/useSignUp";
|
import {useSignUp} from "@/hooks/firebase/useSignUp";
|
||||||
import { ProfileType } from "@/contexts/AuthContext";
|
import {StyleSheet} from "react-native";
|
||||||
import { Dimensions, StyleSheet } from "react-native";
|
import {AntDesign} from "@expo/vector-icons";
|
||||||
import { AntDesign } from "@expo/vector-icons";
|
|
||||||
|
|
||||||
const SignUpPage = ({
|
const SignUpPage = ({
|
||||||
setTab,
|
setTab,
|
||||||
}: {
|
}: {
|
||||||
setTab: React.Dispatch<
|
setTab: React.Dispatch<
|
||||||
React.SetStateAction<"register" | "login" | "reset-password">
|
React.SetStateAction<"register" | "login" | "reset-password">
|
||||||
>;
|
>;
|
||||||
@ -29,18 +28,18 @@ const SignUpPage = ({
|
|||||||
const [isPasswordVisible, setIsPasswordVisible] = useState<boolean>(false);
|
const [isPasswordVisible, setIsPasswordVisible] = useState<boolean>(false);
|
||||||
const [allowFaceID, setAllowFaceID] = useState<boolean>(false);
|
const [allowFaceID, setAllowFaceID] = useState<boolean>(false);
|
||||||
const [acceptTerms, setAcceptTerms] = useState<boolean>(false);
|
const [acceptTerms, setAcceptTerms] = useState<boolean>(false);
|
||||||
const { mutateAsync: signUp } = useSignUp();
|
const {mutateAsync: signUp} = useSignUp();
|
||||||
|
|
||||||
const lnameRef = useRef<TextFieldRef>(null);
|
const lnameRef = useRef<TextFieldRef>(null);
|
||||||
const emailRef = useRef<TextFieldRef>(null);
|
const emailRef = useRef<TextFieldRef>(null);
|
||||||
const passwordRef = useRef<TextFieldRef>(null);
|
const passwordRef = useRef<TextFieldRef>(null);
|
||||||
|
|
||||||
const handleSignUp = async () => {
|
const handleSignUp = async () => {
|
||||||
await signUp({ email, password, firstName, lastName });
|
await signUp({email, password, firstName, lastName});
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<View padding-15 marginT-30 height={Dimensions.get("window").height} flexG>
|
<View height={"100%"} padding-15 marginT-30>
|
||||||
<Text style={styles.title}>Get started with Cally</Text>
|
<Text style={styles.title}>Get started with Cally</Text>
|
||||||
<Text style={styles.subtitle} marginT-15 color="#919191">
|
<Text style={styles.subtitle} marginT-15 color="#919191">
|
||||||
Please enter your details.
|
Please enter your details.
|
||||||
@ -81,7 +80,7 @@ const SignUpPage = ({
|
|||||||
/>
|
/>
|
||||||
<View
|
<View
|
||||||
centerV
|
centerV
|
||||||
style={[styles.textfield, { padding: 0, paddingHorizontal: 30 }]}
|
style={[styles.textfield, {padding: 0, paddingHorizontal: 30}]}
|
||||||
>
|
>
|
||||||
<TextField
|
<TextField
|
||||||
ref={passwordRef}
|
ref={passwordRef}
|
||||||
@ -144,6 +143,7 @@ const SignUpPage = ({
|
|||||||
</View>
|
</View>
|
||||||
</View>
|
</View>
|
||||||
</View>
|
</View>
|
||||||
|
<View flex-1/>
|
||||||
<View style={styles.bottomView}>
|
<View style={styles.bottomView}>
|
||||||
<Button
|
<Button
|
||||||
label="Register"
|
label="Register"
|
||||||
@ -152,10 +152,10 @@ const SignUpPage = ({
|
|||||||
fontSize: 16,
|
fontSize: 16,
|
||||||
}}
|
}}
|
||||||
onPress={handleSignUp}
|
onPress={handleSignUp}
|
||||||
style={{ marginBottom: 0, backgroundColor: "#fd1775", height: 50 }}
|
style={{marginBottom: 0, backgroundColor: "#fd1775", height: 50}}
|
||||||
/>
|
/>
|
||||||
<View row centerH marginT-10 marginB-2 gap-5>
|
<View row centerH marginT-10 marginB-2 gap-5>
|
||||||
<Text style={[styles.jakartaLight, { fontSize: 16, color: "#484848" }]} center>
|
<Text style={[styles.jakartaLight, {fontSize: 16, color: "#484848"}]} center>
|
||||||
Already have an account?
|
Already have an account?
|
||||||
</Text>
|
</Text>
|
||||||
|
|
||||||
@ -163,7 +163,7 @@ const SignUpPage = ({
|
|||||||
label="Log in"
|
label="Log in"
|
||||||
labelStyle={[
|
labelStyle={[
|
||||||
styles.jakartaMedium,
|
styles.jakartaMedium,
|
||||||
{ fontSize: 16, textDecorationLine: "none", color: "#fd1775" },
|
{fontSize: 16, textDecorationLine: "none", color: "#fd1775"},
|
||||||
]}
|
]}
|
||||||
flexS
|
flexS
|
||||||
margin-0
|
margin-0
|
||||||
@ -193,7 +193,7 @@ const styles = StyleSheet.create({
|
|||||||
color: "#919191",
|
color: "#919191",
|
||||||
},
|
},
|
||||||
//mora da se izmeni kako treba
|
//mora da se izmeni kako treba
|
||||||
bottomView: { marginTop: "auto", marginBottom: 30 },
|
bottomView: {marginTop: "auto", marginBottom: 30, marginTop: "auto"},
|
||||||
jakartaLight: {
|
jakartaLight: {
|
||||||
fontFamily: "PlusJakartaSans_300Light",
|
fontFamily: "PlusJakartaSans_300Light",
|
||||||
fontSize: 13,
|
fontSize: 13,
|
||||||
@ -205,8 +205,8 @@ const styles = StyleSheet.create({
|
|||||||
color: "#919191",
|
color: "#919191",
|
||||||
textDecorationLine: "underline",
|
textDecorationLine: "underline",
|
||||||
},
|
},
|
||||||
title: { fontFamily: "Manrope_600SemiBold", fontSize: 34, marginTop: 50 },
|
title: {fontFamily: "Manrope_600SemiBold", fontSize: 34, marginTop: 50},
|
||||||
subtitle: { fontFamily: "PlusJakartaSans_400Regular", fontSize: 16 },
|
subtitle: {fontFamily: "PlusJakartaSans_400Regular", fontSize: 16},
|
||||||
check: {
|
check: {
|
||||||
borderRadius: 3,
|
borderRadius: 3,
|
||||||
aspectRatio: 1,
|
aspectRatio: 1,
|
||||||
|
|||||||
@ -15,7 +15,7 @@ export const useCreateSubUser = () => {
|
|||||||
return await functions().httpsCallable("createSubUser")({
|
return await functions().httpsCallable("createSubUser")({
|
||||||
...userProfile,
|
...userProfile,
|
||||||
email,
|
email,
|
||||||
familyId: profileData?.familyId
|
familyId: profileData?.familyId!
|
||||||
}) as HttpsCallableResult<{ userId: string }>
|
}) as HttpsCallableResult<{ userId: string }>
|
||||||
} else {
|
} else {
|
||||||
throw Error("Can't create sub-users as a non-parent.")
|
throw Error("Can't create sub-users as a non-parent.")
|
||||||
|
|||||||
Reference in New Issue
Block a user