diff options
author | Philippe Perrin <philippe.perrin@sonarsource.com> | 2020-08-04 13:35:35 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2020-08-11 20:06:01 +0000 |
commit | 589fd91ebc75483e2a5c092812090a548442fcde (patch) | |
tree | aec485c48f8287472059a7fe9ebf5a4b1af3b091 /server/sonar-web/src/main/js/app/components | |
parent | 34caa99d1d08fc909c24d18d7cc1862021b7e28f (diff) | |
download | sonarqube-589fd91ebc75483e2a5c092812090a548442fcde.tar.gz sonarqube-589fd91ebc75483e2a5c092812090a548442fcde.zip |
Drop unused/sonarcloud feature
Diffstat (limited to 'server/sonar-web/src/main/js/app/components')
3 files changed, 0 insertions, 48 deletions
diff --git a/server/sonar-web/src/main/js/app/components/nav/global/GlobalNav.tsx b/server/sonar-web/src/main/js/app/components/nav/global/GlobalNav.tsx index 78e44e4536c..3d502b1aca0 100644 --- a/server/sonar-web/src/main/js/app/components/nav/global/GlobalNav.tsx +++ b/server/sonar-web/src/main/js/app/components/nav/global/GlobalNav.tsx @@ -42,7 +42,6 @@ import EmbedDocsPopupHelper from '../../embed-docs-modal/EmbedDocsPopupHelper'; import Search from '../../search/Search'; import './GlobalNav.css'; import GlobalNavBranding, { SonarCloudNavBranding } from './GlobalNavBranding'; -import GlobalNavExplore from './GlobalNavExplore'; import GlobalNavMenu from './GlobalNavMenu'; import GlobalNavUserContainer from './GlobalNavUserContainer'; @@ -188,7 +187,6 @@ export class GlobalNav extends React.PureComponent<Props, State> { setCurrentUserSetting={this.props.setCurrentUserSetting} /> )} - {isSonarCloud() && <GlobalNavExplore location={this.props.location} />} <EmbedDocsPopupHelper /> <Search appState={appState} currentUser={currentUser} /> {isLoggedIn(currentUser) && ( diff --git a/server/sonar-web/src/main/js/app/components/nav/global/GlobalNavExplore.tsx b/server/sonar-web/src/main/js/app/components/nav/global/GlobalNavExplore.tsx deleted file mode 100644 index a0ce98cf680..00000000000 --- a/server/sonar-web/src/main/js/app/components/nav/global/GlobalNavExplore.tsx +++ /dev/null @@ -1,39 +0,0 @@ -/* - * SonarQube - * Copyright (C) 2009-2020 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 { Link } from 'react-router'; -import { translate } from 'sonar-ui-common/helpers/l10n'; - -interface Props { - location: { pathname: string }; -} - -export default function GlobalNavExplore({ location }: Props) { - const active = location.pathname.startsWith('/explore'); - return ( - <li> - <Link - className={active ? 'active' : undefined} - to={{ pathname: '/explore/projects', query: { sort: '-analysis_date' } }}> - {translate('explore')} - </Link> - </li> - ); -} diff --git a/server/sonar-web/src/main/js/app/components/nav/global/__tests__/__snapshots__/GlobalNav-test.tsx.snap b/server/sonar-web/src/main/js/app/components/nav/global/__tests__/__snapshots__/GlobalNav-test.tsx.snap index 502966742f5..f5ddebb16d6 100644 --- a/server/sonar-web/src/main/js/app/components/nav/global/__tests__/__snapshots__/GlobalNav-test.tsx.snap +++ b/server/sonar-web/src/main/js/app/components/nav/global/__tests__/__snapshots__/GlobalNav-test.tsx.snap @@ -53,13 +53,6 @@ exports[`should render correctly if there are new features 1`] = ` onClick={[Function]} setCurrentUserSetting={[MockFunction]} /> - <GlobalNavExplore - location={ - Object { - "pathname": "", - } - } - /> <EmbedDocsPopupHelper /> <withRouter(Search) appState={ |