X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/32e3370febf2e29c45e27065cdc14a883775f261..7467e941ed63e8885144e90c9ca11929f738b13a:/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 f6f02a5b..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 * as 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 * as 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