-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
7 changed files
with
93 additions
and
155 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,16 @@ | ||
import SaveData from "./SaveData"; | ||
|
||
async function getData() { | ||
const NewNotification = async () => { | ||
let data = []; | ||
const res = await fetch( | ||
"https://nditc.pythonanywhere.com/api/v1/notifications/web?page=1&limit=1", | ||
{ cache: "no-store" } | ||
); | ||
|
||
if (!res.ok) { | ||
return []; | ||
} else { | ||
return res.json(); | ||
} | ||
} | ||
|
||
const NewNotification = async () => { | ||
let data: any[] = []; | ||
try { | ||
data = await getData(); | ||
} catch (error) { | ||
console.log("Error"); | ||
if (res.ok) { | ||
data = await res.json(); | ||
} | ||
|
||
if (data.length != 0) { | ||
<SaveData data={data} />; | ||
} else { | ||
return <div></div>; | ||
} | ||
return <SaveData data={data} />; | ||
}; | ||
|
||
export default NewNotification; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.