116 lines
3.8 KiB
JavaScript
116 lines
3.8 KiB
JavaScript
/**
|
|
* Copyright (c) 2017-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
const React = require('react');
|
|
|
|
const CompLibrary = require('../../core/CompLibrary');
|
|
|
|
const Container = CompLibrary.Container;
|
|
|
|
const CWD = process.cwd();
|
|
|
|
const versions = require(`${CWD}/versions.json`);
|
|
|
|
function Versions(props) {
|
|
const {config: siteConfig} = props;
|
|
const latestVersion = versions[0];
|
|
const repoUrl = `https://github.com/${siteConfig.organizationName}/${
|
|
siteConfig.projectName
|
|
}`;
|
|
return (
|
|
<div className="docMainWrapper wrapper">
|
|
<Container className="mainContainer versionsContainer">
|
|
<div className="post">
|
|
<header className="postHeader">
|
|
<h1>{siteConfig.title} Versions</h1>
|
|
</header>
|
|
<h3 id="latest">Current version</h3>
|
|
<table className="versions">
|
|
<tbody>
|
|
<tr>
|
|
<th>{latestVersion}</th>
|
|
<td>
|
|
{/* You are supposed to change this href where appropriate
|
|
Example: href="<baseUrl>/docs(/:language)/:id" */}
|
|
<a
|
|
href={`${siteConfig.baseUrl}${siteConfig.docsUrl}/${
|
|
props.language ? props.language + '/' : ''
|
|
}setup/installation`}>
|
|
Documentation
|
|
</a>
|
|
</td>
|
|
<td>
|
|
<a href={repoUrl}>Source Code</a>
|
|
</td>
|
|
{/* <td>
|
|
<a href="">Release Notes</a>
|
|
</td> */}
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<h3 id="rc">Pre-release versions</h3>
|
|
<table className="versions">
|
|
<tbody>
|
|
<tr>
|
|
<th>next</th>
|
|
<td>
|
|
{/* You are supposed to change this href where appropriate
|
|
Example: href="<baseUrl>/docs(/:language)/next/:id" */}
|
|
<a
|
|
href={`${siteConfig.baseUrl}${siteConfig.docsUrl}/${
|
|
props.language ? props.language + '/' : ''
|
|
}next/setup/installation`}>
|
|
Documentation
|
|
</a>
|
|
</td>
|
|
<td>
|
|
<a href={repoUrl}>Source Code</a>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<h3 id="archive">Past Versions</h3>
|
|
<p>Here you can find previous versions of the documentation.</p>
|
|
<table className="versions">
|
|
<tbody>
|
|
{versions.map(
|
|
version =>
|
|
version !== latestVersion && version !== "next" && (
|
|
<tr>
|
|
<th>{version}</th>
|
|
<td>
|
|
{/* You are supposed to change this href where appropriate
|
|
Example: href="<baseUrl>/docs(/:language)/:version/:id" */}
|
|
<a
|
|
href={`${siteConfig.baseUrl}${siteConfig.docsUrl}/${
|
|
props.language ? props.language + '/' : ''
|
|
}${version}/setup/installation`}>
|
|
Documentation
|
|
</a>
|
|
</td>
|
|
<td>
|
|
<a href={`${repoUrl}/releases/tag/v${version}`}>
|
|
Release Notes
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
),
|
|
)}
|
|
</tbody>
|
|
</table>
|
|
<p>
|
|
You can find past versions of this project on{' '}
|
|
<a href={repoUrl}>Gitlab</a>.
|
|
</p>
|
|
</div>
|
|
</Container>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
module.exports = Versions;
|