aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/components/controls/ActionsDropdown.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-web/src/main/js/components/controls/ActionsDropdown.tsx')
-rw-r--r--server/sonar-web/src/main/js/components/controls/ActionsDropdown.tsx113
1 files changed, 0 insertions, 113 deletions
diff --git a/server/sonar-web/src/main/js/components/controls/ActionsDropdown.tsx b/server/sonar-web/src/main/js/components/controls/ActionsDropdown.tsx
deleted file mode 100644
index f8cca23cd06..00000000000
--- a/server/sonar-web/src/main/js/components/controls/ActionsDropdown.tsx
+++ /dev/null
@@ -1,113 +0,0 @@
-/*
- * SonarQube
- * Copyright (C) 2009-2019 SonarSource SA
- * mailto:info AT sonarsource DOT com
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 3 of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- */
-import * as React from 'react';
-import * as classNames from 'classnames';
-import { Link } from 'react-router';
-import { LocationDescriptor } from 'history';
-import Dropdown from './Dropdown';
-import DropdownIcon from '../icons-components/DropdownIcon';
-import SettingsIcon from '../icons-components/SettingsIcon';
-import { Button } from '../ui/buttons';
-
-interface Props {
- className?: string;
- children: React.ReactNode;
- onOpen?: () => void;
- small?: boolean;
- toggleClassName?: string;
-}
-
-export default function ActionsDropdown(props: Props) {
- return (
- <Dropdown
- className={props.className}
- onOpen={props.onOpen}
- overlay={<ul className="menu">{props.children}</ul>}>
- <Button
- className={classNames('dropdown-toggle', props.toggleClassName, {
- 'button-small': props.small
- })}>
- <SettingsIcon size={props.small ? 12 : 14} />
- <DropdownIcon className="little-spacer-left" />
- </Button>
- </Dropdown>
- );
-}
-
-interface ItemProps {
- className?: string;
- children: React.ReactNode;
- destructive?: boolean;
- /** used to pass a name of downloaded file */
- download?: string;
- id?: string;
- onClick?: () => void;
- to?: LocationDescriptor;
-}
-
-export class ActionsDropdownItem extends React.PureComponent<ItemProps> {
- handleClick = (event: React.SyntheticEvent<HTMLAnchorElement>) => {
- event.preventDefault();
- event.currentTarget.blur();
- if (this.props.onClick) {
- this.props.onClick();
- }
- };
-
- render() {
- const className = classNames(this.props.className, { 'text-danger': this.props.destructive });
-
- if (this.props.download && typeof this.props.to === 'string') {
- return (
- <li>
- <a
- className={className}
- download={this.props.download}
- href={this.props.to}
- id={this.props.id}>
- {this.props.children}
- </a>
- </li>
- );
- }
-
- if (this.props.to) {
- return (
- <li>
- <Link className={className} id={this.props.id} to={this.props.to}>
- {this.props.children}
- </Link>
- </li>
- );
- }
-
- return (
- <li>
- <a className={className} href="#" id={this.props.id} onClick={this.handleClick}>
- {this.props.children}
- </a>
- </li>
- );
- }
-}
-
-export function ActionsDropdownDivider() {
- return <li className="divider" />;
-}