Merge commit '958e62d733e19813e76a2f9d5d49d46ac1eebbc2' into feature/initial_frontend

This commit is contained in:
keannu125 2023-04-08 16:47:25 +08:00
commit 7388b851d5
11 changed files with 5071 additions and 641 deletions

View file

@ -10,6 +10,9 @@ import UserInfo from "./src/Routes/UserInfo/UserInfo";
import AddNote from "./src/Routes/AddNote/AddNote";
import Login from "./src/Routes/Login/Login";
import Register from "./src/Routes/Register/Register";
import { Provider } from "react-redux";
import Store from "./src/Features/Redux/Store/Store";
import { QueryClient, QueryClientProvider } from "react-query";
const Drawer = createDrawerNavigator();
@ -17,6 +20,7 @@ const Drawer = createDrawerNavigator();
export default function App() {
return (
<Provider store={Store}>
<NavigationContainer>
<Drawer.Navigator
initialRouteName="Home"
@ -31,5 +35,6 @@ export default function App() {
</Drawer.Navigator>
</NavigationContainer>
</Provider>
);
}

5070
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -9,15 +9,20 @@
"web": "expo start --web"
},
"dependencies": {
"@expo/webpack-config": "^18.0.1",
"@react-native-async-storage/async-storage": "^1.18.1",
"@react-navigation/drawer": "^6.6.2",
"@react-navigation/native": "^6.1.6",
"@react-navigation/native-stack": "^6.9.12",
"@react-navigation/stack": "^6.3.16",
"@reduxjs/toolkit": "^1.9.3",
"axios": "^1.3.4",
"expo": "~48.0.5",
"expo-linear-gradient": "^12.1.1",
"expo-status-bar": "~1.4.4",
"react": "18.2.0",
"react-native": "0.71.3",
"react-dom": "18.2.0",
"react-native": "0.71.6",
"react-native-gesture-handler": "~2.9.0",
"react-native-paper": "^5.4.0",
"react-native-pell-rich-editor": "^1.8.8",
@ -25,11 +30,16 @@
"react-native-safe-area-context": "4.5.0",
"react-native-screens": "~3.20.0",
"react-native-svg": "13.4.0",
"react-native-webview": "^11.26.1"
"react-native-webview": "^11.26.1",
"react-native-web": "~0.18.10",
"react-query": "^3.39.3",
"react-redux": "^8.0.5",
"redux": "^4.2.1"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@types/react": "~18.0.14",
"@types/react-native": "^0.71.5",
"typescript": "^4.9.4"
},
"private": true

142
src/Components/Api/Api.tsx Normal file
View file

@ -0,0 +1,142 @@
import axios from "axios";
import AsyncStorage from "@react-native-async-storage/async-storage";
import {
ActivationParams,
UpdateNoteParams,
AddNoteParams,
LoginParams,
RegistrationParams,
} from "../../Interfaces/Interfaces";
// Note APIs
const instance = axios.create({
baseURL: "https://keannu126.pythonanywhere.com",
});
export async function GetNotes() {
const token = JSON.parse(await AsyncStorage.getItem("token") || "{}");
return instance
.get("/api/v1/notes/", {
headers: {
Authorization: "Token " + token,
},
})
.then((response) => {
return response.data;
});
}
export function GetPublicNotes() {
return instance.get("/api/v1/public_notes/").then((response) => {
return response.data;
});
}
export async function GetNote(id: number) {
const token = JSON.parse(await AsyncStorage.getItem("token") || "{}");
return instance
.get("/api/v1/notes/" + id + "/", {
headers: {
Authorization: "Token " + token,
},
})
.then((response) => {
return response.data;
});
}
export async function UpdateNote(note: UpdateNoteParams) {
const token = JSON.parse(await AsyncStorage.getItem("token") || "{}");
return instance
.patch("/api/v1/notes/" + note.id + "/", note, {
headers: {
Authorization: "Token " + token,
},
})
.then((response) => {
return response.data;
})
.catch((error) => {
return error;
});
}
export async function AddNote(note: AddNoteParams) {
const token = JSON.parse(await AsyncStorage.getItem("token") || "{}");
return instance
.post("/api/v1/notes/", note, {
headers: {
Authorization: "Token " + token,
},
})
.then((response) => {
return response.data;
})
.catch((error) => {
return error;
});
}
export async function DeleteNote(id: number) {
const token = JSON.parse(await AsyncStorage.getItem("token") || "{}");
return instance
.delete("/api/v1/notes/" + id + "/", {
headers: {
Authorization: "Token " + token,
},
})
.catch((error) => {
return error;
});
}
// User APIs
export function UserRegister(register: RegistrationParams) {
return instance
.post("/api/v1/accounts/users/", register)
.then(async (response) => {
return true;
})
.catch((error) => {
return false;
});
}
export function UserLogin(user: LoginParams) {
return instance
.post("/api/v1/accounts/token/login/", user)
.then(async (response) => {
AsyncStorage.setItem("token", JSON.stringify(response.data.auth_token));
return true;
})
.catch((error) => {
console.log("Login Failed: " + error);
return false;
});
}
export async function UserInfo() {
const token = JSON.parse(await AsyncStorage.getItem("token") || "{}");
return instance
.get("/api/v1/accounts/users/me/", {
headers: {
Authorization: "Token " + token,
},
})
.then((response) => {
return response.data;
});
}
export function UserActivate(activation: ActivationParams) {
return instance
.post("/api/v1/accounts/users/activation/", activation)
.then(async (response) => {
return true;
})
.catch((error) => {
return false;
});
}

