-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(MainSiteHeader): add main site header (#173)
* header done, minor styling still needed * header done, minor styling still needed * works with mobile
- Loading branch information
Showing
5 changed files
with
436 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,248 @@ | ||
import * as React from 'react' | ||
import { css } from 'react-emotion' | ||
|
||
import dbLogo from './db_logo.svg' | ||
import * as MainSiteStyles from '../../globals/mainsiteGlobalStyles' | ||
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' | ||
import { faBars, faTimes, faSearch } from '@fortawesome/free-solid-svg-icons' | ||
|
||
interface MainSiteHeaderLink { | ||
/** Category name */ | ||
category: string | ||
/** Link location */ | ||
categoryURL: string | ||
} | ||
|
||
interface MainSiteHeaderProps { | ||
/** Array of links that refer to sections on the main site */ | ||
links: MainSiteHeaderLink[] | ||
/** Display smaller version with hamburger */ | ||
hamburger: boolean | ||
} | ||
|
||
interface MainSiteHeaderState { | ||
/** Keeps track of hamburger menu */ | ||
isHamburgerOpen: boolean | ||
} | ||
|
||
class HeaderBar extends React.Component< | ||
MainSiteHeaderProps, | ||
MainSiteHeaderState | ||
> { | ||
public static defaultProps = { | ||
hamburger: false, | ||
links: [ | ||
{ | ||
category: 'News', | ||
categoryURL: 'http://dailybruin.com/news', | ||
}, | ||
{ | ||
category: 'Sports', | ||
categoryURL: 'http://dailybruin.com/sports', | ||
}, | ||
{ | ||
category: 'Arts', | ||
categoryURL: 'http://dailybruin.com/arts-entertainment', | ||
}, | ||
{ | ||
category: 'Opinion', | ||
categoryURL: 'http://dailybruin.com/opinion', | ||
}, | ||
{ | ||
category: 'Photo', | ||
categoryURL: 'http://dailybruin.com/spectrum', | ||
}, | ||
{ | ||
category: 'Video', | ||
categoryURL: 'http://dailybruin.com/video', | ||
}, | ||
{ | ||
category: 'Illustrations', | ||
categoryURL: 'http://dailybruin.com/illustrations', | ||
}, | ||
{ | ||
category: 'Graphics', | ||
categoryURL: 'http://dailybruin.com/graphics', | ||
}, | ||
{ | ||
category: 'PRIME', | ||
categoryURL: 'http://prime.dailybruin.com', | ||
}, | ||
{ | ||
category: 'The Quad', | ||
categoryURL: 'http://dailybruin.com/quad', | ||
}, | ||
{ | ||
category: 'The Stack', | ||
categoryURL: 'http://stack.dailybruin.com', | ||
}, | ||
], | ||
} | ||
|
||
constructor(props: MainSiteHeaderProps) { | ||
super(props) | ||
this.state = { isHamburgerOpen: false } | ||
this.hamburgerClicked = this.hamburgerClicked.bind(this) | ||
} | ||
|
||
public hamburgerClicked() { | ||
this.setState(state => ({ | ||
isHamburgerOpen: !state.isHamburgerOpen, | ||
})) | ||
} | ||
|
||
public render() { | ||
const date = new Date() | ||
|
||
const dateOptions = { | ||
day: 'numeric', | ||
month: 'long', | ||
weekday: 'long', | ||
year: 'numeric', | ||
} | ||
|
||
const dateString = date.toLocaleDateString('en-US', dateOptions) | ||
const linksInNav = this.props.links.map(propLink => { | ||
return ( | ||
<a | ||
key={propLink.categoryURL} | ||
href={propLink.categoryURL} | ||
className={css` | ||
text-decoration: none; | ||
color: #000; | ||
`} | ||
> | ||
{propLink.category} | ||
</a> | ||
) | ||
}) | ||
|
||
return ( | ||
<header | ||
className={css` | ||
max-width: 1200px; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
font-size: 0.95rem; | ||
padding: 10px 15px 10px 15px; | ||
box-shadow: ${MainSiteStyles.cardShadow}; | ||
font-family: ${MainSiteStyles.headlineFont}; | ||
color: '#000'; | ||
`} | ||
> | ||
<div | ||
className={css` | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: space-between; | ||
align-items: flex-end; | ||
width: 100%; | ||
`} | ||
> | ||
{!this.props.hamburger && ( | ||
<div | ||
className={css` | ||
flex: 1; | ||
${MainSiteStyles.mediaMobileBreakpoint} { | ||
display: none; | ||
} | ||
`} | ||
> | ||
{dateString} | ||
</div> | ||
)} | ||
{this.props.hamburger && ( | ||
<FontAwesomeIcon | ||
className={css` | ||
margin-top: auto; | ||
margin-bottom: auto; | ||
`} | ||
icon={this.state.isHamburgerOpen ? faTimes : faBars} | ||
onClick={this.hamburgerClicked} | ||
fixedWidth={true} | ||
/> | ||
)} | ||
<a | ||
href="https://www.dailybruin.com" | ||
className={css` | ||
margin-top: auto; | ||
margin-bottom: auto; | ||
`} | ||
> | ||
<img | ||
src={dbLogo} | ||
className={css` | ||
width: ${this.props.hamburger ? '200px' : '420px'}; | ||
${MainSiteStyles.mediaMobileBreakpoint} { | ||
width: 200px; | ||
} | ||
display: block; | ||
`} | ||
/> | ||
</a> | ||
<div | ||
className={css` | ||
flex: ${this.props.hamburger ? 0 : 1}; | ||
text-align: right; | ||
margin-top: auto; | ||
${MainSiteStyles.mediaMobileBreakpoint} { | ||
margin-bottom: auto; | ||
} | ||
margin-bottom: ${this.props.hamburger ? 'auto;' : '0px;'}; | ||
`} | ||
> | ||
{!this.props.hamburger && <a>Advertise</a>} | ||
<FontAwesomeIcon | ||
icon={faSearch} | ||
className={css` | ||
margin-top: auto; | ||
margin-bottom: auto; | ||
${MainSiteStyles.mediaMobileBreakpoint} { | ||
margin-left: 0px; | ||
} | ||
margin-left: 10px; | ||
`} | ||
fixedWidth={true} | ||
/> | ||
</div> | ||
</div> | ||
{!this.props.hamburger && ( | ||
<div | ||
className={css` | ||
margin: 10px 0px 10px 0px; | ||
height: 1px; width: 100%; | ||
opacity: 0.5; | ||
background-color: #5f5f5f;} | ||
${MainSiteStyles.mediaMobileBreakpoint} { | ||
display: none; | ||
} | ||
`} | ||
/> | ||
)} | ||
{(this.state.isHamburgerOpen || !this.props.hamburger) && ( | ||
<nav | ||
className={css` | ||
display: flex; | ||
flex-direction: row; | ||
align-self: stretch; | ||
justify-content: space-evenly; | ||
text-decoration: none; | ||
font-size: 0.85rem; | ||
${MainSiteStyles.mediaMobileBreakpoint} { | ||
flex-direction: column; | ||
text-align: center; | ||
} | ||
`} | ||
> | ||
{linksInNav} | ||
</nav> | ||
)} | ||
</header> | ||
) | ||
} | ||
} | ||
|
||
export default HeaderBar |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,17 @@ | ||
--- | ||
name: Main Site Header | ||
route: /main-site-header | ||
--- | ||
|
||
import { Playground, PropsTable } from 'docz' | ||
import MainSiteHeader from '.' | ||
|
||
# Main Site Header | ||
|
||
Some pages have a header. Not to be confused with [header](/header). | ||
|
||
<PropsTable of={MainSiteHeader} /> | ||
|
||
<Playground> | ||
<MainSiteHeader /> | ||
</Playground> |
Oops, something went wrong.