Michael Shilman 531b15aea3 Use original docs components and styling inside gatsby
- get rid of sections concept temporarily
- markdown is already parsed to HTML by gatsby
2017-05-02 16:29:08 +10:00

55 lines
1.3 KiB
JavaScript

import PropTypes from 'prop-types';
import React from 'react';
import './style.css';
import storybookLogo from '../../design/homepage/storybook-logo.png';
const sections = [
{ id: 'home', caption: 'Home', href: '/' },
{ id: 'docs', caption: 'Docs', href: '/docs/react-storybook/basics/introduction/' },
];
class Header extends React.Component {
renderSections() {
return sections.map(section => {
const { currentSection } = this.props;
const className = currentSection === section.id ? 'selected' : '';
return (
<a className={className} key={section.href} href={section.href}>
{section.caption}
</a>
);
});
}
render() {
const { currentSection } = this.props;
let titleClassname = 'pull-left';
if (currentSection === 'home') {
titleClassname += ' hide';
}
return (
<div id="header" className="row">
<div className="col-xs-12">
<div id="header-title" className={titleClassname}>
<a href="/">
<img className="sb-title" src={storybookLogo} alt="Storybook Logo" />
</a>
</div>
<div id="header-links" className="pull-right">
{this.renderSections()}
</div>
</div>
</div>
);
}
}
Header.propTypes = {
currentSection: PropTypes.string,
};
export default Header;