View file

@ -0,0 +1,33 @@
import { createSlice } from "@reduxjs/toolkit";
export const LoggedInUserSlice = createSlice({
name: "Login",
initialState: {
value: {
email: "",
id: 0,
username: "",
},
},
reducers: {
SetUser: (state, action) => {
state.value = {
email: action.payload.email,
id: action.payload.id,
username: action.payload.username,
};
},
UnsetUser: (state) => {
state.value = {
email: "",
id: 0,
username: "",
};
},
},
});
// Action creators are generated for each case reducer function
export const { SetUser, UnsetUser } = LoggedInUserSlice.actions;
export default LoggedInUserSlice.reducer;

View file

@ -0,0 +1,21 @@
import { createSlice } from "@reduxjs/toolkit";
export const LoginSlice = createSlice({
name: "Login",
initialState: {
logged_in: false,
},
reducers: {
SetLoggedIn: (state) => {
state.logged_in = !state.logged_in;
},
SetLoggedOut: (state) => {
state.logged_in = !state.logged_in;
},
},
});
// Action creators are generated for each case reducer function
export const { SetLoggedIn, SetLoggedOut } = LoginSlice.actions;
export default LoginSlice.reducer;

View file

@ -0,0 +1,10 @@
import { configureStore } from "@reduxjs/toolkit";
import LoginReducer from "../Slices/LoginSlice/LoginSlice";
import LoggedInUserReucer from "../Slices/LoggedInUserSlice/LoggedInUserSlice";
export default configureStore({
reducer: {
Login: LoginReducer,
LoggedInUser: LoggedInUserReucer,
},
});

View file

@ -6,3 +6,62 @@ export interface IconProps {
export interface RootDrawerParamList {
navigate: any;
}
// Redux Interfaces
export interface LoginState {
Login: { logged_in: boolean };
}
export interface LoggedInUserState {
LoggedInUser: {
value: {
email: string;
id: number;
username: string;
};
};
}
// Component Props Interfaces
export interface NoteProps {
title: string;
content: string;
id: number;
date_created: Date;
owner: string;
}
export interface IconProps {
size: number;
color: string;
}
// API Interfaces
export interface RegistrationParams {
email: string;
username: string;
password: string;
}
export interface LoginParams {
username: string;
password: string;
}
export interface ActivationParams {
uid: string;
token: string;
}
export interface AddNoteParams {
title: string;
content: string;
}
export interface UpdateNoteParams {
id: number;
title: string;
content: string;
}

View file

@ -1,29 +1,35 @@
import * as React from 'react';
import {View, Text} from 'react-native';
import styles from '../../styles';
import Background from '../../Components/Background/Background';
import * as React from "react";
import { View, Text, TouchableOpacity } from "react-native";
import styles from "../../styles";
import Background from "../../Components/Background/Background";
import AppIcon from "../../Components/Icons/AppIcon/AppIcon";
import { useNavigation } from "@react-navigation/native";
import {TouchableOpacity,} from "react-native";
import { useDispatch } from "react-redux";
import { RootDrawerParamList } from "../../Interfaces/Interfaces";
export default function Home() {
const navigation = useNavigation<RootDrawerParamList>();
const dispatch = useDispatch();
return (
<Background>
<Text style={{...styles.text_white, ...{fontSize: 25}}}>Clip Notes</Text>
<Text style={{ ...styles.text_white, ...{ fontSize: 25 } }}>
Clip Notes
</Text>
<View
style={{
display: 'flex',
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'center',
}}>
display: "flex",
flexDirection: "row",
alignItems: "center",
justifyContent: "center",
}}
>
<View style={styles.homecont}>
<TouchableOpacity
onPress={() => {
navigation.navigate("Add Note");
}}>
}}
>
<Text style={styles.newnote}>+</Text>
</TouchableOpacity>
<Text style={styles.no}>New note...</Text>

