Lamassu admin server initial commit

This commit is contained in:
Rafael Taranto 2019-03-12 10:49:09 -03:00 committed by Rafael Taranto
parent d083ae5a40
commit fc1951c4b2
158 changed files with 28462 additions and 1606 deletions

View file

@ -0,0 +1,64 @@
import React from 'react'
import { compose, get, keyBy } from 'lodash/fp'
import { Route, Redirect, Switch } from 'react-router-dom'
import Commissions from '../pages/Commissions'
import Logs from '../pages/Logs'
import Locales from '../pages/Locales'
import Funding from '../pages/Funding'
const tree = [
{ key: 'transactions', label: 'Transactions', route: '/transactions' },
// maintenence: { label: 'Maintenence', children: [{ label: 'Locale', route: '/locale' }] },
// analytics: { label: 'Analytics', children: [{ label: 'Locale', route: '/locale' }] },
{
key: 'maintenance',
label: 'Maintenance',
route: '/maintenance',
children: [
{ key: 'logs', label: 'Logs', route: '/maintenance/logs' },
{ key: 'fuding', label: 'Funding', route: '/maintenance/funding' }
]
},
{
key: 'settings',
label: 'Settings',
route: '/settings',
children: [
{ key: 'commissions', label: 'Commissions', route: '/settings/commissions' },
{ key: 'locale', label: 'Locale', route: '/settings/locale' }
]
}
// compliance: { label: 'Compliance', children: [{ label: 'Locale', route: '/locale' }] }
]
const firstChild = key => {
const response = compose(
get(`${key}.children[0].route`),
keyBy('key')
)(tree)
return response
}
const Routes = () => (
<Switch>
<Route exact path='/' />
<Route
path='/settings'
exact
component={() => <Redirect to={firstChild('settings')} />}
/>
<Route
path='/maintenance'
exact
component={() => <Redirect to={firstChild('maintenance')} />}
/>
<Route path='/settings/commissions' component={Commissions} />
<Route path='/settings/locale' component={Locales} />
<Route path='/maintenance/logs' component={Logs} />
<Route path='/maintenance/funding' component={Funding} />
</Switch>
)
export { tree, Routes }