Feat: new profit change icons

This commit is contained in:
csrapr 2021-02-09 21:45:25 +00:00 committed by Josh Harvey
parent 14e34131ba
commit fca38a5636
12 changed files with 154 additions and 44 deletions

View file

@ -2,6 +2,7 @@ import { useQuery } from '@apollo/react-hooks'
import Button from '@material-ui/core/Button' import Button from '@material-ui/core/Button'
import Grid from '@material-ui/core/Grid' import Grid from '@material-ui/core/Grid'
import { makeStyles } from '@material-ui/core/styles' import { makeStyles } from '@material-ui/core/styles'
import classnames from 'classnames'
import gql from 'graphql-tag' import gql from 'graphql-tag'
import * as R from 'ramda' import * as R from 'ramda'
import React from 'react' import React from 'react'
@ -46,6 +47,11 @@ const Alerts = ({ onReset, onExpand, size }) => {
)(data?.machines ?? []) )(data?.machines ?? [])
const alertsLength = alerts.length const alertsLength = alerts.length
const alertsTableContainerClasses = {
[classes.alertsTableContainer]: !showAllItems,
[classes.expandedAlertsTableContainer]: showAllItems
}
return ( return (
<> <>
<div className={classes.container}> <div className={classes.container}>
@ -63,7 +69,10 @@ const Alerts = ({ onReset, onExpand, size }) => {
</Label1> </Label1>
)} )}
</div> </div>
<Grid container spacing={1}> <Grid
className={classnames(alertsTableContainerClasses)}
container
spacing={1}>
<Grid item xs={12} className={classes.alertsTableMargin}> <Grid item xs={12} className={classes.alertsTableMargin}>
<AlertsTable <AlertsTable
numToRender={showAllItems ? alerts.length : NUM_TO_RENDER} numToRender={showAllItems ? alerts.length : NUM_TO_RENDER}

View file

@ -63,6 +63,20 @@ const styles = {
}, },
alertsTableMargin: { alertsTableMargin: {
marginTop: -30 marginTop: -30
},
alertsTableContainer: {
height: 220,
overflowX: 'hidden',
overflowY: 'auto'
},
expandedAlertsTableContainer: {
minHeight: 476,
overflowX: 'hidden',
overflowY: 'auto'
},
centerLabel: {
marginTop: 40,
marginBottom: 0
} }
} }

View file

