import React from 'react'; import Button from '@material-ui/core/Button'; import Typography from '@material-ui/core/Typography'; import List from '@material-ui/core/List'; import Card from '@material-ui/core/Card'; import CardHeader from '@material-ui/core/CardHeader'; import CardContent from '@material-ui/core/CardContent'; import Avatar from '@material-ui/core/Avatar'; import IconButton from '@material-ui/core/IconButton'; import MoreVertIcon from '@material-ui/icons/MoreVert'; import Table from '@material-ui/core/Table'; import TableBody from '@material-ui/core/TableBody'; import TableCell from '@material-ui/core/TableCell'; import TableContainer from '@material-ui/core/TableContainer'; import TableHead from '@material-ui/core/TableHead'; import TableRow from '@material-ui/core/TableRow'; import {makeStyles} from '@material-ui/core/styles'; import {queryStrategies} from "../api/bbgo"; const useStyles = makeStyles((theme) => ({ strategyCard: { margin: theme.spacing(1), }, formControl: { marginTop: theme.spacing(1), marginBottom: theme.spacing(1), minWidth: 120, }, buttons: { display: 'flex', justifyContent: 'flex-end', marginTop: theme.spacing(2), paddingTop: theme.spacing(2), paddingBottom: theme.spacing(2), '& > *': { marginLeft: theme.spacing(1), } }, })); function configToTable(config) { const rows = Object.getOwnPropertyNames(config).map((k) => { return { key: k, val: config[k], } }) return ( Field Value {rows.map((row) => ( {row.key} {row.val} ))}
); } export default function ReviewStrategies({onBack, onNext}) { const classes = useStyles(); const [strategies, setStrategies] = React.useState([]); React.useEffect(() => { queryStrategies((strategies) => { setStrategies(strategies || []) }).catch((err) => { console.error(err); }); }, []) const items = strategies.map((o, i) => { const mounts = o.on || []; delete o.on const config = o[o.strategy] const titleComps = [o.strategy.toUpperCase()] if (config.symbol) { titleComps.push(config.symbol) } const title = titleComps.join(" ") return ( G } action={ } title={title} subheader={`Exchange ${mounts.map((m) => m.toUpperCase())}`} /> Strategy will be executed on session {mounts.join(',')} with the following configuration: {configToTable(config)} ); }) return ( Review Strategies {items}
); }