X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/9cd0c2757db479fb75e150d52d4871d9a88af364..3f7e1a8afad27920adf8f03ce82eeb1ae58aa84f:/src/views-components/process-command-dialog/process-command-dialog.tsx diff --git a/src/views-components/process-command-dialog/process-command-dialog.tsx b/src/views-components/process-command-dialog/process-command-dialog.tsx deleted file mode 100644 index 7695837e..00000000 --- a/src/views-components/process-command-dialog/process-command-dialog.tsx +++ /dev/null @@ -1,61 +0,0 @@ -// Copyright (C) The Arvados Authors. All rights reserved. -// -// SPDX-License-Identifier: AGPL-3.0 - -import React from "react"; -import { Dialog, DialogActions, Button, StyleRulesCallback, WithStyles, withStyles, Tooltip, IconButton, CardHeader } from '@material-ui/core'; -import { withDialog } from "store/dialog/with-dialog"; -import { PROCESS_COMMAND_DIALOG_NAME } from 'store/processes/process-command-actions'; -import { WithDialogProps } from 'store/dialog/with-dialog'; -import { ProcessCommandDialogData } from 'store/processes/process-command-actions'; -import { DefaultCodeSnippet } from "components/default-code-snippet/default-code-snippet"; -import { compose } from 'redux'; -import CopyToClipboard from "react-copy-to-clipboard"; -import { CopyIcon } from 'components/icon/icon'; - -type CssRules = 'codeSnippet' | 'copyToClipboard'; - -const styles: StyleRulesCallback = theme => ({ - codeSnippet: { - marginLeft: theme.spacing.unit * 3, - marginRight: theme.spacing.unit * 3, - }, - copyToClipboard: { - marginRight: theme.spacing.unit, - } -}); - -export const ProcessCommandDialog = compose( - withDialog(PROCESS_COMMAND_DIALOG_NAME), - withStyles(styles), -)( - (props: WithDialogProps & WithStyles) => - - - - - - - - - } /> - - - - - -); \ No newline at end of file