generated from acm-ucr/acm-ucr-website
-
Notifications
You must be signed in to change notification settings - Fork 5
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
Added Director Nav Links #65
Open
Jacob-GHub
wants to merge
12
commits into
dev
Choose a base branch
from
Jacob-GHub/Director-Nav-Links
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 3 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
30e8ffc
added flex
Jacob-GHub b4b4515
added routes
Jacob-GHub 8ee70f5
formatted
Jacob-GHub bb643c2
removed additional pages and made links a function
Jacob-GHub 88169e2
added links and got rid of additional pages
Jacob-GHub f050a17
used pathname params
Jacob-GHub 765a037
retrigger checks
Jacob-GHub 5ef9204
retrigger checks 2
Jacob-GHub 06c7da7
Made parameters consistent and added a fallback of I
Jacob-GHub 48474f2
allowed unused arguments starting with _'s
Jacob-GHub d942277
moved logic to navigation
Jacob-GHub e73342d
Merge branch 'dev' into Jacob-GHub/Director-Nav-Links
Jacob-GHub 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
2 changes: 1 addition & 1 deletion
2
.../director/[program]/applications/page.tsx → ...p/director/[program]/application/page.tsx
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,9 @@ | ||
const Page = () => { | ||
return ( | ||
<div className="flex h-screen w-screen items-center justify-center"> | ||
Director Assign Teams | ||
</div> | ||
); | ||
}; | ||
|
||
export default Page; |
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,9 @@ | ||
const Page = () => { | ||
return ( | ||
<div className="flex h-screen w-screen items-center justify-center"> | ||
Director User Profile | ||
</div> | ||
); | ||
}; | ||
|
||
export default Page; |
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,9 @@ | ||
const Page = () => { | ||
return ( | ||
<div className="flex h-screen w-screen items-center justify-center"> | ||
Director View Teams | ||
</div> | ||
); | ||
}; | ||
|
||
export default Page; |
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,9 @@ | ||
const Page = () => { | ||
return ( | ||
<div className="flex h-screen w-screen items-center justify-center"> | ||
Director Contacts | ||
</div> | ||
); | ||
}; | ||
|
||
export default Page; |
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,9 @@ | ||
const Page = () => { | ||
return ( | ||
<div className="flex h-screen w-screen items-center justify-center"> | ||
Director Leads | ||
</div> | ||
); | ||
}; | ||
|
||
export default Page; |
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,6 +1,30 @@ | ||
export const links = [ | ||
{ | ||
name: "Interviews", | ||
link: "/admin/interviews", | ||
name: "Director", | ||
link: "", | ||
}, | ||
{ | ||
name: "Applications", | ||
link: "/director/:program/application", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. if the link is dynamic, we should instead make each link a function which returns a string for the dynamically generated url |
||
}, | ||
{ | ||
name: "Leads", | ||
link: "/director/leads", | ||
}, | ||
{ | ||
name: "Directors", | ||
link: "/director/:program/profile/:uid", | ||
}, | ||
{ | ||
name: "Assignments", | ||
link: "/director/:program/assignments", | ||
}, | ||
{ | ||
name: "View Teams", | ||
link: "/director/:program/view", | ||
}, | ||
{ | ||
name: "Email", | ||
link: "/director/contacts", | ||
}, | ||
]; |
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.
do not add the pages yet, just need the navigation