ligo/gitlab-pages/website/pages/en/index.js

428 lines
11 KiB
JavaScript
Raw Normal View History

/**
* 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.
*/
2019-09-25 19:45:37 +04:00
const React = require("react");
2019-09-25 19:45:37 +04:00
const CompLibrary = require("../../core/CompLibrary.js");
2019-09-28 20:00:56 +04:00
const hljs = require("highlight.js");
const MarkdownBlock = CompLibrary.MarkdownBlock; /* Used to read markdown */
const Container = CompLibrary.Container;
const GridBlock = CompLibrary.GridBlock;
2019-09-28 20:00:56 +04:00
const pre = "```";
2019-09-30 17:42:33 +04:00
const pascaligoExampleSmall = `${pre}pascaligo
// variant defining pseudo multi-entrypoint
// actions
type action is
| Increment of int
| Decrement of int
function add
(const a: int; const b: int): int is
block { skip } with a + b
function subtract
(const a: int; const b: int): int
is block { skip } with a - b
// real entrypoint that re-routes the flow
// based on the action provided
function main
(const p: action; const s: int):
(list(operation) * int) is
block { skip }
with ((nil : list(operation)),
case p of
| Increment(n) -> add(s, n)
| Decrement(n) -> subtract(s, n)
end)
${pre}`;
2019-09-28 20:00:56 +04:00
const pascaligoExample = `${pre}pascaligo
// variant defining pseudo multi-entrypoint actions
type action is
2019-09-29 01:26:17 +04:00
| Increment of int
| Decrement of int
2019-09-28 20:00:56 +04:00
2019-09-29 01:26:17 +04:00
function add (const a : int ; const b : int) : int is
block { skip } with a + b
2019-09-28 20:00:56 +04:00
2019-09-29 01:26:17 +04:00
function subtract (const a : int ; const b : int) : int is
block { skip } with a - b
2019-09-28 20:00:56 +04:00
2019-09-29 01:26:17 +04:00
// real entrypoint that re-routes the flow based
// on the action provided
function main (const p : action ; const s : int) :
(list(operation) * int) is
block { skip } with ((nil : list(operation)),
case p of
2019-09-28 20:00:56 +04:00
| Increment(n) -> add(s, n)
| Decrement(n) -> subtract(s, n)
2019-09-29 01:26:17 +04:00
end)
${pre}`;
2019-09-30 17:42:33 +04:00
const cameligoExampleSmall = `${pre}ocaml
type storage = int
(* variant defining pseudo multi-entrypoint
actions *)
type action =
| Increment of int
| Decrement of int
let add (a: int) (b: int): int = a + b
let subtract (a: int) (b: int): int = a - b
(* real entrypoint that re-routes the flow
based on the action provided *)
let%entry main(p : action) storage =
let storage =
match p with
| Increment n -> add storage n
| Decrement n -> subtract storage n
in (([] : operation list), storage)
${pre}`;
2019-09-28 20:00:56 +04:00
const cameligoExample = `${pre}ocaml
type storage = int
(* variant defining pseudo multi-entrypoint actions *)
type action =
| Increment of int
| Decrement of int
let add (a: int) (b: int): int = a + b
let subtract (a: int) (b: int): int = a - b
(* real entrypoint that re-routes the flow based on
2019-09-29 01:26:17 +04:00
the action provided *)
2019-09-28 20:00:56 +04:00
let%entry main(p : action) storage =
let storage =
match p with
| Increment n -> add storage n
| Decrement n -> subtract storage n
in (([] : operation list), storage)
2019-09-29 01:26:17 +04:00
${pre}`;
2019-09-28 20:00:56 +04:00
2019-09-26 00:59:07 +04:00
const PascalLIGOTab = () => (
<div
id="tab-group-3-content-4"
2019-09-30 17:42:33 +04:00
className="tab-pane active code-snippet"
2019-09-26 00:59:07 +04:00
data-group="group_3"
tabIndex="-1"
>
2019-09-30 17:42:33 +04:00
<MarkdownBlock>{pascaligoExampleSmall}</MarkdownBlock>
2019-09-28 20:00:56 +04:00
<MarkdownBlock>{pascaligoExample}</MarkdownBlock>
2019-09-26 00:59:07 +04:00
</div>
);
const CamelLIGOTab = () => (
<div
id="tab-group-3-content-5"
2019-09-30 17:42:33 +04:00
className="tab-pane code-snippet"
2019-09-26 00:59:07 +04:00
data-group="group_3"
tabIndex="-1"
>
2019-09-30 17:42:33 +04:00
<MarkdownBlock>{cameligoExampleSmall}</MarkdownBlock>
2019-09-28 20:00:56 +04:00
<MarkdownBlock>{cameligoExample}</MarkdownBlock>
2019-09-26 00:59:07 +04:00
</div>
);
const LinkButton = props => (
<a href={props.href} target={props.target}>
<button className={props.className}>{props.children}</button>
</a>
);
class HomeSplash extends React.Component {
render() {
2019-09-25 19:45:37 +04:00
const { siteConfig, language = "" } = this.props;
const { baseUrl, docsUrl } = siteConfig;
const docsPart = `${docsUrl ? `${docsUrl}/` : ""}`;
const langPart = `${language ? `${language}/` : ""}`;
const docUrl = doc => `${baseUrl}${docsPart}${langPart}${doc}`;
2019-09-26 00:59:07 +04:00
const SampleCode = props => (
2019-09-26 01:36:43 +04:00
<div className="sample-code-container">
<div className="sample-code">
<div className="tabs">
<div className="nav-tabs">
<div
id="tab-group-3-tab-4"
className="nav-link active"
data-group="group_3"
data-tab="tab-group-3-content-4"
>
PascaLIGO
</div>
<div
className="nav-link"
data-group="group_3"
data-tab="tab-group-3-content-5"
>
CameLIGO
</div>
<div className="disabled">ReasonLIGO (coming soon) </div>
2019-06-03 20:16:05 +04:00
</div>
2019-09-26 01:36:43 +04:00
<div className="tab-content">
{PascalLIGOTab()}
{CamelLIGOTab()}
2019-09-26 00:59:07 +04:00
</div>
2019-06-03 20:16:05 +04:00
</div>
</div>
2019-09-29 01:26:17 +04:00
</div >
);
return (
2019-09-26 00:59:07 +04:00
<div className="home-container">
<div className="home-text">
2019-09-30 17:42:33 +04:00
<div className="projectTitle">
<img alt={siteConfig.title} src={`${siteConfig.baseUrl}img/logo.svg`} />
</div>
2019-09-26 00:59:07 +04:00
<h4 className="tagline-text">{siteConfig.tagline}</h4>
<p className="body">{siteConfig.taglineSub}</p>
<LinkButton
href="https://ide.ligolang.org/"
2019-09-26 00:59:07 +04:00
className="large-primary-button"
2019-10-01 14:15:51 +04:00
>
Try Online
</LinkButton>
<p></p>
<LinkButton
href={docUrl("setup/installation.html")}
className="large-secondary-button"
2019-09-26 00:59:07 +04:00
>
Get Started
</LinkButton>
2019-10-01 14:15:51 +04:00
</div>
2019-09-26 00:59:07 +04:00
<SampleCode />
</div>
);
}
}
class Index extends React.Component {
render() {
2019-09-25 19:45:37 +04:00
const { config: siteConfig, language = "" } = this.props;
const { baseUrl } = siteConfig;
const Block = props => (
<Container
2019-09-25 19:45:37 +04:00
padding={["bottom", "top"]}
id={props.id}
2019-09-25 19:45:37 +04:00
background={props.background}
>
<GridBlock
align="center"
contents={props.children}
layout={props.layout}
/>
</Container>
);
const FeatureCallout = () => (
<div
className="productShowcaseSection paddingBottom"
2019-09-25 19:45:37 +04:00
style={{ textAlign: "center" }}
>
<h2>Feature Callout</h2>
<MarkdownBlock>These are features of this project</MarkdownBlock>
</div>
);
const TryOut = () => (
<Block id="try">
{[
{
content:
2019-09-25 19:45:37 +04:00
"To make your landing page more attractive, use illustrations! Check out " +
"[**unDraw**](https://undraw.co/) which provides you with customizable illustrations which are free to use. " +
"The illustrations you see on this page are from unDraw.",
image: `${baseUrl}img/undraw_code_review.svg`,
2019-09-25 19:45:37 +04:00
imageAlign: "left",
title: "Wonderful SVG Illustrations"
}
]}
</Block>
);
const Description = () => (
<Block background="dark">
{[
{
content:
2019-09-25 19:45:37 +04:00
"This is another description of how this project is useful",
image: `${baseUrl}img/undraw_note_list.svg`,
2019-09-25 19:45:37 +04:00
imageAlign: "right",
title: "Description"
}
]}
</Block>
);
const LearnHow = () => (
<Block background="light">
{[
{
content:
2019-09-25 19:45:37 +04:00
"Each new Docusaurus project has **randomly-generated** theme colors.",
image: `${baseUrl}img/undraw_youtube_tutorial.svg`,
2019-09-25 19:45:37 +04:00
imageAlign: "right",
title: "Randomly Generated Theme Colors"
}
]}
</Block>
);
2019-09-25 21:32:06 +04:00
const FeatureCard = props => (
<div className="card" key={props.title}>
<img src={props.image} />
<div className="card-text">
<h4>{props.title}</h4>
<p className="body">{props.content}</p>
</div>
</div>
);
const Features = () => (
2019-06-03 20:16:05 +04:00
<div className="features">
2019-09-25 22:28:48 +04:00
<h2>Features</h2>
2019-09-25 21:32:06 +04:00
<div className="flex-inline-container">
2019-06-03 20:16:05 +04:00
{[
{
2019-09-25 19:45:37 +04:00
content:
2019-09-25 21:32:06 +04:00
"Write types, then code, and benefit from the safety coming from type systems.",
image: `${baseUrl}img/strong-type-system.svg`,
title: "Strong Type System"
2019-06-03 20:16:05 +04:00
},
{
2019-09-25 19:45:37 +04:00
content:
2019-09-25 21:32:06 +04:00
"Write in PascaLIGO (pascal-like syntax) or CameLIGO (caml-like syntax). If you know OCaml, you can also add your own syntax.",
image: `${baseUrl}img/syntax-agnostic.svg`,
title: "Syntax Agnostic"
2019-06-03 20:16:05 +04:00
},
2019-09-25 21:32:06 +04:00
2019-06-03 20:16:05 +04:00
{
2019-09-25 19:45:37 +04:00
content: "With Granary, you can use LIGO as a lib from NodeJS.",
2019-09-25 21:32:06 +04:00
image: `${baseUrl}img/easy-integration.svg`,
2019-09-25 19:45:37 +04:00
title: "Easy Integration"
2019-06-03 20:16:05 +04:00
}
2019-09-25 21:32:06 +04:00
].map(FeatureCard)}
</div>
2019-06-03 20:16:05 +04:00
</div>
);
2019-05-24 17:16:38 +04:00
const Roadmap = () => (
<div className="roadmap">
2019-09-25 19:45:37 +04:00
<Block background="light">
2019-05-24 17:16:38 +04:00
{[
{
2019-09-25 19:45:37 +04:00
content:
2019-05-24 17:16:38 +04:00
"<h4>June 2019</h4>" +
2019-09-25 19:45:37 +04:00
"<em><ul>" +
2019-05-24 17:16:38 +04:00
"<li>First public release</li>" +
"<li>PascaLIGO and CameLIGO syntaxes</li>" +
"<li>Docs and Tutorials</li>" +
"<li>Integration testing in ReasonML/JS with Granary</li>" +
"</ul></em>" +
"<h4>July 2019</h4>" +
2019-09-25 19:45:37 +04:00
"<em><ul>" +
2019-05-24 17:16:38 +04:00
"<li>Try LIGO online editor</li>" +
"<li>Unit testing toolkit</li>" +
"<li>ReasonLIGO syntax support</li>" +
"<li>Repository with best practices & patterns for LIGO</li>" +
"</ul></em>" +
"<h4>August 2019</h4>" +
"<em>" +
"Long term plans will be announced soon" +
"</em>",
image: ``,
2019-09-25 19:45:37 +04:00
imageAlign: "right",
title: "Roadmap"
}
2019-05-24 17:16:38 +04:00
]}
</Block>
</div>
);
2019-06-03 20:16:05 +04:00
const Partners = () => {
if ((siteConfig.partners || []).length === 0) {
return null;
}
2019-09-25 22:28:48 +04:00
const PartnerShowcase = siteConfig.partners
.filter(user => user.pinned)
.map(user => (
2019-09-25 22:28:48 +04:00
<a className="partner-link" href={user.infoLink} key={user.infoLink}>
<img src={user.image} alt={user.caption} title={user.caption} />
</a>
));
return (
2019-09-25 22:28:48 +04:00
<div className="partners-container hide-small">
{PartnerShowcase}
<div className="partners-text">
2019-09-30 19:27:10 +04:00
<h3>Partners</h3>
2019-09-25 22:28:48 +04:00
</div>
2019-06-03 20:16:05 +04:00
</div>
);
};
const Team = () => {
if ((siteConfig.team || []).length === 0) {
return null;
}
const showcase = siteConfig.team
.filter(user => user.pinned)
.map(user => (
2019-09-25 19:45:37 +04:00
<a
className="profileContainer"
href={user.infoLink}
key={user.infoLink}
>
<img className="profileImage" src={user.image} alt={user.caption} />
<p className="headline">{user.caption}</p>
2019-06-03 20:16:05 +04:00
</a>
));
return (
2019-09-26 00:59:07 +04:00
<div className="team">
2019-09-25 22:28:48 +04:00
<h2>Team</h2>
2019-09-25 21:32:06 +04:00
<div className="flex-inline-container">{showcase}</div>
</div>
);
};
return (
<div className="landing">
<HomeSplash siteConfig={siteConfig} language={language} />
<div className="mainContainer">
<Features />
2019-06-03 20:16:05 +04:00
{/* <Roadmap /> */}
2019-05-24 17:16:38 +04:00
{/* <FeatureCallout /> */}
{/* {/* <LearnHow /> */}
{/* <TryOut /> */}
{/* <Description /> */}
2019-06-03 20:16:05 +04:00
<Team />
<Partners />
</div>
</div>
);
}
}
module.exports = Index;