mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 10:03:33 -06:00
* Update typescript to v4.2.4 * Update @types/slate * Fix QueryVariableEditor.test.tsx * Fix search-related type errors * Fix Plugin pages type errors * Fix missing initializer errors * Update snapshot * Revert tsconfig changes
76 lines
2.4 KiB
TypeScript
76 lines
2.4 KiB
TypeScript
import React from 'react';
|
|
import { hot } from 'react-hot-loader';
|
|
import { connect, ConnectedProps } from 'react-redux';
|
|
import Page from 'app/core/components/Page/Page';
|
|
import PageActionBar from 'app/core/components/PageActionBar/PageActionBar';
|
|
import PluginList from './PluginList';
|
|
import { loadPlugins } from './state/actions';
|
|
import { getNavModel } from 'app/core/selectors/navModel';
|
|
import { getPlugins, getPluginsSearchQuery } from './state/selectors';
|
|
import { StoreState } from 'app/types';
|
|
import { setPluginsSearchQuery } from './state/reducers';
|
|
import { useAsync } from 'react-use';
|
|
import { selectors } from '@grafana/e2e-selectors';
|
|
import { PluginsErrorsInfo } from './PluginsErrorsInfo';
|
|
|
|
const mapStateToProps = (state: StoreState) => ({
|
|
navModel: getNavModel(state.navIndex, 'plugins'),
|
|
plugins: getPlugins(state.plugins),
|
|
searchQuery: getPluginsSearchQuery(state.plugins),
|
|
hasFetched: state.plugins.hasFetched,
|
|
});
|
|
|
|
const mapDispatchToProps = {
|
|
loadPlugins,
|
|
setPluginsSearchQuery,
|
|
};
|
|
|
|
const connector = connect(mapStateToProps, mapDispatchToProps);
|
|
export type Props = ConnectedProps<typeof connector>;
|
|
|
|
export const PluginListPage: React.FC<Props> = ({
|
|
hasFetched,
|
|
navModel,
|
|
plugins,
|
|
setPluginsSearchQuery,
|
|
searchQuery,
|
|
loadPlugins,
|
|
}) => {
|
|
useAsync(async () => {
|
|
loadPlugins();
|
|
}, [loadPlugins]);
|
|
|
|
const linkButton = {
|
|
href: 'https://grafana.com/plugins?utm_source=grafana_plugin_list',
|
|
title: 'Find more plugins on Grafana.com',
|
|
};
|
|
|
|
return (
|
|
<Page navModel={navModel} aria-label={selectors.pages.PluginsList.page}>
|
|
<Page.Contents isLoading={!hasFetched}>
|
|
<>
|
|
<PageActionBar
|
|
searchQuery={searchQuery}
|
|
setSearchQuery={(query) => setPluginsSearchQuery(query)}
|
|
linkButton={linkButton}
|
|
target="_blank"
|
|
/>
|
|
|
|
<PluginsErrorsInfo>
|
|
<>
|
|
<br />
|
|
<p>
|
|
Note that <strong>unsigned front-end datasource and panel plugins</strong> are still usable, but this is
|
|
subject to change in the upcoming releases of Grafana
|
|
</p>
|
|
</>
|
|
</PluginsErrorsInfo>
|
|
{hasFetched && plugins && <PluginList plugins={plugins} />}
|
|
</>
|
|
</Page.Contents>
|
|
</Page>
|
|
);
|
|
};
|
|
|
|
export default hot(module)(connect(mapStateToProps, mapDispatchToProps)(PluginListPage));
|