mirror of
https://github.com/oceanprotocol/commons.git
synced 2023-03-15 18:03:00 +01:00
files reorganization
This commit is contained in:
parent
117a5a3d2e
commit
f834e2e42e
@ -1,13 +1,13 @@
|
|||||||
import React from 'react'
|
import React from 'react'
|
||||||
import { Route, Switch } from 'react-router-dom'
|
import { Route, Switch } from 'react-router-dom'
|
||||||
|
|
||||||
import About from './pages/About'
|
import About from './routes/About'
|
||||||
import Details from './pages/Details'
|
import Details from './routes/Details'
|
||||||
import Home from './pages/Home'
|
import Home from './routes/Home'
|
||||||
import NotFound from './pages/NotFound'
|
import NotFound from './routes/NotFound'
|
||||||
import Publish from './pages/Publish'
|
import Publish from './routes/Publish'
|
||||||
import Search from './pages/Search'
|
import Search from './routes/Search'
|
||||||
import Styleguide from './pages/Styleguide'
|
import Styleguide from './routes/Styleguide'
|
||||||
|
|
||||||
const Routes = () => (
|
const Routes = () => (
|
||||||
<Switch>
|
<Switch>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
@import '../styles/variables';
|
@import '../../styles/variables';
|
||||||
|
|
||||||
.header {
|
.header {
|
||||||
margin-bottom: $spacer;
|
margin-bottom: $spacer;
|
@ -1,19 +1,21 @@
|
|||||||
import React from 'react'
|
import React from 'react'
|
||||||
import Helmet from 'react-helmet'
|
import Helmet from 'react-helmet'
|
||||||
import Content from '../components/Content'
|
import Content from '../Content'
|
||||||
import styles from './Page.module.scss'
|
import styles from './Route.module.scss'
|
||||||
import meta from '../data/meta.json'
|
import meta from '../../data/meta.json'
|
||||||
|
|
||||||
const Page = ({
|
const Route = ({
|
||||||
title,
|
title,
|
||||||
wide,
|
wide,
|
||||||
children
|
children,
|
||||||
|
className
|
||||||
}: {
|
}: {
|
||||||
title: string
|
title: string
|
||||||
children: any
|
children: any
|
||||||
wide?: boolean
|
wide?: boolean
|
||||||
|
className?: string
|
||||||
}) => (
|
}) => (
|
||||||
<>
|
<div className={className}>
|
||||||
<Helmet defaultTitle={meta.title} titleTemplate={`%s - ${meta.title}`}>
|
<Helmet defaultTitle={meta.title} titleTemplate={`%s - ${meta.title}`}>
|
||||||
<title>{title}</title>
|
<title>{title}</title>
|
||||||
</Helmet>
|
</Helmet>
|
||||||
@ -25,7 +27,7 @@ const Page = ({
|
|||||||
|
|
||||||
{children}
|
{children}
|
||||||
</Content>
|
</Content>
|
||||||
</>
|
</div>
|
||||||
)
|
)
|
||||||
|
|
||||||
export default Page
|
export default Route
|
@ -10,5 +10,9 @@
|
|||||||
{
|
{
|
||||||
"title": "About",
|
"title": "About",
|
||||||
"link": "/about"
|
"link": "/about"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "Styleguide",
|
||||||
|
"link": "/styleguide"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -1,32 +0,0 @@
|
|||||||
@import '../styles/variables';
|
|
||||||
|
|
||||||
.home {
|
|
||||||
background: $brand-black;
|
|
||||||
color: $brand-white;
|
|
||||||
min-height: calc(100vh - #{$page-frame} * 2);
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
padding-top: 4rem;
|
|
||||||
padding-bottom: 4rem;
|
|
||||||
|
|
||||||
> div {
|
|
||||||
text-align: center;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.form {
|
|
||||||
width: 100%;
|
|
||||||
background: $brand-grey-lighter;
|
|
||||||
margin: 0 auto;
|
|
||||||
max-width: 40rem;
|
|
||||||
padding: $spacer;
|
|
||||||
margin-top: 4rem;
|
|
||||||
|
|
||||||
fieldset {
|
|
||||||
border: 0;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,9 +1,9 @@
|
|||||||
import React, { Component } from 'react'
|
import React, { Component } from 'react'
|
||||||
import Page from '../templates/Page'
|
import Route from '../components/templates/Route'
|
||||||
|
|
||||||
class About extends Component {
|
class About extends Component {
|
||||||
public render() {
|
public render() {
|
||||||
return <Page title="About">Hello About</Page>
|
return <Route title="About">Hello About</Route>
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -1,6 +1,6 @@
|
|||||||
import { Logger } from '@oceanprotocol/squid'
|
import { Logger } from '@oceanprotocol/squid'
|
||||||
import React, { Component } from 'react'
|
import React, { Component } from 'react'
|
||||||
import Page from '../templates/Page'
|
import Route from '../components/templates/Route'
|
||||||
import Button from '../components/atoms/Button'
|
import Button from '../components/atoms/Button'
|
||||||
import { User } from '../context/User'
|
import { User } from '../context/User'
|
||||||
|
|
||||||
@ -65,13 +65,13 @@ export default class Details extends Component<DetailsProps, DetailsState> {
|
|||||||
|
|
||||||
public render() {
|
public render() {
|
||||||
return (
|
return (
|
||||||
<Page title={'Details'}>
|
<Route title={'Details'}>
|
||||||
{this.state.metadata ? (
|
{this.state.metadata ? (
|
||||||
this.showDetails(this.state.ddo)
|
this.showDetails(this.state.ddo)
|
||||||
) : (
|
) : (
|
||||||
<div>Loading</div>
|
<div>Loading</div>
|
||||||
)}
|
)}
|
||||||
</Page>
|
</Route>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
18
src/routes/Home.module.scss
Normal file
18
src/routes/Home.module.scss
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
@import '../styles/variables';
|
||||||
|
|
||||||
|
.home {
|
||||||
|
// background: $brand-black;
|
||||||
|
// color: $brand-white;
|
||||||
|
// min-height: calc(100vh - #{$page-frame} * 2);
|
||||||
|
// display: flex;
|
||||||
|
// align-items: center;
|
||||||
|
// justify-content: center;
|
||||||
|
// flex-wrap: wrap;
|
||||||
|
// padding-top: 4rem;
|
||||||
|
// padding-bottom: 4rem;
|
||||||
|
|
||||||
|
// > div {
|
||||||
|
// text-align: center;
|
||||||
|
// width: 100%;
|
||||||
|
// }
|
||||||
|
}
|
@ -1,9 +1,8 @@
|
|||||||
import React, { ChangeEvent, Component, FormEvent } from 'react'
|
import React, { ChangeEvent, Component, FormEvent } from 'react'
|
||||||
import { Link } from 'react-router-dom'
|
|
||||||
import Button from '../components/atoms/Button'
|
import Button from '../components/atoms/Button'
|
||||||
import Form from '../components/atoms/Form/Form'
|
import Form from '../components/atoms/Form/Form'
|
||||||
import Input from '../components/atoms/Form/Input'
|
import Input from '../components/atoms/Form/Input'
|
||||||
import Content from '../components/Content'
|
import Route from '../components/templates/Route'
|
||||||
import styles from './Home.module.scss'
|
import styles from './Home.module.scss'
|
||||||
|
|
||||||
interface HomeState {
|
interface HomeState {
|
||||||
@ -19,11 +18,7 @@ class Home extends Component<HomeProps, HomeState> {
|
|||||||
|
|
||||||
public render() {
|
public render() {
|
||||||
return (
|
return (
|
||||||
<div className={styles.home}>
|
<Route title="Home" className={styles.home}>
|
||||||
<Content>
|
|
||||||
<Link to={'/styleguide'}>Styleguide</Link>
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<Form onSubmit={this.searchAssets}>
|
<Form onSubmit={this.searchAssets}>
|
||||||
<Input
|
<Input
|
||||||
type="search"
|
type="search"
|
||||||
@ -34,9 +29,7 @@ class Home extends Component<HomeProps, HomeState> {
|
|||||||
/>
|
/>
|
||||||
<Button>Search</Button>
|
<Button>Search</Button>
|
||||||
</Form>
|
</Form>
|
||||||
</div>
|
</Route>
|
||||||
</Content>
|
|
||||||
</div>
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
@ -1,9 +1,9 @@
|
|||||||
import React, { Component } from 'react'
|
import React, { Component } from 'react'
|
||||||
import Page from '../templates/Page'
|
import Route from '../components/templates/Route'
|
||||||
|
|
||||||
class NotFound extends Component {
|
class NotFound extends Component {
|
||||||
public render() {
|
public render() {
|
||||||
return <Page title="404 - Not Found">Not Found</Page>
|
return <Route title="404 - Not Found">Not Found</Route>
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -1,5 +1,5 @@
|
|||||||
import React, { ChangeEvent, Component, FormEvent } from 'react'
|
import React, { ChangeEvent, Component, FormEvent } from 'react'
|
||||||
import Page from '../templates/Page'
|
import Route from '../components/templates/Route'
|
||||||
import Button from '../components/atoms/Button'
|
import Button from '../components/atoms/Button'
|
||||||
import Form from '../components/atoms/Form/Form'
|
import Form from '../components/atoms/Form/Form'
|
||||||
import Input from '../components/atoms/Form/Input'
|
import Input from '../components/atoms/Form/Input'
|
||||||
@ -116,7 +116,7 @@ class Publish extends Component<{}, PublishState> {
|
|||||||
const entries = Object.entries(form.fields)
|
const entries = Object.entries(form.fields)
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Page title="Publish">
|
<Route title="Publish">
|
||||||
<Form
|
<Form
|
||||||
title={form.title}
|
title={form.title}
|
||||||
description={form.description}
|
description={form.description}
|
||||||
@ -138,7 +138,7 @@ class Publish extends Component<{}, PublishState> {
|
|||||||
}
|
}
|
||||||
</User.Consumer>
|
</User.Consumer>
|
||||||
</Form>
|
</Form>
|
||||||
</Page>
|
</Route>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -1,7 +1,7 @@
|
|||||||
import queryString from 'query-string'
|
import queryString from 'query-string'
|
||||||
import React, { Component } from 'react'
|
import React, { Component } from 'react'
|
||||||
import { Link } from 'react-router-dom'
|
import { Link } from 'react-router-dom'
|
||||||
import Page from '../templates/Page'
|
import Route from '../components/templates/Route'
|
||||||
import { provideOcean } from '../ocean'
|
import { provideOcean } from '../ocean'
|
||||||
|
|
||||||
interface SearchState {
|
interface SearchState {
|
||||||
@ -46,13 +46,13 @@ export default class Search extends Component<SearchProps, SearchState> {
|
|||||||
|
|
||||||
public render() {
|
public render() {
|
||||||
return (
|
return (
|
||||||
<Page title="Search Results" wide>
|
<Route title="Search Results" wide>
|
||||||
{this.state.results.length ? (
|
{this.state.results.length ? (
|
||||||
this.state.results.map(asset => this.renderAssetBox(asset))
|
this.state.results.map(asset => this.renderAssetBox(asset))
|
||||||
) : (
|
) : (
|
||||||
<div>No data sets yet</div>
|
<div>No data sets yet</div>
|
||||||
)}
|
)}
|
||||||
</Page>
|
</Route>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -2,7 +2,7 @@ import React, { Component } from 'react'
|
|||||||
import Button from '../components/atoms/Button'
|
import Button from '../components/atoms/Button'
|
||||||
import Form from '../components/atoms/Form/Form'
|
import Form from '../components/atoms/Form/Form'
|
||||||
import Input from '../components/atoms/Form/Input'
|
import Input from '../components/atoms/Form/Input'
|
||||||
import Page from '../templates/Page'
|
import Route from '../components/templates/Route'
|
||||||
|
|
||||||
import form from '../data/form-styleguide.json'
|
import form from '../data/form-styleguide.json'
|
||||||
|
|
||||||
@ -24,7 +24,7 @@ class Styleguide extends Component {
|
|||||||
public render() {
|
public render() {
|
||||||
const entries = Object.entries(form.fields)
|
const entries = Object.entries(form.fields)
|
||||||
return (
|
return (
|
||||||
<Page title="Styleguide">
|
<Route title="Styleguide">
|
||||||
<Button>I am a button</Button>
|
<Button>I am a button</Button>
|
||||||
<Button primary>I am a primary button</Button>
|
<Button primary>I am a primary button</Button>
|
||||||
<Button href="https://hello.com">
|
<Button href="https://hello.com">
|
||||||
@ -34,7 +34,7 @@ class Styleguide extends Component {
|
|||||||
<Form title={form.title} description={form.description}>
|
<Form title={form.title} description={form.description}>
|
||||||
{this.formFields(entries)}
|
{this.formFields(entries)}
|
||||||
</Form>
|
</Form>
|
||||||
</Page>
|
</Route>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user