Skip to content
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

Feat: workday api within about page #22

Merged
merged 28 commits into from
Dec 19, 2024
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
72ca4e5
chore: add swr and cors libs for fetching and middleware
hetd54 Aug 2, 2024
e1830e0
feat: middleware to post req to workday
hetd54 Aug 2, 2024
98b1a18
feat: workday data on about page
hetd54 Aug 2, 2024
4febae6
Merge branch 'main' into feat-workday-api
hetd54 Nov 25, 2024
4e89709
refactor: app routing
hetd54 Nov 25, 2024
26d79fa
refactor: api route for workday api
hetd54 Nov 25, 2024
763d046
fix: requestoptions typing
hetd54 Nov 25, 2024
075b03b
Merge branch 'main' into feat-workday-api
hetd54 Nov 26, 2024
c860637
style: match existing site
hetd54 Nov 26, 2024
cd58219
refactor: LinkCard with block link
hetd54 Nov 26, 2024
830b63d
style: more responsive
hetd54 Nov 26, 2024
f896d45
feat: add link to section for scroll
hetd54 Nov 26, 2024
7ab4f77
chore: remove unused deps
hetd54 Nov 26, 2024
07c2943
deps: update next
hetd54 Dec 2, 2024
ecaff23
refactor: main in layout
hetd54 Dec 2, 2024
296d237
Merge branch 'main' into feat-workday-api
hetd54 Dec 3, 2024
f318f6e
Merge branch 'main' into feat-workday-api
hetd54 Dec 5, 2024
e93df46
chore: remove extra divs
hetd54 Dec 10, 2024
29304cc
feat: spinner
hetd54 Dec 10, 2024
db8858e
feat: stream fetched data to client component
hetd54 Dec 17, 2024
e0c9ae5
feat: SectionHeader component
hetd54 Dec 17, 2024
a1a3045
Merge branch 'main' into feat-workday-api
hetd54 Dec 17, 2024
ae13bb3
refactor: stream event data to subcomponents
hetd54 Dec 17, 2024
508f86b
fix: add back monthly cal view
hetd54 Dec 17, 2024
4b6ddc8
chore: return error if unable to fetch
hetd54 Dec 17, 2024
4a2c824
chore: remove unused hooks
hetd54 Dec 17, 2024
a618c91
fix: appease the linter
hetd54 Dec 17, 2024
065cd57
refactor: fragments for components
hetd54 Dec 18, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: add back monthly cal view
  • Loading branch information
hetd54 committed Dec 17, 2024
commit 508f86b070ef3613ed336879255977c84473eab0
9 changes: 9 additions & 0 deletions components/EventSection.tsx
Original file line number Diff line number Diff line change
@@ -103,6 +103,15 @@ const EventSection = ({
/>
</div>
)}
{view === "Monthly" && (
<div>
<CalendarMonth
today={today}
currentDate={currentDate}
events={dataPast.concat(dataFuture)}
/>
</div>
)}
</div>
)
}