mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
37 lines
1.0 KiB
TypeScript
37 lines
1.0 KiB
TypeScript
import React from 'react';
|
|
import { connect, ConnectedProps } from 'react-redux';
|
|
|
|
import { config } from '@grafana/runtime';
|
|
|
|
import { GrafanaRouteComponentProps } from '../../core/navigation/types';
|
|
import { StoreState } from '../../types';
|
|
import { getNavModel } from '../../core/selectors/navModel';
|
|
import Page from '../../core/components/Page/Page';
|
|
import { StoredNotifications } from './StoredNotifications';
|
|
|
|
const mapStateToProps = (state: StoreState) => ({
|
|
navModel: getNavModel(state.navIndex, 'notifications'),
|
|
});
|
|
|
|
const connector = connect(mapStateToProps, undefined);
|
|
|
|
interface OwnProps extends GrafanaRouteComponentProps {}
|
|
|
|
type Props = OwnProps & ConnectedProps<typeof connector>;
|
|
|
|
export const NotificationsPage = ({ navModel }: Props) => {
|
|
if (!config.featureToggles.persistNotifications) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<Page navModel={navModel}>
|
|
<Page.Contents>
|
|
<StoredNotifications />
|
|
</Page.Contents>
|
|
</Page>
|
|
);
|
|
};
|
|
|
|
export default connect(mapStateToProps)(NotificationsPage);
|