/* * SonarQube * Copyright (C) 2009-2023 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 { translate } from '../../helpers/l10n'; import { getBaseUrl } from '../../helpers/system'; import { SuggestionLink } from '../../types/types'; import DocLink from '../common/DocLink'; import Link from '../common/Link'; import { DropdownOverlay } from '../controls/Dropdown'; import { SuggestionsContext } from './SuggestionsContext'; interface Props { onClose: () => void; } export default class EmbedDocsPopup extends React.PureComponent { firstItem: HTMLAnchorElement | null = null; /* * Will be called by the first suggestion (if any), as well as the first link (documentation) * Since we don't know if we have any suggestions, we need to allow both to make the call. * If we have at least 1 suggestion, it will make the call first, and prevent 'documentation' from * getting the focus. */ focusFirstItem: React.Ref = (node: HTMLAnchorElement | null) => { if (node && !this.firstItem) { this.firstItem = node; this.firstItem.focus(); } }; renderTitle(text: string, labelId: string) { return (

{text}

); } renderSuggestions = ({ suggestions }: { suggestions: SuggestionLink[] }) => { if (suggestions.length === 0) { return null; } return ( <> {this.renderTitle(translate('docs.suggestion'), 'suggestion')} ); }; renderIconLink(link: string, icon: string, text: string) { return ( {text} {text} ); } render() { return ( {this.renderSuggestions}
  • {translate('docs.documentation')}
  • {translate('api_documentation.page')}
  • {translate('docs.get_help')}
{this.renderTitle(translate('docs.stay_connected'), 'stay_connected')}
  • {this.renderIconLink( 'https://www.sonarqube.org/whats-new/?referrer=sonarqube', 'embed-doc/sq-icon.svg', translate('docs.news') )}
  • {this.renderIconLink( 'https://www.sonarqube.org/roadmap/?referrer=sonarqube', 'embed-doc/sq-icon.svg', translate('docs.roadmap') )}
  • {this.renderIconLink( 'https://twitter.com/SonarQube', 'embed-doc/twitter-icon.svg', 'Twitter' )}
); } }