chore: use proper name convention for build tools
This commit is contained in:
parent
62f39f3561
commit
d646aee24b
283 changed files with 353 additions and 422 deletions
|
|
@ -15,6 +15,6 @@
|
||||||
<body>
|
<body>
|
||||||
<noscript>You need to enable JavaScript to run this app.</noscript>
|
<noscript>You need to enable JavaScript to run this app.</noscript>
|
||||||
<div id="root" class="root"></div>
|
<div id="root" class="root"></div>
|
||||||
<script type="module" src="/src/index.js"></script>
|
<script type="module" src="/src/index.jsx"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
||||||
|
|
@ -83,12 +83,6 @@
|
||||||
"pre-commit": "lint-staged"
|
"pre-commit": "lint-staged"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"lint-staged": {
|
|
||||||
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
|
|
||||||
"eslint --fix",
|
|
||||||
"git add"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "vite --force",
|
"start": "vite --force",
|
||||||
"build": "vite build",
|
"build": "vite build",
|
||||||
|
|
|
||||||
|
|
@ -17,16 +17,16 @@ import {
|
||||||
useHistory,
|
useHistory,
|
||||||
BrowserRouter as Router
|
BrowserRouter as Router
|
||||||
} from 'react-router-dom'
|
} from 'react-router-dom'
|
||||||
|
|
||||||
import AppContext from 'src/AppContext'
|
|
||||||
import Header from 'src/components/layout/Header'
|
import Header from 'src/components/layout/Header'
|
||||||
import Sidebar from 'src/components/layout/Sidebar'
|
import Sidebar from 'src/components/layout/Sidebar'
|
||||||
import TitleSection from 'src/components/layout/TitleSection'
|
import TitleSection from 'src/components/layout/TitleSection'
|
||||||
import { tree, hasSidebar, Routes, getParent } from 'src/routing/routes'
|
import { tree, hasSidebar, Routes, getParent } from 'src/routing/routes'
|
||||||
|
import ApolloProvider from 'src/utils/apollo'
|
||||||
|
|
||||||
|
import AppContext from 'src/AppContext'
|
||||||
import global from 'src/styling/global'
|
import global from 'src/styling/global'
|
||||||
import theme from 'src/styling/theme'
|
import theme from 'src/styling/theme'
|
||||||
import { backgroundColor, mainWidth } from 'src/styling/variables'
|
import { backgroundColor, mainWidth } from 'src/styling/variables'
|
||||||
import ApolloProvider from 'src/utils/apollo'
|
|
||||||
|
|
||||||
if (process.env.NODE_ENV !== 'production') {
|
if (process.env.NODE_ENV !== 'production') {
|
||||||
// const whyDidYouRender = require('@welldone-software/why-did-you-render')
|
// const whyDidYouRender = require('@welldone-software/why-did-you-render')
|
||||||
|
|
@ -3,7 +3,6 @@ import React, { memo } from 'react'
|
||||||
import ReactCarousel from 'react-material-ui-carousel'
|
import ReactCarousel from 'react-material-ui-carousel'
|
||||||
import LeftArrow from 'src/styling/icons/arrow/carousel-left-arrow.svg?react'
|
import LeftArrow from 'src/styling/icons/arrow/carousel-left-arrow.svg?react'
|
||||||
import RightArrow from 'src/styling/icons/arrow/carousel-right-arrow.svg?react'
|
import RightArrow from 'src/styling/icons/arrow/carousel-right-arrow.svg?react'
|
||||||
|
|
||||||
import { URI } from 'src/utils/apollo'
|
import { URI } from 'src/utils/apollo'
|
||||||
|
|
||||||
const useStyles = makeStyles({
|
const useStyles = makeStyles({
|
||||||
|
|
@ -6,11 +6,11 @@ import {
|
||||||
InputLabel
|
InputLabel
|
||||||
} from '@material-ui/core'
|
} from '@material-ui/core'
|
||||||
import React, { memo, useState } from 'react'
|
import React, { memo, useState } from 'react'
|
||||||
|
import { H4, P } from 'src/components/typography'
|
||||||
import CloseIcon from 'src/styling/icons/action/close/zodiac.svg?react'
|
import CloseIcon from 'src/styling/icons/action/close/zodiac.svg?react'
|
||||||
|
|
||||||
import { Button, IconButton } from 'src/components/buttons'
|
import { Button, IconButton } from 'src/components/buttons'
|
||||||
import { TextInput } from 'src/components/inputs'
|
import { TextInput } from 'src/components/inputs'
|
||||||
import { H4, P } from 'src/components/typography'
|
|
||||||
import { spacer } from 'src/styling/variables'
|
import { spacer } from 'src/styling/variables'
|
||||||
|
|
||||||
import ErrorMessage from './ErrorMessage'
|
import ErrorMessage from './ErrorMessage'
|
||||||
|
|
@ -5,10 +5,10 @@ import {
|
||||||
makeStyles
|
makeStyles
|
||||||
} from '@material-ui/core'
|
} from '@material-ui/core'
|
||||||
import React from 'react'
|
import React from 'react'
|
||||||
|
import { H4, P } from 'src/components/typography'
|
||||||
import CloseIcon from 'src/styling/icons/action/close/zodiac.svg?react'
|
import CloseIcon from 'src/styling/icons/action/close/zodiac.svg?react'
|
||||||
|
|
||||||
import { Button, IconButton } from 'src/components/buttons'
|
import { Button, IconButton } from 'src/components/buttons'
|
||||||
import { H4, P } from 'src/components/typography'
|
|
||||||
import { spacer } from 'src/styling/variables'
|
import { spacer } from 'src/styling/variables'
|
||||||
|
|
||||||
import ErrorMessage from './ErrorMessage'
|
import ErrorMessage from './ErrorMessage'
|
||||||
|
|
@ -1,10 +1,10 @@
|
||||||
import { makeStyles, ClickAwayListener } from '@material-ui/core'
|
import { makeStyles, ClickAwayListener } from '@material-ui/core'
|
||||||
import classnames from 'classnames'
|
import classnames from 'classnames'
|
||||||
import React, { memo, useState } from 'react'
|
import React, { memo, useState } from 'react'
|
||||||
|
import Popper from 'src/components/Popper'
|
||||||
import ZoomIconInverse from 'src/styling/icons/circle buttons/search/white.svg?react'
|
import ZoomIconInverse from 'src/styling/icons/circle buttons/search/white.svg?react'
|
||||||
import ZoomIcon from 'src/styling/icons/circle buttons/search/zodiac.svg?react'
|
import ZoomIcon from 'src/styling/icons/circle buttons/search/zodiac.svg?react'
|
||||||
|
|
||||||
import Popper from 'src/components/Popper'
|
|
||||||
import { FeatureButton } from 'src/components/buttons'
|
import { FeatureButton } from 'src/components/buttons'
|
||||||
|
|
||||||
import imagePopperStyles from './ImagePopper.styles'
|
import imagePopperStyles from './ImagePopper.styles'
|
||||||
|
|
@ -1,8 +1,7 @@
|
||||||
import { Box, makeStyles } from '@material-ui/core'
|
import { Box, makeStyles } from '@material-ui/core'
|
||||||
import React from 'react'
|
import React from 'react'
|
||||||
import WarningIcon from 'src/styling/icons/warning-icon/comet.svg?react'
|
|
||||||
|
|
||||||
import { Label1 } from 'src/components/typography'
|
import { Label1 } from 'src/components/typography'
|
||||||
|
import WarningIcon from 'src/styling/icons/warning-icon/comet.svg?react'
|
||||||
|
|
||||||
const useStyles = makeStyles({
|
const useStyles = makeStyles({
|
||||||
message: ({ width }) => ({
|
message: ({ width }) => ({
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
import { Dialog, DialogContent, makeStyles } from '@material-ui/core'
|
import { Dialog, DialogContent, makeStyles } from '@material-ui/core'
|
||||||
import React, { memo } from 'react'
|
import React, { memo } from 'react'
|
||||||
|
import { H1 } from 'src/components/typography'
|
||||||
import CloseIcon from 'src/styling/icons/action/close/zodiac.svg?react'
|
import CloseIcon from 'src/styling/icons/action/close/zodiac.svg?react'
|
||||||
|
|
||||||
import { IconButton } from 'src/components/buttons'
|
import { IconButton } from 'src/components/buttons'
|
||||||
import { H1 } from 'src/components/typography'
|
|
||||||
import { spacer } from 'src/styling/variables'
|
import { spacer } from 'src/styling/variables'
|
||||||
|
|
||||||
const useStyles = makeStyles({
|
const useStyles = makeStyles({
|
||||||
|
|
@ -1,10 +1,10 @@
|
||||||
import { makeStyles, Modal as MaterialModal, Paper } from '@material-ui/core'
|
import { makeStyles, Modal as MaterialModal, Paper } from '@material-ui/core'
|
||||||
import classnames from 'classnames'
|
import classnames from 'classnames'
|
||||||
import React from 'react'
|
import React from 'react'
|
||||||
|
import { H1, H4 } from 'src/components/typography'
|
||||||
import CloseIcon from 'src/styling/icons/action/close/zodiac.svg?react'
|
import CloseIcon from 'src/styling/icons/action/close/zodiac.svg?react'
|
||||||
|
|
||||||
import { IconButton } from 'src/components/buttons'
|
import { IconButton } from 'src/components/buttons'
|
||||||
import { H1, H4 } from 'src/components/typography'
|
|
||||||
|
|
||||||
const styles = {
|
const styles = {
|
||||||
modal: {
|
modal: {
|
||||||
|
|
@ -3,14 +3,13 @@ import { makeStyles } from '@material-ui/core/styles'
|
||||||
import gql from 'graphql-tag'
|
import gql from 'graphql-tag'
|
||||||
import * as R from 'ramda'
|
import * as R from 'ramda'
|
||||||
import React, { useState, useEffect } from 'react'
|
import React, { useState, useEffect } from 'react'
|
||||||
|
import ActionButton from 'src/components/buttons/ActionButton'
|
||||||
|
import { H5 } from 'src/components/typography'
|
||||||
import NotificationIconZodiac from 'src/styling/icons/menu/notification-zodiac.svg?react'
|
import NotificationIconZodiac from 'src/styling/icons/menu/notification-zodiac.svg?react'
|
||||||
import ClearAllIconInverse from 'src/styling/icons/stage/spring/empty.svg?react'
|
import ClearAllIconInverse from 'src/styling/icons/stage/spring/empty.svg?react'
|
||||||
import ClearAllIcon from 'src/styling/icons/stage/zodiac/empty.svg?react'
|
import ClearAllIcon from 'src/styling/icons/stage/zodiac/empty.svg?react'
|
||||||
import ShowUnreadIcon from 'src/styling/icons/stage/zodiac/full.svg?react'
|
import ShowUnreadIcon from 'src/styling/icons/stage/zodiac/full.svg?react'
|
||||||
|
|
||||||
import ActionButton from 'src/components/buttons/ActionButton'
|
|
||||||
import { H5 } from 'src/components/typography'
|
|
||||||
|
|
||||||
import styles from './NotificationCenter.styles'
|
import styles from './NotificationCenter.styles'
|
||||||
import NotificationRow from './NotificationRow'
|
import NotificationRow from './NotificationRow'
|
||||||
|
|
||||||
|
|
@ -3,12 +3,11 @@ import classnames from 'classnames'
|
||||||
import prettyMs from 'pretty-ms'
|
import prettyMs from 'pretty-ms'
|
||||||
import * as R from 'ramda'
|
import * as R from 'ramda'
|
||||||
import React from 'react'
|
import React from 'react'
|
||||||
|
import { Label1, Label2, TL2 } from 'src/components/typography'
|
||||||
import Wrench from 'src/styling/icons/action/wrench/zodiac.svg?react'
|
import Wrench from 'src/styling/icons/action/wrench/zodiac.svg?react'
|
||||||
import Transaction from 'src/styling/icons/arrow/transaction.svg?react'
|
import Transaction from 'src/styling/icons/arrow/transaction.svg?react'
|
||||||
import WarningIcon from 'src/styling/icons/warning-icon/tomato.svg?react'
|
import WarningIcon from 'src/styling/icons/warning-icon/tomato.svg?react'
|
||||||
|
|
||||||
import { Label1, Label2, TL2 } from 'src/components/typography'
|
|
||||||
|
|
||||||
import styles from './NotificationCenter.styles'
|
import styles from './NotificationCenter.styles'
|
||||||
const useStyles = makeStyles(styles)
|
const useStyles = makeStyles(styles)
|
||||||
|
|
||||||
|
|
@ -4,9 +4,8 @@ import { makeStyles } from '@material-ui/core/styles'
|
||||||
import MAutocomplete from '@material-ui/lab/Autocomplete'
|
import MAutocomplete from '@material-ui/lab/Autocomplete'
|
||||||
import classnames from 'classnames'
|
import classnames from 'classnames'
|
||||||
import React, { memo, useState } from 'react'
|
import React, { memo, useState } from 'react'
|
||||||
import SearchIcon from 'src/styling/icons/circle buttons/search/zodiac.svg?react'
|
|
||||||
|
|
||||||
import { P } from 'src/components/typography'
|
import { P } from 'src/components/typography'
|
||||||
|
import SearchIcon from 'src/styling/icons/circle buttons/search/zodiac.svg?react'
|
||||||
|
|
||||||
import styles from './SearchBox.styles'
|
import styles from './SearchBox.styles'
|
||||||
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
import { makeStyles } from '@material-ui/core'
|
import { makeStyles } from '@material-ui/core'
|
||||||
import React from 'react'
|
import React from 'react'
|
||||||
|
import Chip from 'src/components/Chip'
|
||||||
|
import { P, Label3 } from 'src/components/typography'
|
||||||
import CloseIcon from 'src/styling/icons/action/close/zodiac.svg?react'
|
import CloseIcon from 'src/styling/icons/action/close/zodiac.svg?react'
|
||||||
import FilterIcon from 'src/styling/icons/button/filter/white.svg?react'
|
import FilterIcon from 'src/styling/icons/button/filter/white.svg?react'
|
||||||
import ReverseFilterIcon from 'src/styling/icons/button/filter/zodiac.svg?react'
|
import ReverseFilterIcon from 'src/styling/icons/button/filter/zodiac.svg?react'
|
||||||
|
|
||||||
import Chip from 'src/components/Chip'
|
|
||||||
import { ActionButton } from 'src/components/buttons'
|
import { ActionButton } from 'src/components/buttons'
|
||||||
import { P, Label3 } from 'src/components/typography'
|
|
||||||
import { onlyFirstToUpper, singularOrPlural } from 'src/utils/string'
|
import { onlyFirstToUpper, singularOrPlural } from 'src/utils/string'
|
||||||
|
|
||||||
import { chipStyles, styles } from './SearchFilter.styles'
|
import { chipStyles, styles } from './SearchFilter.styles'
|
||||||
|
|
@ -1,9 +1,8 @@
|
||||||
import { makeStyles, ClickAwayListener } from '@material-ui/core'
|
import { makeStyles, ClickAwayListener } from '@material-ui/core'
|
||||||
import * as R from 'ramda'
|
import * as R from 'ramda'
|
||||||
import React, { useState, memo } from 'react'
|
import React, { useState, memo } from 'react'
|
||||||
import HelpIcon from 'src/styling/icons/action/help/zodiac.svg?react'
|
|
||||||
|
|
||||||
import Popper from 'src/components/Popper'
|
import Popper from 'src/components/Popper'
|
||||||
|
import HelpIcon from 'src/styling/icons/action/help/zodiac.svg?react'
|
||||||
|
|
||||||
const useStyles = makeStyles({
|
const useStyles = makeStyles({
|
||||||
transparentButton: {
|
transparentButton: {
|
||||||
|
|
@ -103,7 +102,7 @@ const HoverableTooltip = memo(({ parentElements, children, width }) => {
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
onMouseEnter={handler.handleOpenHelpPopper}
|
onMouseEnter={handler.handleOpenHelpPopper}
|
||||||
onMouseLeave={handler.handleCloseHelpPopper}>
|
onMouseLeave={handler.handleCloseHelpPopper}
|
||||||
className={handler.classes.transparentButton}>
|
className={handler.classes.transparentButton}>
|
||||||
<HelpIcon />
|
<HelpIcon />
|
||||||
</button>
|
</button>
|
||||||
|
|
@ -3,17 +3,17 @@ import classnames from 'classnames'
|
||||||
import { useFormikContext, Form, Formik, Field as FormikField } from 'formik'
|
import { useFormikContext, Form, Formik, Field as FormikField } from 'formik'
|
||||||
import * as R from 'ramda'
|
import * as R from 'ramda'
|
||||||
import React, { useState, memo } from 'react'
|
import React, { useState, memo } from 'react'
|
||||||
|
import PromptWhenDirty from 'src/components/PromptWhenDirty'
|
||||||
|
import { H4 } from 'src/components/typography'
|
||||||
import EditIconDisabled from 'src/styling/icons/action/edit/disabled.svg?react'
|
import EditIconDisabled from 'src/styling/icons/action/edit/disabled.svg?react'
|
||||||
import EditIcon from 'src/styling/icons/action/edit/enabled.svg?react'
|
import EditIcon from 'src/styling/icons/action/edit/enabled.svg?react'
|
||||||
import FalseIcon from 'src/styling/icons/table/false.svg?react'
|
import FalseIcon from 'src/styling/icons/table/false.svg?react'
|
||||||
import TrueIcon from 'src/styling/icons/table/true.svg?react'
|
import TrueIcon from 'src/styling/icons/table/true.svg?react'
|
||||||
import * as Yup from 'yup'
|
import * as Yup from 'yup'
|
||||||
|
|
||||||
import PromptWhenDirty from 'src/components/PromptWhenDirty'
|
|
||||||
import { Link, IconButton } from 'src/components/buttons'
|
import { Link, IconButton } from 'src/components/buttons'
|
||||||
import { RadioGroup } from 'src/components/inputs/formik'
|
import { RadioGroup } from 'src/components/inputs/formik'
|
||||||
import { Table, TableBody, TableRow, TableCell } from 'src/components/table'
|
import { Table, TableBody, TableRow, TableCell } from 'src/components/table'
|
||||||
import { H4 } from 'src/components/typography'
|
|
||||||
|
|
||||||
import { booleanPropertiesTableStyles } from './BooleanPropertiesTable.styles'
|
import { booleanPropertiesTableStyles } from './BooleanPropertiesTable.styles'
|
||||||
|
|
||||||
|
|
@ -2,8 +2,8 @@ import { ClickAwayListener } from '@material-ui/core'
|
||||||
import { makeStyles } from '@material-ui/core/styles'
|
import { makeStyles } from '@material-ui/core/styles'
|
||||||
import classnames from 'classnames'
|
import classnames from 'classnames'
|
||||||
import React, { useState, memo } from 'react'
|
import React, { useState, memo } from 'react'
|
||||||
|
|
||||||
import Popover from 'src/components/Popper'
|
import Popover from 'src/components/Popper'
|
||||||
|
|
||||||
import typographyStyles from 'src/components/typography/styles'
|
import typographyStyles from 'src/components/typography/styles'
|
||||||
import {
|
import {
|
||||||
subheaderColor,
|
subheaderColor,
|
||||||
|
|
@ -1,9 +1,8 @@
|
||||||
import { makeStyles } from '@material-ui/core/styles'
|
import { makeStyles } from '@material-ui/core/styles'
|
||||||
import classnames from 'classnames'
|
import classnames from 'classnames'
|
||||||
import React, { memo, useState } from 'react'
|
import React, { memo, useState } from 'react'
|
||||||
import CancelIconInverse from 'src/styling/icons/button/cancel/white.svg?react'
|
|
||||||
|
|
||||||
import { H4 } from 'src/components/typography'
|
import { H4 } from 'src/components/typography'
|
||||||
|
import CancelIconInverse from 'src/styling/icons/button/cancel/white.svg?react'
|
||||||
|
|
||||||
import subpageButtonStyles from './SubpageButton.styles'
|
import subpageButtonStyles from './SubpageButton.styles'
|
||||||
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
import { makeStyles } from '@material-ui/core/styles'
|
import { makeStyles } from '@material-ui/core/styles'
|
||||||
import React, { useState, memo } from 'react'
|
import React, { useState, memo } from 'react'
|
||||||
|
import { H4, P } from 'src/components/typography'
|
||||||
import EditIconDisabled from 'src/styling/icons/action/edit/disabled.svg?react'
|
import EditIconDisabled from 'src/styling/icons/action/edit/disabled.svg?react'
|
||||||
import EditIcon from 'src/styling/icons/action/edit/enabled.svg?react'
|
import EditIcon from 'src/styling/icons/action/edit/enabled.svg?react'
|
||||||
|
|
||||||
import { Link } from 'src/components/buttons'
|
import { Link } from 'src/components/buttons'
|
||||||
import { RadioGroup } from 'src/components/inputs'
|
import { RadioGroup } from 'src/components/inputs'
|
||||||
import { H4, P } from 'src/components/typography'
|
|
||||||
|
|
||||||
import { editablePropertyStyles } from './EditableProperty.styles'
|
import { editablePropertyStyles } from './EditableProperty.styles'
|
||||||
|
|
||||||
|
|
@ -2,13 +2,13 @@ import { makeStyles } from '@material-ui/core'
|
||||||
import classnames from 'classnames'
|
import classnames from 'classnames'
|
||||||
import * as R from 'ramda'
|
import * as R from 'ramda'
|
||||||
import React, { useContext } from 'react'
|
import React, { useContext } from 'react'
|
||||||
|
|
||||||
import {
|
import {
|
||||||
Td,
|
Td,
|
||||||
THead,
|
THead,
|
||||||
TDoubleLevelHead,
|
TDoubleLevelHead,
|
||||||
ThDoubleLevel
|
ThDoubleLevel
|
||||||
} from 'src/components/fake-table/Table'
|
} from 'src/components/fake-table/Table'
|
||||||
|
|
||||||
import { sentenceCase } from 'src/utils/string'
|
import { sentenceCase } from 'src/utils/string'
|
||||||
|
|
||||||
import TableCtx from './Context'
|
import TableCtx from './Context'
|
||||||
|
|
@ -3,17 +3,17 @@ import classnames from 'classnames'
|
||||||
import { Field, useFormikContext } from 'formik'
|
import { Field, useFormikContext } from 'formik'
|
||||||
import * as R from 'ramda'
|
import * as R from 'ramda'
|
||||||
import React, { useContext, useState } from 'react'
|
import React, { useContext, useState } from 'react'
|
||||||
|
import { DeleteDialog } from 'src/components/DeleteDialog'
|
||||||
|
import { Td, Tr } from 'src/components/fake-table/Table'
|
||||||
|
import { Label2 } from 'src/components/typography'
|
||||||
import DisabledDeleteIcon from 'src/styling/icons/action/delete/disabled.svg?react'
|
import DisabledDeleteIcon from 'src/styling/icons/action/delete/disabled.svg?react'
|
||||||
import DeleteIcon from 'src/styling/icons/action/delete/enabled.svg?react'
|
import DeleteIcon from 'src/styling/icons/action/delete/enabled.svg?react'
|
||||||
import DisabledEditIcon from 'src/styling/icons/action/edit/disabled.svg?react'
|
import DisabledEditIcon from 'src/styling/icons/action/edit/disabled.svg?react'
|
||||||
import EditIcon from 'src/styling/icons/action/edit/enabled.svg?react'
|
import EditIcon from 'src/styling/icons/action/edit/enabled.svg?react'
|
||||||
import StripesSvg from 'src/styling/icons/stripes.svg?react'
|
import StripesSvg from 'src/styling/icons/stripes.svg?react'
|
||||||
|
|
||||||
import { DeleteDialog } from 'src/components/DeleteDialog'
|
|
||||||
import { Link, IconButton } from 'src/components/buttons'
|
import { Link, IconButton } from 'src/components/buttons'
|
||||||
import { Td, Tr } from 'src/components/fake-table/Table'
|
|
||||||
import { Switch } from 'src/components/inputs'
|
import { Switch } from 'src/components/inputs'
|
||||||
import { Label2 } from 'src/components/typography'
|
|
||||||
|
|
||||||
import TableCtx from './Context'
|
import TableCtx from './Context'
|
||||||
import styles from './Row.styles'
|
import styles from './Row.styles'
|
||||||
|
|
@ -2,13 +2,13 @@ import { makeStyles } from '@material-ui/core'
|
||||||
import { Form, Formik } from 'formik'
|
import { Form, Formik } from 'formik'
|
||||||
import * as R from 'ramda'
|
import * as R from 'ramda'
|
||||||
import React, { useState, useEffect } from 'react'
|
import React, { useState, useEffect } from 'react'
|
||||||
import { v4 } from 'uuid'
|
|
||||||
|
|
||||||
import PromptWhenDirty from 'src/components/PromptWhenDirty'
|
import PromptWhenDirty from 'src/components/PromptWhenDirty'
|
||||||
import Link from 'src/components/buttons/Link.js'
|
import Link from 'src/components/buttons/Link'
|
||||||
import { AddButton } from 'src/components/buttons/index.js'
|
|
||||||
import { TBody, Table } from 'src/components/fake-table/Table'
|
import { TBody, Table } from 'src/components/fake-table/Table'
|
||||||
import { Info2, TL1 } from 'src/components/typography'
|
import { Info2, TL1 } from 'src/components/typography'
|
||||||
|
import { v4 } from 'uuid'
|
||||||
|
|
||||||
|
import { AddButton } from 'src/components/buttons/index'
|
||||||
|
|
||||||
import TableCtx from './Context'
|
import TableCtx from './Context'
|
||||||
import Header from './Header'
|
import Header from './Header'
|
||||||
|
|
@ -3,9 +3,9 @@ import MAutocomplete from '@material-ui/lab/Autocomplete'
|
||||||
import sort from 'match-sorter'
|
import sort from 'match-sorter'
|
||||||
import * as R from 'ramda'
|
import * as R from 'ramda'
|
||||||
import React from 'react'
|
import React from 'react'
|
||||||
|
|
||||||
import { HoverableTooltip } from 'src/components/Tooltip'
|
import { HoverableTooltip } from 'src/components/Tooltip'
|
||||||
import { P } from 'src/components/typography'
|
import { P } from 'src/components/typography'
|
||||||
|
|
||||||
import { errorColor, orangeYellow, spring4 } from 'src/styling/variables'
|
import { errorColor, orangeYellow, spring4 } from 'src/styling/variables'
|
||||||
|
|
||||||
import TextInput from './TextInput'
|
import TextInput from './TextInput'
|
||||||
|
|
@ -3,9 +3,9 @@ import { makeStyles } from '@material-ui/core/styles'
|
||||||
import CheckBoxIcon from '@material-ui/icons/CheckBox'
|
import CheckBoxIcon from '@material-ui/icons/CheckBox'
|
||||||
import CheckBoxOutlineBlankIcon from '@material-ui/icons/CheckBoxOutlineBlank'
|
import CheckBoxOutlineBlankIcon from '@material-ui/icons/CheckBoxOutlineBlank'
|
||||||
import React from 'react'
|
import React from 'react'
|
||||||
|
import { Label2, Info3 } from 'src/components/typography'
|
||||||
import WarningIcon from 'src/styling/icons/warning-icon/comet.svg?react'
|
import WarningIcon from 'src/styling/icons/warning-icon/comet.svg?react'
|
||||||
|
|
||||||
import { Label2, Info3 } from 'src/components/typography'
|
|
||||||
import {
|
import {
|
||||||
fontSize2,
|
fontSize2,
|
||||||
fontSize3,
|
fontSize3,
|
||||||
|
|
@ -6,8 +6,8 @@ import {
|
||||||
} from '@material-ui/core'
|
} from '@material-ui/core'
|
||||||
import classnames from 'classnames'
|
import classnames from 'classnames'
|
||||||
import React from 'react'
|
import React from 'react'
|
||||||
|
|
||||||
import { Label1 } from 'src/components/typography'
|
import { Label1 } from 'src/components/typography'
|
||||||
|
|
||||||
import { offColor } from 'src/styling/variables'
|
import { offColor } from 'src/styling/variables'
|
||||||
const styles = {
|
const styles = {
|
||||||
label: {
|
label: {
|
||||||
|
|
@ -2,8 +2,8 @@ import { makeStyles } from '@material-ui/core'
|
||||||
import { ToggleButtonGroup as MUIToggleButtonGroup } from '@material-ui/lab'
|
import { ToggleButtonGroup as MUIToggleButtonGroup } from '@material-ui/lab'
|
||||||
import ToggleButton from '@material-ui/lab/ToggleButton'
|
import ToggleButton from '@material-ui/lab/ToggleButton'
|
||||||
import React from 'react'
|
import React from 'react'
|
||||||
|
|
||||||
import { H4, P } from 'src/components/typography'
|
import { H4, P } from 'src/components/typography'
|
||||||
|
|
||||||
import { backgroundColor, comet } from 'src/styling/variables'
|
import { backgroundColor, comet } from 'src/styling/variables'
|
||||||
const styles = {
|
const styles = {
|
||||||
noTextTransform: {
|
noTextTransform: {
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
import { makeStyles } from '@material-ui/core/styles'
|
import { makeStyles } from '@material-ui/core/styles'
|
||||||
import classnames from 'classnames'
|
import classnames from 'classnames'
|
||||||
import React from 'react'
|
import React from 'react'
|
||||||
|
|
||||||
import Chip from 'src/components/Chip'
|
import Chip from 'src/components/Chip'
|
||||||
import { Info2, Label1, Label2 } from 'src/components/typography'
|
import { Info2, Label1, Label2 } from 'src/components/typography'
|
||||||
|
|
||||||
import { numberToFiatAmount } from 'src/utils/number'
|
import { numberToFiatAmount } from 'src/utils/number'
|
||||||
|
|
||||||
import { cashboxStyles, gridStyles } from './Cashbox.styles'
|
import { cashboxStyles, gridStyles } from './Cashbox.styles'
|
||||||
|
|
@ -1,7 +1,6 @@
|
||||||
import { makeStyles } from '@material-ui/core'
|
import { makeStyles } from '@material-ui/core'
|
||||||
import classNames from 'classnames'
|
import classNames from 'classnames'
|
||||||
import React, { memo, useState } from 'react'
|
import React, { memo, useState } from 'react'
|
||||||
|
|
||||||
import { CashOut } from 'src/components/inputs/cashbox/Cashbox'
|
import { CashOut } from 'src/components/inputs/cashbox/Cashbox'
|
||||||
|
|
||||||
import { NumberInput } from '../base'
|
import { NumberInput } from '../base'
|
||||||
|
|
@ -7,14 +7,14 @@ import gql from 'graphql-tag'
|
||||||
import * as R from 'ramda'
|
import * as R from 'ramda'
|
||||||
import React, { memo, useState, useEffect, useRef } from 'react'
|
import React, { memo, useState, useEffect, useRef } from 'react'
|
||||||
import { NavLink, useHistory } from 'react-router-dom'
|
import { NavLink, useHistory } from 'react-router-dom'
|
||||||
|
import ActionButton from 'src/components/buttons/ActionButton'
|
||||||
|
import { H4 } from 'src/components/typography'
|
||||||
import AddIconReverse from 'src/styling/icons/button/add/white.svg?react'
|
import AddIconReverse from 'src/styling/icons/button/add/white.svg?react'
|
||||||
import AddIcon from 'src/styling/icons/button/add/zodiac.svg?react'
|
import AddIcon from 'src/styling/icons/button/add/zodiac.svg?react'
|
||||||
import Logo from 'src/styling/icons/menu/logo.svg?react'
|
import Logo from 'src/styling/icons/menu/logo.svg?react'
|
||||||
import NotificationIcon from 'src/styling/icons/menu/notification.svg?react'
|
import NotificationIcon from 'src/styling/icons/menu/notification.svg?react'
|
||||||
|
|
||||||
import NotificationCenter from 'src/components/NotificationCenter'
|
import NotificationCenter from 'src/components/NotificationCenter'
|
||||||
import ActionButton from 'src/components/buttons/ActionButton'
|
|
||||||
import { H4 } from 'src/components/typography'
|
|
||||||
import AddMachine from 'src/pages/AddMachine'
|
import AddMachine from 'src/pages/AddMachine'
|
||||||
|
|
||||||
import styles from './Header.styles'
|
import styles from './Header.styles'
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
import { makeStyles } from '@material-ui/core'
|
import { makeStyles } from '@material-ui/core'
|
||||||
import React from 'react'
|
import React from 'react'
|
||||||
|
|
||||||
import ErrorMessage from 'src/components/ErrorMessage'
|
import ErrorMessage from 'src/components/ErrorMessage'
|
||||||
import Subtitle from 'src/components/Subtitle'
|
import Subtitle from 'src/components/Subtitle'
|
||||||
|
|
||||||
|
|
@ -1,12 +1,11 @@
|
||||||
import { makeStyles } from '@material-ui/core/styles'
|
import { makeStyles } from '@material-ui/core/styles'
|
||||||
import classnames from 'classnames'
|
import classnames from 'classnames'
|
||||||
import React from 'react'
|
import React from 'react'
|
||||||
|
import { P } from 'src/components/typography'
|
||||||
import CompleteStageIconZodiac from 'src/styling/icons/stage/zodiac/complete.svg?react'
|
import CompleteStageIconZodiac from 'src/styling/icons/stage/zodiac/complete.svg?react'
|
||||||
import CurrentStageIconZodiac from 'src/styling/icons/stage/zodiac/current.svg?react'
|
import CurrentStageIconZodiac from 'src/styling/icons/stage/zodiac/current.svg?react'
|
||||||
import EmptyStageIconZodiac from 'src/styling/icons/stage/zodiac/empty.svg?react'
|
import EmptyStageIconZodiac from 'src/styling/icons/stage/zodiac/empty.svg?react'
|
||||||
|
|
||||||
import { P } from 'src/components/typography'
|
|
||||||
|
|
||||||
import styles from './Sidebar.styles'
|
import styles from './Sidebar.styles'
|
||||||
|
|
||||||
const useStyles = makeStyles(styles)
|
const useStyles = makeStyles(styles)
|
||||||
|
|
@ -2,12 +2,12 @@ import { makeStyles, Box } from '@material-ui/core'
|
||||||
import classnames from 'classnames'
|
import classnames from 'classnames'
|
||||||
import * as R from 'ramda'
|
import * as R from 'ramda'
|
||||||
import React from 'react'
|
import React from 'react'
|
||||||
|
|
||||||
import ErrorMessage from 'src/components/ErrorMessage'
|
import ErrorMessage from 'src/components/ErrorMessage'
|
||||||
import Title from 'src/components/Title'
|
import Title from 'src/components/Title'
|
||||||
import { SubpageButton } from 'src/components/buttons'
|
|
||||||
import { Info1, Label1 } from 'src/components/typography'
|
import { Info1, Label1 } from 'src/components/typography'
|
||||||
|
|
||||||
|
import { SubpageButton } from 'src/components/buttons'
|
||||||
|
|
||||||
import styles from './TitleSection.styles'
|
import styles from './TitleSection.styles'
|
||||||
|
|
||||||
const useStyles = makeStyles(styles)
|
const useStyles = makeStyles(styles)
|
||||||
|
|
@ -4,12 +4,12 @@ import { subMinutes } from 'date-fns'
|
||||||
import FileSaver from 'file-saver'
|
import FileSaver from 'file-saver'
|
||||||
import gql from 'graphql-tag'
|
import gql from 'graphql-tag'
|
||||||
import React, { useState, useEffect } from 'react'
|
import React, { useState, useEffect } from 'react'
|
||||||
|
|
||||||
import Modal from 'src/components/Modal'
|
import Modal from 'src/components/Modal'
|
||||||
import { Button } from 'src/components/buttons'
|
|
||||||
import { H3, P } from 'src/components/typography'
|
import { H3, P } from 'src/components/typography'
|
||||||
import { URI } from 'src/utils/apollo'
|
import { URI } from 'src/utils/apollo'
|
||||||
|
|
||||||
|
import { Button } from 'src/components/buttons'
|
||||||
|
|
||||||
import { diagnosticsModal } from './MachineActions.styles'
|
import { diagnosticsModal } from './MachineActions.styles'
|
||||||
|
|
||||||
const useStyles = makeStyles(diagnosticsModal)
|
const useStyles = makeStyles(diagnosticsModal)
|
||||||
|
|
@ -2,6 +2,9 @@ import { useMutation, useLazyQuery } from '@apollo/react-hooks'
|
||||||
import { makeStyles } from '@material-ui/core/styles'
|
import { makeStyles } from '@material-ui/core/styles'
|
||||||
import gql from 'graphql-tag'
|
import gql from 'graphql-tag'
|
||||||
import React, { memo, useState } from 'react'
|
import React, { memo, useState } from 'react'
|
||||||
|
import { ConfirmDialog } from 'src/components/ConfirmDialog'
|
||||||
|
import ActionButton from 'src/components/buttons/ActionButton'
|
||||||
|
import { H3 } from 'src/components/typography'
|
||||||
import EditReversedIcon from 'src/styling/icons/button/edit/white.svg?react'
|
import EditReversedIcon from 'src/styling/icons/button/edit/white.svg?react'
|
||||||
import EditIcon from 'src/styling/icons/button/edit/zodiac.svg?react'
|
import EditIcon from 'src/styling/icons/button/edit/zodiac.svg?react'
|
||||||
import RebootReversedIcon from 'src/styling/icons/button/reboot/white.svg?react'
|
import RebootReversedIcon from 'src/styling/icons/button/reboot/white.svg?react'
|
||||||
|
|
@ -11,10 +14,6 @@ import ShutdownIcon from 'src/styling/icons/button/shut down/zodiac.svg?react'
|
||||||
import UnpairReversedIcon from 'src/styling/icons/button/unpair/white.svg?react'
|
import UnpairReversedIcon from 'src/styling/icons/button/unpair/white.svg?react'
|
||||||
import UnpairIcon from 'src/styling/icons/button/unpair/zodiac.svg?react'
|
import UnpairIcon from 'src/styling/icons/button/unpair/zodiac.svg?react'
|
||||||
|
|
||||||
import { ConfirmDialog } from 'src/components/ConfirmDialog'
|
|
||||||
import ActionButton from 'src/components/buttons/ActionButton'
|
|
||||||
import { H3 } from 'src/components/typography'
|
|
||||||
|
|
||||||
import DiagnosticsModal from './DiagnosticsModal'
|
import DiagnosticsModal from './DiagnosticsModal'
|
||||||
import { machineActionsStyles } from './MachineActions.styles'
|
import { machineActionsStyles } from './MachineActions.styles'
|
||||||
|
|
||||||
|
|
@ -1,9 +1,6 @@
|
||||||
import { makeStyles } from '@material-ui/core'
|
import { makeStyles } from '@material-ui/core'
|
||||||
import classnames from 'classnames'
|
import classnames from 'classnames'
|
||||||
import React from 'react'
|
import React from 'react'
|
||||||
import EditIcon from 'src/styling/icons/action/edit/white.svg?react'
|
|
||||||
|
|
||||||
import { IconButton } from 'src/components/buttons'
|
|
||||||
import {
|
import {
|
||||||
Table,
|
Table,
|
||||||
THead,
|
THead,
|
||||||
|
|
@ -12,6 +9,9 @@ import {
|
||||||
Th,
|
Th,
|
||||||
Tr
|
Tr
|
||||||
} from 'src/components/fake-table/Table'
|
} from 'src/components/fake-table/Table'
|
||||||
|
import EditIcon from 'src/styling/icons/action/edit/white.svg?react'
|
||||||
|
|
||||||
|
import { IconButton } from 'src/components/buttons'
|
||||||
|
|
||||||
import styles from './SingleRowTable.styles'
|
import styles from './SingleRowTable.styles'
|
||||||
|
|
||||||
|
|
@ -1,9 +1,8 @@
|
||||||
import { makeStyles } from '@material-ui/core'
|
import { makeStyles } from '@material-ui/core'
|
||||||
import classNames from 'classnames'
|
import classNames from 'classnames'
|
||||||
import React, { memo } from 'react'
|
import React, { memo } from 'react'
|
||||||
import EmptyTableIcon from 'src/styling/icons/table/empty-table.svg?react'
|
|
||||||
|
|
||||||
import { H4 } from 'src/components/typography'
|
import { H4 } from 'src/components/typography'
|
||||||
|
import EmptyTableIcon from 'src/styling/icons/table/empty-table.svg?react'
|
||||||
|
|
||||||
const styles = {
|
const styles = {
|
||||||
emptyTable: {
|
emptyTable: {
|
||||||
|
|
@ -8,9 +8,6 @@ import {
|
||||||
CellMeasurer,
|
CellMeasurer,
|
||||||
CellMeasurerCache
|
CellMeasurerCache
|
||||||
} from 'react-virtualized'
|
} from 'react-virtualized'
|
||||||
import ExpandClosedIcon from 'src/styling/icons/action/expand/closed.svg?react'
|
|
||||||
import ExpandOpenIcon from 'src/styling/icons/action/expand/open.svg?react'
|
|
||||||
|
|
||||||
import {
|
import {
|
||||||
Table,
|
Table,
|
||||||
TBody,
|
TBody,
|
||||||
|
|
@ -19,8 +16,11 @@ import {
|
||||||
Td,
|
Td,
|
||||||
Th
|
Th
|
||||||
} from 'src/components/fake-table/Table'
|
} from 'src/components/fake-table/Table'
|
||||||
import { EmptyTable } from 'src/components/table'
|
|
||||||
import { H4 } from 'src/components/typography'
|
import { H4 } from 'src/components/typography'
|
||||||
|
import ExpandClosedIcon from 'src/styling/icons/action/expand/closed.svg?react'
|
||||||
|
import ExpandOpenIcon from 'src/styling/icons/action/expand/open.svg?react'
|
||||||
|
|
||||||
|
import { EmptyTable } from 'src/components/table'
|
||||||
|
|
||||||
import styles from './DataTable.styles'
|
import styles from './DataTable.styles'
|
||||||
|
|
||||||
|
|
@ -1,7 +1,6 @@
|
||||||
import React from 'react'
|
import React from 'react'
|
||||||
import StripesSvg from 'src/styling/icons/stripes.svg?react'
|
|
||||||
|
|
||||||
import { Td } from 'src/components/fake-table/Table'
|
import { Td } from 'src/components/fake-table/Table'
|
||||||
|
import StripesSvg from 'src/styling/icons/stripes.svg?react'
|
||||||
|
|
||||||
const Stripes = ({ width }) => (
|
const Stripes = ({ width }) => (
|
||||||
<Td width={width}>
|
<Td width={width}>
|
||||||
|
|
@ -7,6 +7,9 @@ import gql from 'graphql-tag'
|
||||||
import QRCode from 'qrcode.react'
|
import QRCode from 'qrcode.react'
|
||||||
import * as R from 'ramda'
|
import * as R from 'ramda'
|
||||||
import React, { memo, useState, useEffect, useRef } from 'react'
|
import React, { memo, useState, useEffect, useRef } from 'react'
|
||||||
|
import Title from 'src/components/Title'
|
||||||
|
import Sidebar from 'src/components/layout/Sidebar'
|
||||||
|
import { Info2, P } from 'src/components/typography'
|
||||||
import CameraIcon from 'src/styling/icons/ID/photo/zodiac.svg?react'
|
import CameraIcon from 'src/styling/icons/ID/photo/zodiac.svg?react'
|
||||||
import CloseIcon from 'src/styling/icons/action/close/zodiac.svg?react'
|
import CloseIcon from 'src/styling/icons/action/close/zodiac.svg?react'
|
||||||
import CompleteStageIconSpring from 'src/styling/icons/stage/spring/complete.svg?react'
|
import CompleteStageIconSpring from 'src/styling/icons/stage/spring/complete.svg?react'
|
||||||
|
|
@ -16,11 +19,8 @@ import EmptyStageIconZodiac from 'src/styling/icons/stage/zodiac/empty.svg?react
|
||||||
import WarningIcon from 'src/styling/icons/warning-icon/comet.svg?react'
|
import WarningIcon from 'src/styling/icons/warning-icon/comet.svg?react'
|
||||||
import * as Yup from 'yup'
|
import * as Yup from 'yup'
|
||||||
|
|
||||||
import Title from 'src/components/Title'
|
|
||||||
import { Button } from 'src/components/buttons'
|
import { Button } from 'src/components/buttons'
|
||||||
import { TextInput } from 'src/components/inputs/formik'
|
import { TextInput } from 'src/components/inputs/formik'
|
||||||
import Sidebar from 'src/components/layout/Sidebar'
|
|
||||||
import { Info2, P } from 'src/components/typography'
|
|
||||||
import { primaryColor } from 'src/styling/variables'
|
import { primaryColor } from 'src/styling/variables'
|
||||||
|
|
||||||
import styles from './styles'
|
import styles from './styles'
|
||||||
|
|
@ -7,13 +7,13 @@ import { subDays, format, add, startOfWeek } from 'date-fns/fp'
|
||||||
import gql from 'graphql-tag'
|
import gql from 'graphql-tag'
|
||||||
import * as R from 'ramda'
|
import * as R from 'ramda'
|
||||||
import React, { useState } from 'react'
|
import React, { useState } from 'react'
|
||||||
|
import TitleSection from 'src/components/layout/TitleSection'
|
||||||
|
import { Info2, P } from 'src/components/typography'
|
||||||
import DownIcon from 'src/styling/icons/dashboard/down.svg?react'
|
import DownIcon from 'src/styling/icons/dashboard/down.svg?react'
|
||||||
import EqualIcon from 'src/styling/icons/dashboard/equal.svg?react'
|
import EqualIcon from 'src/styling/icons/dashboard/equal.svg?react'
|
||||||
import UpIcon from 'src/styling/icons/dashboard/up.svg?react'
|
import UpIcon from 'src/styling/icons/dashboard/up.svg?react'
|
||||||
|
|
||||||
import { Select } from 'src/components/inputs'
|
import { Select } from 'src/components/inputs'
|
||||||
import TitleSection from 'src/components/layout/TitleSection'
|
|
||||||
import { Info2, P } from 'src/components/typography'
|
|
||||||
import { fromNamespace } from 'src/utils/config'
|
import { fromNamespace } from 'src/utils/config'
|
||||||
import { numberToFiatAmount } from 'src/utils/number'
|
import { numberToFiatAmount } from 'src/utils/number'
|
||||||
import { DAY, WEEK, MONTH } from 'src/utils/time'
|
import { DAY, WEEK, MONTH } from 'src/utils/time'
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
import { makeStyles } from '@material-ui/core/styles'
|
import { makeStyles } from '@material-ui/core/styles'
|
||||||
import React from 'react'
|
import React from 'react'
|
||||||
|
|
||||||
import { P } from 'src/components/typography'
|
import { P } from 'src/components/typography'
|
||||||
|
|
||||||
import styles from '../Analytics.styles'
|
import styles from '../Analytics.styles'
|
||||||
|
|
@ -2,10 +2,10 @@ import { Paper } from '@material-ui/core'
|
||||||
import { makeStyles } from '@material-ui/core/styles'
|
import { makeStyles } from '@material-ui/core/styles'
|
||||||
import * as R from 'ramda'
|
import * as R from 'ramda'
|
||||||
import React, { memo } from 'react'
|
import React, { memo } from 'react'
|
||||||
|
import { Info2, Label3, P } from 'src/components/typography'
|
||||||
import TxInIcon from 'src/styling/icons/direction/cash-in.svg?react'
|
import TxInIcon from 'src/styling/icons/direction/cash-in.svg?react'
|
||||||
import TxOutIcon from 'src/styling/icons/direction/cash-out.svg?react'
|
import TxOutIcon from 'src/styling/icons/direction/cash-out.svg?react'
|
||||||
|
|
||||||
import { Info2, Label3, P } from 'src/components/typography'
|
|
||||||
import { numberToFiatAmount } from 'src/utils/number'
|
import { numberToFiatAmount } from 'src/utils/number'
|
||||||
import { singularOrPlural } from 'src/utils/string'
|
import { singularOrPlural } from 'src/utils/string'
|
||||||
import { formatDate, formatDateNonUtc } from 'src/utils/timezones'
|
import { formatDate, formatDateNonUtc } from 'src/utils/timezones'
|
||||||
|
|
@ -3,9 +3,9 @@ import { makeStyles } from '@material-ui/core/styles'
|
||||||
import { getTimezoneOffset } from 'date-fns-tz'
|
import { getTimezoneOffset } from 'date-fns-tz'
|
||||||
import * as R from 'ramda'
|
import * as R from 'ramda'
|
||||||
import React, { useState } from 'react'
|
import React, { useState } from 'react'
|
||||||
|
import { H2 } from 'src/components/typography'
|
||||||
|
|
||||||
import { Select } from 'src/components/inputs'
|
import { Select } from 'src/components/inputs'
|
||||||
import { H2 } from 'src/components/typography'
|
|
||||||
import { MINUTE } from 'src/utils/time'
|
import { MINUTE } from 'src/utils/time'
|
||||||
|
|
||||||
import styles from '../../Analytics.styles'
|
import styles from '../../Analytics.styles'
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
import { Box } from '@material-ui/core'
|
import { Box } from '@material-ui/core'
|
||||||
import { makeStyles } from '@material-ui/core/styles'
|
import { makeStyles } from '@material-ui/core/styles'
|
||||||
import React, { useState } from 'react'
|
import React, { useState } from 'react'
|
||||||
|
import { H2 } from 'src/components/typography'
|
||||||
|
|
||||||
import { Select, Switch } from 'src/components/inputs'
|
import { Select, Switch } from 'src/components/inputs'
|
||||||
import { H2 } from 'src/components/typography'
|
|
||||||
import { primaryColor } from 'src/styling/variables'
|
import { primaryColor } from 'src/styling/variables'
|
||||||
|
|
||||||
import styles from '../../Analytics.styles'
|
import styles from '../../Analytics.styles'
|
||||||
|
|
@ -2,7 +2,6 @@ import { Box } from '@material-ui/core'
|
||||||
import { makeStyles } from '@material-ui/core/styles'
|
import { makeStyles } from '@material-ui/core/styles'
|
||||||
import * as R from 'ramda'
|
import * as R from 'ramda'
|
||||||
import React, { useState } from 'react'
|
import React, { useState } from 'react'
|
||||||
|
|
||||||
import { H2 } from 'src/components/typography'
|
import { H2 } from 'src/components/typography'
|
||||||
|
|
||||||
import styles from '../../Analytics.styles'
|
import styles from '../../Analytics.styles'
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
import { Box } from '@material-ui/core'
|
import { Box } from '@material-ui/core'
|
||||||
import { makeStyles } from '@material-ui/core/styles'
|
import { makeStyles } from '@material-ui/core/styles'
|
||||||
import React, { useState } from 'react'
|
import React, { useState } from 'react'
|
||||||
|
import { H2 } from 'src/components/typography'
|
||||||
|
|
||||||
import { Select, Switch } from 'src/components/inputs'
|
import { Select, Switch } from 'src/components/inputs'
|
||||||
import { H2 } from 'src/components/typography'
|
|
||||||
import { neon, java } from 'src/styling/variables'
|
import { neon, java } from 'src/styling/variables'
|
||||||
|
|
||||||
import styles from '../../Analytics.styles'
|
import styles from '../../Analytics.styles'
|
||||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue