-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Organizers update #50
Merged
Merged
Changes from 7 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
a4d9ee2
updated organizers page
Antosha9108 859025e
updated organizers page
Antosha9108 0338282
quick update
Antosha9108 8033652
refactored organizers page and added notion API fetch function
Antosha9108 c377c8c
added changelog
Antosha9108 1bbabfb
resolved the comments
Antosha9108 c99f8d8
resolved the comments
Antosha9108 286373c
Merge branch 'main' into organizers-update
Antosha9108 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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 |
---|---|---|
|
@@ -33,3 +33,6 @@ yarn-error.log* | |
# typescript | ||
*.tsbuildinfo | ||
next-env.d.ts | ||
|
||
#env | ||
.env | ||
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import { Client } from "@notionhq/client"; | ||
|
||
const notion = new Client({ auth: process.env.NOTION_API_KEY }); | ||
|
||
// this function fetches data from The Notion Database(Table). | ||
const fetchDataFromNotion = async () => { | ||
const databaseId = process.env.NOTION_API_DATABASE; | ||
const response = await notion.databases.query({ database_id: databaseId }); | ||
|
||
// we map through the array of object to pull out the properties that we need for rendering. | ||
const teamResults = response.results.map((page) => { | ||
return { | ||
id: page.id, | ||
name: page.properties.Name.title[0]?.plain_text, | ||
role: page.properties.Role.multi_select[0].name, | ||
// team: page.properties.Teams.rich_text[0]?.plain_text, | ||
imageUrl: page.properties.Image.files[0]?.file.url, | ||
linkedInUrl: page.properties.LinkedIn.rich_text[0]?.plain_text, | ||
notionId: page.properties.NotionId.rich_text[0]?.plain_text | ||
}; | ||
}); | ||
|
||
//this function sorts the array by NotionId property that we set in the Notion table | ||
teamResults.sort((a, b) => { | ||
return parseInt(a.notionId) - parseInt(b.notionId); | ||
}); | ||
return teamResults; | ||
}; | ||
|
||
export default fetchDataFromNotion; |
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cool. It looks like we're using a .env file now. Can you update the README to add any env variables required to run the application?
I also forgot to do this when I added the meetup and settings services. If you don't mind, can you include these env variables in your README update? 🙏🏽