Files
flipper/website/core/Footer.js

83 lines
2.6 KiB
JavaScript

/**
* Copyright 2018-present Facebook.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
* @format
*/
const React = require('react');
class Footer extends React.Component {
docUrl(doc, language) {
const baseUrl = this.props.config.baseUrl;
return baseUrl + 'docs/' + (language ? language + '/' : '') + doc;
}
pageUrl(doc, language) {
const baseUrl = this.props.config.baseUrl;
return baseUrl + (language ? language + '/' : '') + doc;
}
render() {
return (
<footer className="nav-footer" id="footer">
<section className="sitemap">
<a href={this.props.config.baseUrl} className="nav-home">
{this.props.config.footerIcon && (
<img
src={this.props.config.baseUrl + this.props.config.footerIcon}
alt="Sonar mascot"
title="I'm a whale not a dolphin!"
width="66"
height="58"
/>
)}
</a>
<div>
<h5>Docs</h5>
<a href="/docs/getting-started.html">Getting Started</a>
<a href="/docs/understand.html">Understanding Sonar</a>
<a href="/docs/js-setup.html">Creating Plugins</a>
</div>
<div>
<h5>Plugins</h5>
<a href="/docs/logs-plugin.html">Log Viewer</a>
<a href="/docs/layout-plugin.html">Layout Inspector</a>
<a href="/docs/network-plugin.html">Network Inspector</a>
</div>
<div>
<h5>More</h5>
<a href="https://twitter.com/fb_sonar">Twitter</a>
<a href={this.props.config.repoUrl}>GitHub</a>
<a
className="github-button"
href={this.props.config.repoUrl}
data-icon="octicon-star"
data-count-href="/facebook/sonar/stargazers"
data-show-count={true}
data-count-aria-label="# stargazers on GitHub"
aria-label="Star this project on GitHub">
Star
</a>
</div>
</section>
<a
href="https://code.facebook.com/projects/"
target="_blank"
className="fbOpenSource">
<img
src={this.props.config.baseUrl + 'img/oss_logo.png'}
alt="Facebook Open Source"
width="170"
height="45"
/>
</a>
<section className="copyright">{this.props.config.copyright}</section>
</footer>
);
}
}
module.exports = Footer;