Summary: n/a Reviewed By: danielbuechele Differential Revision: D15182819 fbshipit-source-id: b2a76dfe94af1ecd9c6fc0c5831ae02fc1fde73f
81 lines
2.5 KiB
JavaScript
81 lines
2.5 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="Flipper mascot"
|
|
title="I'm a dolphin not a whale!"
|
|
width="66"
|
|
/>
|
|
)}
|
|
</a>
|
|
<div>
|
|
<h5>Docs</h5>
|
|
<a href="/docs/getting-started.html">Getting Started</a>
|
|
<a href="/docs/extending/js-setup.html">Creating Plugins</a>
|
|
</div>
|
|
<div>
|
|
<h5>Plugins</h5>
|
|
<a href="/docs/features/logs-plugin.html">Log Viewer</a>
|
|
<a href="/docs/features/layout-plugin.html">Layout Inspector</a>
|
|
<a href="/docs/features/network-plugin.html">Network Inspector</a>
|
|
</div>
|
|
<div>
|
|
<h5>More</h5>
|
|
<a href="https://twitter.com/flipper_fb">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/flipper/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;
|