forked from loafle/openapi-generator-original
53 lines
1.6 KiB
JavaScript
Executable File
53 lines
1.6 KiB
JavaScript
Executable File
/**
|
|
* 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 path = require("path");
|
|
|
|
const CompLibrary = require('../../core/CompLibrary.js');
|
|
|
|
const EditThisPage = require(path.resolve(process.cwd(), "core/EditThisPage.js"));
|
|
|
|
const Container = CompLibrary.Container;
|
|
|
|
class Users extends React.Component {
|
|
render() {
|
|
const {config: siteConfig} = this.props;
|
|
const {baseUrl, repoUrl} = siteConfig;
|
|
if ((siteConfig.users || []).length === 0) {
|
|
return null;
|
|
}
|
|
|
|
const editUrl = `${repoUrl}/edit/master/website/dynamic/users.yml`;
|
|
const showcase = siteConfig.users.map(user => {
|
|
// avoid joining base/ with /img/path as double-slash breaks image load.
|
|
let trimmedImg = user.image.startsWith("/") ? user.image.slice(1,user.image.length) : user.image;
|
|
let imgUrl = `${baseUrl}${trimmedImg}`;
|
|
return (
|
|
<a href={user.infoLink} key={user.infoLink}>
|
|
<img src={imgUrl} alt={user.caption} title={user.caption}/>
|
|
</a>
|
|
);
|
|
}
|
|
);
|
|
|
|
return (
|
|
<Container padding={['bottom']}>
|
|
<EditThisPage title="Who is Using This?" url={editUrl} />
|
|
<div className="showcaseSection">
|
|
<div className="prose">
|
|
<p>Here are some of the users. To add yours to the list below, please click on "Edit this page"</p>
|
|
</div>
|
|
<div className="logos">{showcase}</div>
|
|
</div>
|
|
</Container>
|
|
);
|
|
}
|
|
}
|
|
|
|
module.exports = Users;
|