/* * SonarQube * Copyright (C) 2009-2018 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 PropTypes from 'prop-types'; import { sortBy, uniqBy } from 'lodash'; import Helmet from 'react-helmet'; import Header from './Header'; import EditionBoxes from './EditionBoxes'; import Footer from './Footer'; import PluginsList from './PluginsList'; import Search from './Search'; import { filterPlugins, parseQuery, Query, serializeQuery, EditionKey } from './utils'; import Suggestions from '../../app/components/embed-docs-modal/Suggestions'; import { getAvailablePlugins, getInstalledPluginsWithUpdates, getPluginUpdates, Plugin, PluginPendingResult, getInstalledPlugins } from '../../api/plugins'; import { RawQuery } from '../../helpers/query'; import { translate } from '../../helpers/l10n'; import './style.css'; export interface Props { currentEdition?: EditionKey; fetchPendingPlugins: () => void; location: { pathname: string; query: RawQuery }; pendingPlugins: PluginPendingResult; standaloneMode: boolean; updateCenterActive: boolean; } interface State { loadingPlugins: boolean; plugins: Plugin[]; } export default class App extends React.PureComponent { mounted = false; static contextTypes = { router: PropTypes.object.isRequired }; state: State = { loadingPlugins: true, plugins: [] }; componentDidMount() { this.mounted = true; this.props.fetchPendingPlugins(); this.fetchQueryPlugins(); } componentDidUpdate(prevProps: Props) { if (prevProps.location.query.filter !== this.props.location.query.filter) { this.fetchQueryPlugins(); } } componentWillUnmount() { this.mounted = false; } fetchQueryPlugins = () => { const query = parseQuery(this.props.location.query); let fetchFunction = this.fetchAllPlugins; if (query.filter === 'updates') { fetchFunction = getPluginUpdates; } else if (query.filter === 'installed') { fetchFunction = getInstalledPlugins; } this.setState({ loadingPlugins: true }); fetchFunction().then((plugins: Plugin[]) => { if (this.mounted) { this.setState({ loadingPlugins: false, plugins: sortBy(plugins, 'name') }); } }, this.stopLoadingPlugins); }; fetchAllPlugins = (): Promise => { return Promise.all([getInstalledPluginsWithUpdates(), getAvailablePlugins()]).then( ([installed, available]) => uniqBy([...installed, ...available.plugins], 'key'), this.stopLoadingPlugins ); }; updateQuery = (newQuery: Partial) => { const query = serializeQuery({ ...parseQuery(this.props.location.query), ...newQuery }); this.context.router.push({ pathname: this.props.location.pathname, query }); }; stopLoadingPlugins = () => { if (this.mounted) { this.setState({ loadingPlugins: false }); } }; render() { const { currentEdition, standaloneMode, pendingPlugins } = this.props; const { loadingPlugins, plugins } = this.state; const query = parseQuery(this.props.location.query); const filteredPlugins = filterPlugins(plugins, query.search); return (

{translate('marketplace.page.open_source_plugins')}

{loadingPlugins && } {!loadingPlugins && ( )} {!loadingPlugins &&
}
); } }