mirror of
https://github.com/filecoin-project/slate.git
synced 2024-11-24 14:56:27 +03:00
76 lines
2.1 KiB
JavaScript
76 lines
2.1 KiB
JavaScript
import * as React from "react";
|
|
import * as System from "~/components/system";
|
|
|
|
import GLRenderer from "~/components/three/GLRenderer";
|
|
import SystemPage from "~/components/system/SystemPage";
|
|
import ViewSourceLink from "~/components/system/ViewSourceLink";
|
|
import CodeBlock from "~/components/system/CodeBlock";
|
|
|
|
export default class SystemPageGlobe extends React.Component {
|
|
render() {
|
|
return (
|
|
<SystemPage
|
|
title="SDS: Globe"
|
|
description="..."
|
|
url="https://slate.host/system/globe"
|
|
>
|
|
<System.H1>
|
|
Globe <ViewSourceLink file="system/globe.js" />
|
|
</System.H1>
|
|
<br />
|
|
<br />
|
|
<System.P>
|
|
The Globe component is used to show peers and file transfers on the
|
|
Filecoin network.
|
|
</System.P>
|
|
<br />
|
|
<br />
|
|
<br />
|
|
<System.H2>Imports</System.H2>
|
|
<hr />
|
|
<br />
|
|
<System.P>
|
|
Import React and the GLRenderer Components. Unfortunately the
|
|
GLRenderer is not usable outside of this application.
|
|
</System.P>
|
|
<br />
|
|
<br />
|
|
<CodeBlock>
|
|
{`import * as React from "react";
|
|
import GLRenderer from "~/components/three/GLRenderer";`}
|
|
</CodeBlock>
|
|
<br />
|
|
<br />
|
|
<System.H2>Usage</System.H2>
|
|
<hr />
|
|
<br />
|
|
<System.P>
|
|
Declare the Globe component. Specify{" "}
|
|
<System.CodeText>countries</System.CodeText> to be true to include
|
|
markers for each country.
|
|
</System.P>
|
|
<br />
|
|
<CodeBlock>
|
|
{`class ExampleOne extends React.Component {
|
|
render() {
|
|
return (
|
|
<React.Fragment>
|
|
<GLRenderer width={768} height={480} />
|
|
<GLRenderer countries width={768} height={480} />
|
|
</React.Fragment>
|
|
);
|
|
}
|
|
}`}
|
|
</CodeBlock>
|
|
<br />
|
|
<br />
|
|
<System.H2>Output</System.H2>
|
|
<hr />
|
|
<br />
|
|
<GLRenderer width={768} height={480} />
|
|
<GLRenderer countries width={768} height={480} />
|
|
</SystemPage>
|
|
);
|
|
}
|
|
}
|