X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/55e9d0bcceeb7c88f7bd8d0b20408c6b87846ff2..2a7fd99c212c33a1ec9911f8529fa5afc59a7bb2:/src/components/refresh-button/refresh-button.tsx diff --git a/src/components/refresh-button/refresh-button.tsx b/src/components/refresh-button/refresh-button.tsx index 66bda99e8f..e2fe548468 100644 --- a/src/components/refresh-button/refresh-button.tsx +++ b/src/components/refresh-button/refresh-button.tsx @@ -3,11 +3,11 @@ // // SPDX-License-Identifier: AGPL-3.0 -import * as React from 'react'; -import * as classNames from 'classnames'; +import React from 'react'; +import classNames from 'classnames'; import { withRouter, RouteComponentProps } from 'react-router'; import { StyleRulesCallback, Button, WithStyles, withStyles } from "@material-ui/core"; -import { ReRunProcessIcon } from '~/components/icon/icon'; +import { ReRunProcessIcon } from 'components/icon/icon'; type CssRules = 'button' | 'buttonRight'; @@ -22,13 +22,25 @@ const styles: StyleRulesCallback = theme => ({ }, }); -export const RefreshButton = ({ history, classes }: RouteComponentProps & WithStyles) => +interface RefreshButtonProps { + onClick?: () => void; +} + +export const LAST_REFRESH_TIMESTAMP = 'lastRefreshTimestamp'; + +export const RefreshButton = ({ history, classes, onClick }: RouteComponentProps & WithStyles & RefreshButtonProps) =>