mirror of
https://github.com/lemeow125/StudE-Frontend.git
synced 2024-11-17 06:19:25 +08:00
Added login functionality
This commit is contained in:
parent
26b3db25f0
commit
a634f07f2b
3 changed files with 43 additions and 9 deletions
|
@ -40,11 +40,13 @@ export function UserLogin(user: LoginParams) {
|
||||||
.post("/api/v1/accounts/token/login/", user)
|
.post("/api/v1/accounts/token/login/", user)
|
||||||
.then(async (response) => {
|
.then(async (response) => {
|
||||||
AsyncStorage.setItem("token", JSON.stringify(response.data.auth_token));
|
AsyncStorage.setItem("token", JSON.stringify(response.data.auth_token));
|
||||||
return true;
|
return [true];
|
||||||
})
|
})
|
||||||
.catch((error) => {
|
.catch((error) => {
|
||||||
console.log("Login Failed: " + error);
|
console.log(
|
||||||
return false;
|
"Login Failed: " + error.response.status + " " + error.response.data
|
||||||
|
);
|
||||||
|
return [false, error.response.data];
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -2,8 +2,17 @@ export default function ParseError(text: string) {
|
||||||
return text
|
return text
|
||||||
.replaceAll(/[{}()"]/g, " ")
|
.replaceAll(/[{}()"]/g, " ")
|
||||||
.replaceAll(/,/g, "\n")
|
.replaceAll(/,/g, "\n")
|
||||||
.replaceAll(":", "")
|
|
||||||
.replaceAll("[", "")
|
.replaceAll("[", "")
|
||||||
.replaceAll("]", "")
|
.replaceAll("]", "")
|
||||||
.replaceAll(".", "");
|
.replaceAll(".", "");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function ParseLoginError(text: string) {
|
||||||
|
return text
|
||||||
|
.replaceAll(/[{}()"]/g, " ")
|
||||||
|
.replaceAll(/,/g, "\n")
|
||||||
|
.replaceAll("[", "")
|
||||||
|
.replaceAll("]", "")
|
||||||
|
.replaceAll(".", "")
|
||||||
|
.replaceAll("non_field_errors", "");
|
||||||
|
}
|
||||||
|
|
|
@ -19,13 +19,15 @@ import LoginIcon from "../../icons/LoginIcon/LoginIcon";
|
||||||
import Button from "../../components/Button/Button";
|
import Button from "../../components/Button/Button";
|
||||||
import { useNavigation } from "@react-navigation/native";
|
import { useNavigation } from "@react-navigation/native";
|
||||||
import { RootDrawerParamList } from "../../interfaces/Interfaces";
|
import { RootDrawerParamList } from "../../interfaces/Interfaces";
|
||||||
|
import { UserLogin } from "../../components/Api/Api";
|
||||||
|
import { ParseLoginError } from "../../components/ParseError/ParseError";
|
||||||
|
|
||||||
export default function Login() {
|
export default function Login() {
|
||||||
const navigation = useNavigation<RootDrawerParamList>();
|
const navigation = useNavigation<RootDrawerParamList>();
|
||||||
// const dispatch = useDispatch();
|
// const dispatch = useDispatch();
|
||||||
// const creds = useSelector((state: RootState) => state.auth.creds);
|
// const creds = useSelector((state: RootState) => state.auth.creds);
|
||||||
const [user, setUser] = useState({
|
const [user, setUser] = useState({
|
||||||
email: "",
|
username: "",
|
||||||
password: "",
|
password: "",
|
||||||
error: "",
|
error: "",
|
||||||
});
|
});
|
||||||
|
@ -49,13 +51,14 @@ export default function Login() {
|
||||||
<View style={{ paddingVertical: 8 }} />
|
<View style={{ paddingVertical: 8 }} />
|
||||||
<TextInput
|
<TextInput
|
||||||
style={styles.text_input}
|
style={styles.text_input}
|
||||||
placeholder="Email"
|
placeholder="Username"
|
||||||
placeholderTextColor="white"
|
placeholderTextColor="white"
|
||||||
value={user.email}
|
autoCapitalize="none"
|
||||||
|
value={user.username}
|
||||||
onChange={(
|
onChange={(
|
||||||
e: NativeSyntheticEvent<TextInputChangeEventData>
|
e: NativeSyntheticEvent<TextInputChangeEventData>
|
||||||
): void => {
|
): void => {
|
||||||
setUser({ ...user, email: e.nativeEvent.text });
|
setUser({ ...user, username: e.nativeEvent.text });
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
<View style={{ paddingVertical: 4 }} />
|
<View style={{ paddingVertical: 4 }} />
|
||||||
|
@ -71,8 +74,28 @@ export default function Login() {
|
||||||
setUser({ ...user, password: e.nativeEvent.text });
|
setUser({ ...user, password: e.nativeEvent.text });
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
|
<View style={{ paddingVertical: 2 }} />
|
||||||
|
<Text style={styles.text_white_small}>{user.error}</Text>
|
||||||
<View style={{ paddingVertical: 4 }} />
|
<View style={{ paddingVertical: 4 }} />
|
||||||
<Button onPress={() => console.log("heh")} color={colors.blue_3}>
|
<Button
|
||||||
|
onPress={async () => {
|
||||||
|
await UserLogin({
|
||||||
|
username: user.username,
|
||||||
|
password: user.password,
|
||||||
|
}).then((result) => {
|
||||||
|
if (result[0]) {
|
||||||
|
setUser({ ...user, username: "", password: "", error: "" });
|
||||||
|
navigation.navigate("Home");
|
||||||
|
} else {
|
||||||
|
setUser({
|
||||||
|
...user,
|
||||||
|
error: ParseLoginError(JSON.stringify(result[1])),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}}
|
||||||
|
color={colors.blue_3}
|
||||||
|
>
|
||||||
<Text style={styles.text_white_small}>Login</Text>
|
<Text style={styles.text_white_small}>Login</Text>
|
||||||
</Button>
|
</Button>
|
||||||
<Button
|
<Button
|
||||||
|
|
Loading…
Reference in a new issue