View file

@ -1,19 +1,33 @@
import * as React from 'react';
import {View, Text, TextInput} from 'react-native';
import styles from '../../styles';
import Background from '../../Components/Background/Background';
import { SafeAreaView} from "react-native";
import * as React from "react";
import { View, Text, TextInput } from "react-native";
import styles from "../../styles";
import Background from "../../Components/Background/Background";
import {
SafeAreaView,
NativeSyntheticEvent,
TextInputChangeEventData,
} from "react-native";
import { StatusBar } from "expo-status-bar";
import { useState } from "react";
import {TouchableOpacity,} from "react-native";
import { TouchableOpacity } from "react-native";
import {
NavigationHelpersContext,
useNavigation,
} from "@react-navigation/native";
import { useDispatch } from "react-redux";
import { SetUser } from "../../Features/Redux/Slices/LoggedInUserSlice/LoggedInUserSlice";
import { SetLoggedIn } from "../../Features/Redux/Slices/LoginSlice/LoginSlice";
import { UserInfo, UserLogin } from "../../Components/Api/Api";
import { RootDrawerParamList } from "../../Interfaces/Interfaces";
import { useNavigation } from "@react-navigation/native";
export default function Login() {
const [username, setUsername] = useState("");
const [password, setPassword] = useState("");
const navigation = useNavigation<RootDrawerParamList>();
const dispatch = useDispatch();
const [user, setUser] = useState({
username: "",
password: "",
});
const [error, setError] = useState("");
return (
<Background>
<Text style={{ ...styles.text_white, ...{ fontSize: 32 } }}></Text>
@ -26,36 +40,60 @@ export default function Login() {
style={styles.TextInput}
placeholder="Username"
placeholderTextColor="white"
onChangeText={setUsername}
value={username}
value={user.username}
maxLength={20}
onChange={(
e: NativeSyntheticEvent<TextInputChangeEventData>
): void => {
setUser({ ...user, username: e.nativeEvent.text });
console.log(user.username);
}}
/>
</View>
<View style={styles.inputView}>
<TextInput
style={styles.TextInput}
placeholder="Password"
placeholderTextColor="white"
secureTextEntry={true}
onChangeText={setPassword}
value={password}
value={user.password}
onChange={(
e: NativeSyntheticEvent<TextInputChangeEventData>
): void => {
setUser({ ...user, password: e.nativeEvent.text });
console.log(user.password);
}}
/>
</View>
<TouchableOpacity>
<Text style={styles.forgot_button}>Forgot Password?</Text>
</TouchableOpacity>
<TouchableOpacity style={styles.loginBtn}>
<TouchableOpacity
onPress={async () => {
setUser({
username: "",
password: "",
});
if (await UserLogin(user)) {
await dispatch(SetLoggedIn());
await dispatch(SetUser(await UserInfo()));
navigation.navigate("Home");
} else {
setError("Invalid Login");
}
}}
style={styles.loginBtn}
>
<Text style={styles.loginText}>LOGIN</Text>
</TouchableOpacity>
<TouchableOpacity style={styles.registerbtn}
onPress={() => {
navigation.navigate("Register");
}}>
<Text style={styles.text_small_red}>{error}</Text>
<TouchableOpacity style={styles.registerbtn}>
<Text style={styles.registertext}>REGISTER</Text>
</TouchableOpacity>
</View>
</SafeAreaView>
</Background>
);
};
}

View file

