aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps/overview/meta/MetaLink.js
diff options
context:
space:
mode:
authorStas Vilchik <vilchiks@gmail.com>2017-01-12 11:14:56 +0100
committerStas Vilchik <vilchiks@gmail.com>2017-01-12 11:14:56 +0100
commited5f35755cde0043524d7dc72689dffbd0bb7c1d (patch)
tree8f2ff5af18fa0e6004746309212dbadadcb5b960 /server/sonar-web/src/main/js/apps/overview/meta/MetaLink.js
parent730e5b521c4460dc4dea4e932df63896d645961d (diff)
downloadsonarqube-ed5f35755cde0043524d7dc72689dffbd0bb7c1d.tar.gz
sonarqube-ed5f35755cde0043524d7dc72689dffbd0bb7c1d.zip
SONAR-8304 Developer Connection link should be browser-friendly
Diffstat (limited to 'server/sonar-web/src/main/js/apps/overview/meta/MetaLink.js')
-rw-r--r--server/sonar-web/src/main/js/apps/overview/meta/MetaLink.js75
1 files changed, 75 insertions, 0 deletions
diff --git a/server/sonar-web/src/main/js/apps/overview/meta/MetaLink.js b/server/sonar-web/src/main/js/apps/overview/meta/MetaLink.js
new file mode 100644
index 00000000000..a8a398b9a4e
--- /dev/null
+++ b/server/sonar-web/src/main/js/apps/overview/meta/MetaLink.js
@@ -0,0 +1,75 @@
+/*
+ * SonarQube
+ * Copyright (C) 2009-2016 SonarSource SA
+ * mailto:contact 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.
+ */
+// @flow
+import React from 'react';
+import { isProvided, isClickable } from '../../project-admin/links/utils';
+
+type Link = {
+ id: string,
+ name: string,
+ url: string,
+ type: string
+};
+
+type State = {|
+ expanded: boolean
+ |};
+
+export default class MetaLink extends React.Component {
+ props: {
+ link: Link
+ };
+
+ state: State = {
+ expanded: false
+ };
+
+ handleClick = (e: Object) => {
+ e.preventDefault();
+ e.target.blur();
+ this.setState((s: State): State => ({ expanded: !s.expanded }));
+ };
+
+ renderLinkIcon (link: Link) {
+ return isProvided(link) ?
+ <i className={`icon-color-link icon-${link.type}`}/> :
+ <i className="icon-color-link icon-detach"/>;
+ }
+
+ render () {
+ const { link } = this.props;
+
+ return (
+ <li>
+ <a className="link-with-icon" href={link.url} target="_blank"
+ onClick={!isClickable(link) && this.handleClick}>
+ {this.renderLinkIcon(link)}
+ &nbsp;
+ {link.name}
+ </a>
+ {this.state.expanded && (
+ <div>
+ <input type="text" className="overview-key" value={link.url} readOnly={true}/>
+ </div>
+ )}
+ </li>
+ );
+ }
+}