@ -36,7 +36,7 @@ const Footer = () => {
const [delayedExpand, setDelayedExpand] = useState(null) const [delayedExpand, setDelayedExpand] = useState(null)
const classes = useStyles({ const classes = useStyles({
bigFooter: R.keys(data?.cryptoRates?.withCommissions).length < 8, bigFooter: R.keys(data?.cryptoRates?.withCommissions).length > 8,
expanded expanded
}) })
@ -84,7 +84,7 @@ const Footer = () => {
const localeLanguage = data.config.locale_languages[0] const localeLanguage = data.config.locale_languages[0]
return ( return (
<Grid key={key} item xs={3} className={classes.footerItemContainer}> <Grid key={key} item xs={3}>
<Label2 className={classes.label}> <Label2 className={classes.label}>
{data.cryptoCurrencies[idx].display} {data.cryptoCurrencies[idx].display}
</Label2> </Label2>
@ -122,10 +122,12 @@ const Footer = () => {
} }
return ( return (
<div <>
onMouseEnter={handleMouseEnter} <div
onMouseLeave={handleMouseLeave} className={classes.mouseWatcher}
className={classes.footer}> onMouseLeave={handleMouseLeave}
onMouseEnter={handleMouseEnter}
/>
<div className={classes.content}> <div className={classes.content}>
{!loading && data && ( {!loading && data && (
<Grid container spacing={1}> <Grid container spacing={1}>
@ -137,7 +139,8 @@ const Footer = () => {
</Grid> </Grid>
)} )}
</div> </div>
</div> <div className={classes.footer} />
</>
) )
} }

View file

@ -18,14 +18,15 @@ const styles = {
marginLeft: spacer * 3 marginLeft: spacer * 3
}, },
footer: ({ expanded, bigFooter }) => ({ footer: ({ expanded, bigFooter }) => ({
height: expanded height:
? bigFooter expanded && bigFooter
? spacer * 12 * 3 + spacer * 3
: expanded
? spacer * 12 * 2 + spacer * 2 ? spacer * 12 * 2 + spacer * 2
: spacer * 12 * 3 + spacer * 3 : spacer * 12,
: spacer * 12,
position: 'fixed',
left: 0, left: 0,
bottom: 0, bottom: 0,
position: 'fixed',
width: '100vw', width: '100vw',
backgroundColor: white, backgroundColor: white,
textAlign: 'left', textAlign: 'left',
@ -37,17 +38,28 @@ const styles = {
}, },
content: { content: {
width: 1200, width: 1200,
margin: '0 auto',
backgroundColor: white, backgroundColor: white,
marginTop: 4 zIndex: 1
}, },
footerContainer: { footerContainer: ({ expanded, bigFooter }) => ({
marginLeft: spacer * 5, marginLeft: spacer * 5,
marginBottom: spacer * 2 height: 100,
}, marginTop: expanded && bigFooter ? -300 : expanded ? -200 : -100,
footerItemContainer: { overflow: !expanded && 'hidden'
marginBottom: 18 }),
} mouseWatcher: ({ expanded, bigFooter }) => ({
position: 'fixed',
bottom: 0,
left: 0,
width: '100vw',
height:
expanded && bigFooter
? spacer * 12 * 3 + spacer * 3
: expanded
? spacer * 12 * 2 + spacer * 2
: spacer * 12,
zIndex: 2
})
} }
export default styles export default styles

View file

@ -9,8 +9,9 @@ import * as R from 'ramda'
import React, { useState } from 'react' import React, { useState } from 'react'
import { Label1, Label2 } from 'src/components/typography/index' import { Label1, Label2 } from 'src/components/typography/index'
import { ReactComponent as TriangleDown } from 'src/styling/icons/arrow/triangle_down.svg' import { ReactComponent as PercentDownIcon } from 'src/styling/icons/dashboard/down.svg'
import { ReactComponent as TriangleUp } from 'src/styling/icons/arrow/triangle_up.svg' import { ReactComponent as PercentNeutralIcon } from 'src/styling/icons/dashboard/equal.svg'
import { ReactComponent as PercentUpIcon } from 'src/styling/icons/dashboard/up.svg'
import { fromNamespace } from 'src/utils/config' import { fromNamespace } from 'src/utils/config'
import PercentageChart from './Graphs/PercentageChart' import PercentageChart from './Graphs/PercentageChart'
@ -130,6 +131,7 @@ const SystemPerformance = () => {
const thisTimePeriodProfit = getProfit(transactionsToShow) const thisTimePeriodProfit = getProfit(transactionsToShow)
const previousTimePeriodProfit = getProfit(transactionsLastTimePeriod) const previousTimePeriodProfit = getProfit(transactionsLastTimePeriod)
if (thisTimePeriodProfit === previousTimePeriodProfit) return 0
if (previousTimePeriodProfit === 0) return 100 if (previousTimePeriodProfit === 0) return 100
return Math.round( return Math.round(
@ -155,6 +157,22 @@ const SystemPerformance = () => {
const percentChange = getPercentChange() const percentChange = getPercentChange()
console.log(percentChange)
const percentageClasses = {
[classes.percentDown]: percentChange < 0,
[classes.percentUp]: percentChange > 0,
[classes.percentNeutral]: percentChange === 0
}
const getPercentageIcon = () => {
if (percentChange === 0)
return <PercentNeutralIcon className={classes.directionIcon} />
if (percentChange > 0)
return <PercentUpIcon className={classes.directionIcon} />
return <PercentDownIcon className={classes.directionIcon} />
}
return ( return (
<> <>
<Nav handleSetRange={setSelectedRange} /> <Nav handleSetRange={setSelectedRange} />
@ -193,15 +211,8 @@ const SystemPerformance = () => {
data?.config.locale_fiatCurrency data?.config.locale_fiatCurrency
}`} }`}
</div> </div>
<div <div className={classnames(percentageClasses)}>
className={ {getPercentageIcon()}
percentChange <= 0 ? classes.percentDown : classes.percentUp
}>
{percentChange <= 0 ? (
<TriangleDown className={classes.percentDown} />
) : (
<TriangleUp className={classes.percentUp} />
)}{' '}
{`${percentChange}%`} {`${percentChange}%`}
</div> </div>
</div> </div>

View file

@ -8,7 +8,8 @@ import {
spring4, spring4,
tomato, tomato,
java, java,
neon neon,
comet
} from 'src/styling/variables' } from 'src/styling/variables'
const styles = { const styles = {
@ -84,6 +85,12 @@ const styles = {
color: tomato, color: tomato,
height: 13 height: 13
}, },
percentNeutral: {
fontSize: fontSize3,
fontFamily: fontSecondary,
fontWeight: 700,
color: comet
},
profitContainer: { profitContainer: {
display: 'flex', display: 'flex',
justifyContent: 'space-between', justifyContent: 'space-between',
@ -91,7 +98,8 @@ const styles = {
position: 'relative' position: 'relative'
}, },
gridContainer: { gridContainer: {
marginTop: 30 marginTop: 30,
height: 225
}, },
inSquare: { inSquare: {
width: 8, width: 8,
@ -114,6 +122,12 @@ const styles = {
}, },
dirLabContMargin: { dirLabContMargin: {
marginRight: 20 marginRight: 20
},
directionIcon: {
width: 16,
height: 16,
marginBottom: -2,
marginRight: 4
} }
} }

View file

@ -40,7 +40,8 @@ const styles = {
} }
}, },
buttonLabel: { buttonLabel: {
textAlign: 'center', position: 'absolute',
bottom: 160,
marginBottom: 0 marginBottom: 0
}, },
upperButtonLabel: { upperButtonLabel: {
@ -74,7 +75,12 @@ const styles = {
display: 'inline' display: 'inline'
}, },
machinesTableContainer: { machinesTableContainer: {
marginTop: 23 marginTop: 10,
height: 230
},
expandedMachinesTableContainer: {
marginTop: 10,
height: 442
} }
} }

View file

@ -2,7 +2,9 @@ import { useQuery } from '@apollo/react-hooks'
import Button from '@material-ui/core/Button' import Button from '@material-ui/core/Button'
import Grid from '@material-ui/core/Grid' import Grid from '@material-ui/core/Grid'
import { makeStyles } from '@material-ui/core/styles' import { makeStyles } from '@material-ui/core/styles'
import classnames from 'classnames'
import gql from 'graphql-tag' import gql from 'graphql-tag'
import * as R from 'ramda'
import React from 'react' import React from 'react'
import { cardState as cardState_ } from 'src/components/CollapsibleCard' import { cardState as cardState_ } from 'src/components/CollapsibleCard'
@ -50,8 +52,13 @@ const SystemStatus = ({ onReset, onExpand, size }) => {
const classes = useStyles() const classes = useStyles()
const { data, loading } = useQuery(GET_DATA) const { data, loading } = useQuery(GET_DATA)
const machines = R.path(['machines'])(data) ?? []
const showAllItems = size === cardState_.EXPANDED const showAllItems = size === cardState_.EXPANDED
const machinesTableContainerClasses = {
[classes.machinesTableContainer]: !showAllItems,
[classes.expandedMachinesTableContainer]: showAllItems
}
// const uptime = data?.uptime ?? [{}] // const uptime = data?.uptime ?? [{}]
return ( return (
<> <>
@ -99,15 +106,13 @@ const SystemStatus = ({ onReset, onExpand, size }) => {
<Grid <Grid
container container
spacing={1} spacing={1}
className={classes.machinesTableContainer}> className={classnames(machinesTableContainerClasses)}>
<Grid item xs={12}> <Grid item xs={12}>
<MachinesTable <MachinesTable
numToRender={ numToRender={showAllItems ? Infinity : NUM_TO_RENDER}
showAllItems ? data?.machines.length : NUM_TO_RENDER machines={machines}
}
machines={data?.machines ?? []}
/> />
{!showAllItems && data.machines.length > NUM_TO_RENDER && ( {!showAllItems && machines.length > NUM_TO_RENDER && (
<> <>
<Label1 className={classes.buttonLabel}> <Label1 className={classes.buttonLabel}>
<Button <Button
@ -116,7 +121,7 @@ const SystemStatus = ({ onReset, onExpand, size }) => {
disableRipple disableRipple
disableFocusRipple disableFocusRipple
className={classes.button}> className={classes.button}>
{`Show all (${data.machines.length})`} {`Show all (${machines.length})`}
</Button> </Button>
</Label1> </Label1>
</> </>

View file

@ -301,7 +301,7 @@ const Routes = () => {
return ( return (
<Switch> <Switch>
<Route exact path="/"> <Route exact path="/">
<Redirect to={{ pathname: '/transactions' }} /> <Redirect to={{ pathname: '/dashboard' }} />
</Route> </Route>
<Route path={'/dashboard'}> <Route path={'/dashboard'}>
<Transition <Transition

View file

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="icon/label/icon/down" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Group-6">
<circle id="Oval" fill="#FFECEB" cx="6" cy="6" r="6"></circle>
<g id="Group-5" transform="translate(6.096194, 6.096194) rotate(-315.000000) translate(-6.096194, -6.096194) translate(2.596194, 3.096194)" stroke="#FF584A">
<polyline id="Path-2" points="3.15780333 -4.54747351e-13 6.15780333 2.82998193 3.15780333 5.65996386"></polyline>
<line x1="5.42178888" y1="2.82998193" x2="-5.45696821e-13" y2="2.82998193" id="Path-3"></line>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 837 B

View file

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="icon/label/icon/equal" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Group-6" fill="#EBEFFF">
<circle id="Oval" cx="6" cy="6" r="6"></circle>
</g>
<g id="Group" transform="translate(4.000000, 4.000000)" stroke="#5F668A" stroke-linecap="square">
<line x1="0" y1="1" x2="4" y2="1" id="Line-12"></line>
<line x1="0" y1="3" x2="4" y2="3" id="Line-12"></line>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 663 B

View file

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="icon/label/icon/up" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Group-6">
<circle id="Oval" fill="#ECFBEF" cx="6" cy="6" r="6"></circle>
<g id="Group-5" transform="translate(6.096194, 6.096194) rotate(-45.000000) translate(-6.096194, -6.096194) translate(2.596194, 3.096194)" stroke="#00CD5A">
<polyline id="Path-2" points="3.15780333 -4.54747351e-13 6.15780333 2.82998193 3.15780333 5.65996386"></polyline>
<line x1="5.42178888" y1="2.82998193" x2="-5.45696821e-13" y2="2.82998193" id="Path-3"></line>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 834 B