diff --git a/App.tsx b/App.tsx
index 81e4850..1cb5142 100644
--- a/App.tsx
+++ b/App.tsx
@@ -7,7 +7,7 @@ import DrawerScreenSettings from "./src/Components/Drawer/DrawerScreenSettings/D
import Home from "./src/Routes/Home/Home";
import UserInfo from "./src/Routes/UserInfo/UserInfo";
-import AddNote from "./src/Routes/AddNote/AddNote";
+import NewNote from "./src/Routes/NewNote/NewNote";
import Login from "./src/Routes/Login/Login";
import Register from "./src/Routes/Register/Register";
import { Provider } from "react-redux";
@@ -16,25 +16,27 @@ import { QueryClient, QueryClientProvider } from "react-query";
const Drawer = createDrawerNavigator();
-
+const queryClient = new QueryClient();
export default function App() {
return (
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
+
+
+
);
}
\ No newline at end of file
diff --git a/src/Components/Drawer/DrawerScreenSettings/CustomDrawerContent/CustomDrawerContent.tsx b/src/Components/Drawer/DrawerScreenSettings/CustomDrawerContent/CustomDrawerContent.tsx
index b104bc9..201ddc4 100644
--- a/src/Components/Drawer/DrawerScreenSettings/CustomDrawerContent/CustomDrawerContent.tsx
+++ b/src/Components/Drawer/DrawerScreenSettings/CustomDrawerContent/CustomDrawerContent.tsx
@@ -44,12 +44,12 @@ export default function CustomDrawerContent(props: {}) {
color="Green"
width={width}
onPress={() => {
- navigation.navigate("Add Note");
+ navigation.navigate("New Note");
}}
>
- Add Note
+ New Note
{
- navigation.navigate("Add Note");
+ navigation.navigate("New Note");
}}
>
+
diff --git a/src/Routes/AddNote/AddNote.tsx b/src/Routes/NewNote/NewNote.tsx
similarity index 54%
rename from src/Routes/AddNote/AddNote.tsx
rename to src/Routes/NewNote/NewNote.tsx
index 66a7e83..e10b50c 100644
--- a/src/Routes/AddNote/AddNote.tsx
+++ b/src/Routes/NewNote/NewNote.tsx
@@ -1,54 +1,82 @@
-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-safe-area-context';
-import { useState } from "react";
-import {TouchableOpacity,} from "react-native";
-import { RootDrawerParamList } from "../../Interfaces/Interfaces";
-import { useNavigation } from "@react-navigation/native";
-
-export default function AddNote() {
- const [addnote, setNote] = useState("");
- const [addtitle, setTitle] = useState("");
-
- const navigation = useNavigation();
-
- return (
-
- Add Note
-
-
-
-
-
-
-
-
-
- SAVE
-
- {
- navigation.navigate("Home");
- }}>
- CANCEL
-
-
-
-
-
- );
-}
+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-safe-area-context';
+import { useState } from "react";
+import {TouchableOpacity,} from "react-native";
+import { RootDrawerParamList } from "../../Interfaces/Interfaces";
+import { useNavigation } from "@react-navigation/native";
+import { useMutation, useQueryClient } from "react-query";
+import { AddNote } from "../../Components/Api/Api";
+
+export default function NewNote() {
+ const [note, setNote] = useState({
+ title: "",
+ content: "",
+ });
+
+ const navigation = useNavigation();
+
+ const queryClient = useQueryClient();
+ const mutation = useMutation({
+ mutationFn: AddNote,
+ onSuccess: () => {
+ queryClient.invalidateQueries("notes");
+ },
+ });
+
+ return (
+
+ New Note
+
+
+
+ {
+ setNote({ ...note, title: text });
+ }}
+ maxLength={20}
+ />
+
+
+ {
+ await setNote({ ...note, content: text });
+ }}
+ />
+
+ {
+ try {
+ await mutation.mutate({
+ title: note.title,
+ content: note.content,
+ });
+ navigation.navigate("Home");
+ } catch (error) {}
+ console.log(note.content)
+ }}>
+
+ SAVE
+
+ {
+ navigation.navigate("Home");
+ }}>
+ CANCEL
+
+
+
+
+
+ );
+}