chore(v2): fix code style (revert previous changes)

This commit is contained in:
Alexey Pyltsyn 2020-04-05 17:38:12 +03:00
parent 1480a7eb80
commit 1f00d15c74
143 changed files with 457 additions and 458 deletions

View file

@ -17,7 +17,7 @@ function Help(props) {
const {baseUrl, docsUrl} = siteConfig;
const docsPart = `${docsUrl ? `${docsUrl}/` : ''}`;
const langPart = `${language ? `${language}/` : ''}`;
const docUrl = doc => `${baseUrl}${docsPart}${langPart}${doc}`;
const docUrl = (doc) => `${baseUrl}${docsPart}${langPart}${doc}`;
const supportLinks = [
{

View file

@ -19,9 +19,9 @@ class HomeSplash extends React.Component {
const {baseUrl, docsUrl} = siteConfig;
const docsPart = `${docsUrl ? `${docsUrl}/` : ''}`;
const langPart = `${language ? `${language}/` : ''}`;
const docUrl = doc => `${baseUrl}${docsPart}${langPart}${doc}`;
const docUrl = (doc) => `${baseUrl}${docsPart}${langPart}${doc}`;
const SplashContainer = props => (
const SplashContainer = (props) => (
<div className="homeContainer">
<div className="homeSplashFade">
<div className="wrapper homeWrapper">{props.children}</div>
@ -29,20 +29,20 @@ class HomeSplash extends React.Component {
</div>
);
const Logo = props => (
const Logo = (props) => (
<div className="projectLogo">
<img src={props.img_src} alt="Project Logo" />
</div>
);
const ProjectTitle = props => (
const ProjectTitle = (props) => (
<h2 className="projectTitle">
{props.title}
<small>{props.tagline}</small>
</h2>
);
const PromoSection = props => (
const PromoSection = (props) => (
<div className="section promoSection">
<div className="promoRow">
<div className="pluginRowBlock">{props.children}</div>
@ -50,7 +50,7 @@ class HomeSplash extends React.Component {
</div>
);
const Button = props => (
const Button = (props) => (
<div className="pluginWrapper buttonWrapper">
<a className="button" href={props.href} target={props.target}>
{props.children}
@ -79,7 +79,7 @@ class Index extends React.Component {
const {config: siteConfig, language = ''} = this.props;
const {baseUrl} = siteConfig;
const Block = props => (
const Block = (props) => (
<Container
padding={['bottom', 'top']}
id={props.id}
@ -170,14 +170,15 @@ class Index extends React.Component {
}
const showcase = siteConfig.users
.filter(user => user.pinned)
.map(user => (
.filter((user) => user.pinned)
.map((user) => (
<a href={user.infoLink} key={user.infoLink}>
<img src={user.image} alt={user.caption} title={user.caption} />
</a>
));
const pageUrl = page => baseUrl + (language ? `${language}/` : '') + page;
const pageUrl = (page) =>
baseUrl + (language ? `${language}/` : '') + page;
return (
<div className="productShowcaseSection paddingBottom">

View file

@ -18,7 +18,7 @@ class Users extends React.Component {
return null;
}
const showcase = siteConfig.users.map(user => (
const showcase = siteConfig.users.map((user) => (
<a href={user.infoLink} key={user.infoLink}>
<img src={user.image} alt={user.caption} title={user.caption} />
</a>