@ -1,38 +1,36 @@
import {StyleSheet} from 'react-native';
import { StyleSheet } from "react-native";
const styles = StyleSheet.create({
background: {
height: '100%',
width: '100%',
backgroundColor:'#002d4d',
position: 'absolute',
height: "100%",
width: "100%",
backgroundColor: "#002d4d",
position: "absolute",
},
text_white: {
color: 'white',
fontWeight: 'bold',
textAlign: 'center',
color: "white",
fontWeight: "bold",
textAlign: "center",
},
button_generic: {
justifyContent: 'center',
alignSelf: 'center',
alignItems: 'center',
display: 'flex',
flexDirection: 'row',
justifyContent: "center",
alignSelf: "center",
alignItems: "center",
display: "flex",
flexDirection: "row",
margin: 8,
padding: 8,
borderRadius: 16,
},
flex_row: {
display: 'flex',
flexDirection: 'row',
alignItems: 'center',
display: "flex",
flexDirection: "row",
alignItems: "center",
},
flex_column: {
display: 'flex',
flexDirection: 'column',
alignItems: 'center',
display: "flex",
flexDirection: "column",
alignItems: "center",
},
input: {
height: 40,
@ -48,15 +46,15 @@ const styles = StyleSheet.create({
marginBottom: 20,
},
TextInput: {
color: 'white',
color: "white",
height: 50,
flex: 1,
padding: 10,
marginLeft: 5,
},
forgot_button: {
fontWeight: 'bold',
color: 'white',
fontWeight: "bold",
color: "white",
height: 30,
marginBottom: 10,
},
@ -78,15 +76,14 @@ const styles = StyleSheet.create({
backgroundColor: "orange",
},
loginText: {
color: 'white',
fontWeight: 'bold',
color: "white",
fontWeight: "bold",
fontSize: 20,
},
registertext: {
color: 'white',
fontWeight: 'bold',
color: "white",
fontWeight: "bold",
fontSize: 20,
},
container: {
marginTop: 30,
@ -94,18 +91,18 @@ const styles = StyleSheet.create({
height: 500,
width: 350,
borderRadius: 25,
backgroundColor: 'blue',
backgroundColor: "blue",
alignItems: "center",
justifyContent: "center",
},
loginlabel: {
fontWeight: 'bold',
fontWeight: "bold",
fontSize: 25,
marginBottom: 30,
color: 'white',
color: "white",
},
box: {
width: '100%',
width: "100%",
height: 200,
},
userinfocont: {
@ -114,15 +111,15 @@ const styles = StyleSheet.create({
height: 80,
width: 300,
borderRadius: 25,
backgroundColor: 'orange',
backgroundColor: "orange",
alignItems: "center",
justifyContent: "center",
},
userlabel: {
fontWeight: 'bold',
fontWeight: "bold",
fontSize: 25,
marginBottom: 10,
color: 'white',
color: "white",
},
addnote: {
marginLeft: 180,
@ -135,22 +132,22 @@ const styles = StyleSheet.create({
},
addtext: {
fontSize: 20,
color: 'white',
color: "white",
},
addnotescont: {
marginTop: 20,
marginLeft: 20,
height: 200,
width: 350,
backgroundColor: 'blue',
alignItems: 'flex-start',
justifyContent: 'center',
backgroundColor: "blue",
alignItems: "flex-start",
justifyContent: "center",
},
no: {
fontSize: 20,
color: 'white',
color: "white",
marginTop: 20,
alignItems: 'center'
alignItems: "center",
},
typehere: {
backgroundColor: "black",
@ -160,13 +157,13 @@ const styles = StyleSheet.create({
marginTop: 20,
},
typeinput: {
color: 'white',
color: "white",
flex: 1,
paddingBottom: 250,
marginLeft: 5,
},
title: {
color: 'white',
color: "white",
flex: 1,
marginLeft: 5,
},
@ -183,7 +180,7 @@ const styles = StyleSheet.create({
height: 500,
width: 350,
borderRadius: 25,
backgroundColor: '#7cb9e8',
backgroundColor: "#7cb9e8",
alignItems: "center",
justifyContent: "center",
},
@ -206,13 +203,13 @@ const styles = StyleSheet.create({
backgroundColor: "green",
},
savenote: {
color: 'white',
fontWeight: 'bold',
color: "white",
fontWeight: "bold",
fontSize: 20,
},
cancel: {
color: 'white',
fontWeight: 'bold',
color: "white",
fontWeight: "bold",
fontSize: 20,
},
homecont: {
@ -220,13 +217,13 @@ const styles = StyleSheet.create({
height: 150,
width: 350,
borderRadius: 25,
backgroundColor: '#7cb9e8',
backgroundColor: "#7cb9e8",
alignItems: "center",
justifyContent: "center",
},
newnote: {
color: 'white',
fontWeight: 'bold',
color: "white",
fontWeight: "bold",
fontSize: 50,
},
//
@ -250,7 +247,6 @@ const styles = StyleSheet.create({
disabledInput: {
backgroundColor: "white",
borderRadius: 10,
},
editButton: {
backgroundColor: "green",
@ -260,7 +256,7 @@ const styles = StyleSheet.create({
alignItems: "center",
justifyContent: "center",
marginTop: 20,
marginLeft: 20
marginLeft: 20,
},
buttonText: {
color: "white",
@ -272,7 +268,13 @@ const styles = StyleSheet.create({
color: "black",
backgroundColor: "white",
borderRadius: 10,
}
},
text_small_red: {
color: "#bc231e",
fontSize: 10,
fontWeight: "bold",
textAlign: "center",
},
});
export default styles;