-
Notifications
You must be signed in to change notification settings - Fork 1
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
Add social media icons #329
Open
erwok
wants to merge
37
commits into
master
Choose a base branch
from
add_social_media_icons
base: master
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 all commits
Commits
Show all changes
37 commits
Select commit
Hold shift + click to select a range
7f7f8ff
1 call to api for full name
erwok 8941f1c
Merge branch 'master' of https://github.com/HKN-UCSD/hkn-server into …
erwok ac73a76
Add social media icons to NavBar
erwok 6306e02
Revert "1 call to api for full name"
erwok c4b68b7
removed typeorm
kyle1373 45dcf4a
fixed typeorm version
kyle1373 5a23f67
trying typeorm 0.3.6
kyle1373 112c4cd
fixed typeorm and types/node for tests
kyle1373 e748125
fixed all type dependencies
kyle1373 5c8e250
fixed ALL type dependencies to check tests
kyle1373 c941660
increased type/node version
kyle1373 e9779b7
pin pg version.
godwinpang 9acf4c3
forgot to update package lock.
godwinpang 559f982
Pinned all backend dependencies to determine test
kyle1373 8843042
Unpinned types/express
kyle1373 39b05c6
unpinned prettier
kyle1373 6b678c2
Downgraded node version
kyle1373 2186a61
logging and remove npe
godwinpang c13814d
Revert "Downgraded node version"
erwok ec85bc8
Revert "unpinned prettier"
erwok a8beb8e
Revert "Unpinned types/express"
erwok e8a8881
Revert "Pinned all backend dependencies to determine test"
erwok d05394e
Revert "forgot to update package lock."
erwok cc9cf7c
Revert "pin pg version."
erwok d8e3449
Revert "increased type/node version"
erwok c784a77
Revert "fixed ALL type dependencies to check tests"
erwok 7b453c5
Revert "fixed all type dependencies"
erwok 8923110
Revert "fixed typeorm and types/node for tests"
erwok c6600a7
Revert "trying typeorm 0.3.6"
erwok 7d349d0
Revert "fixed typeorm version"
erwok 3c6386b
Revert "removed typeorm"
erwok 85df279
Move event controller test to legacy folder
erwok 9b83632
Added Kyle suggestions
erwok 60a938e
Merge branch 'master' into add_social_media_icons
erwok 7986095
Fixing event controller test formatting
kyle1373 f7b346f
Merge branch 'master' into add_social_media_icons
kyle1373 eb96ae5
Revert "Merge branch 'master' into add_social_media_icons"
kyle1373 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
Large diffs are not rendered by default.
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
Large diffs are not rendered by default.
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 was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import React from 'react'; | ||
import LanguageIcon from '@material-ui/icons/Language'; | ||
import InstagramIcon from '@material-ui/icons/Instagram'; | ||
import FacebookIcon from '@material-ui/icons/Facebook'; | ||
import LinkedInIcon from '@material-ui/icons/LinkedIn'; | ||
|
||
const WebsiteButton = { | ||
pathname: "https://hkn.ucsd.edu/", | ||
icon: <LanguageIcon fontSize='inherit' />, | ||
target: "_blank" | ||
} | ||
|
||
const FacebookButton = { | ||
pathname: "https://www.facebook.com/hknucsd", | ||
icon: <FacebookIcon fontSize='inherit' />, | ||
target: "_blank" | ||
} | ||
|
||
const InstagramButton = { | ||
pathname: "https://www.instagram.com/hkn_ucsd/", | ||
icon: <InstagramIcon fontSize='inherit' />, | ||
target: "_blank" | ||
} | ||
|
||
const LinkedInButton = { | ||
pathname: "https://www.linkedin.com/company/hkn-ucsd/about/", | ||
icon: <LinkedInIcon fontSize='inherit' />, | ||
target: "_blank" | ||
} | ||
|
||
|
||
export const SocialButtons = [ | ||
WebsiteButton, | ||
FacebookButton, | ||
InstagramButton, | ||
LinkedInButton | ||
]; |
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
Binary file not shown.
Binary file not shown.
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
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,28 +1,28 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "es5", | ||
"lib": [ | ||
"dom", | ||
"dom.iterable", | ||
"esnext" | ||
], | ||
"allowJs": true, | ||
"skipLibCheck": true, | ||
"esModuleInterop": true, | ||
"allowSyntheticDefaultImports": true, | ||
"strict": true, | ||
"forceConsistentCasingInFileNames": true, | ||
"module": "esnext", | ||
"moduleResolution": "node", | ||
"resolveJsonModule": true, | ||
"isolatedModules": true, | ||
"noEmit": true, | ||
"noImplicitAny": false, | ||
"jsx": "react", | ||
"baseUrl": "." | ||
}, | ||
"include": [ | ||
"src" | ||
], | ||
"extends": "./tsconfig.paths.json" | ||
} | ||
{ | ||
"compilerOptions": { | ||
"target": "es5", | ||
"lib": [ | ||
"dom", | ||
"dom.iterable", | ||
"esnext" | ||
], | ||
"allowJs": true, | ||
"skipLibCheck": true, | ||
"esModuleInterop": true, | ||
"allowSyntheticDefaultImports": true, | ||
"strict": true, | ||
"forceConsistentCasingInFileNames": true, | ||
"module": "esnext", | ||
"moduleResolution": "node", | ||
"resolveJsonModule": true, | ||
"isolatedModules": true, | ||
"noEmit": true, | ||
"noImplicitAny": false, | ||
"jsx": "react", | ||
"baseUrl": "." | ||
}, | ||
"include": [ | ||
"src" | ||
], | ||
"extends": "./tsconfig.paths.json" | ||
} |
This file was deleted.
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.
Since it's not actually exporting a Button element, it may be clearer to rename it to Info or Link instead of button, same for other instances and file name.