grafana/public/app/features/explore/NoDataSourceCallToAction.tsx
Torkel Ödegaard 10badea19e
Emotion: Upgrades emotion from 10 to 11 and updates all import paths (#32541)
* Babel: Updates babel dependencies to latest version

* Emotion: Upgrade form 10 to 11

* Fixing tests

* Updated to use emotion/css instead in test
2021-04-01 14:15:23 +02:00

47 lines
1.2 KiB
TypeScript

import React, { useContext } from 'react';
import { css } from '@emotion/css';
import { ThemeContext, LinkButton, CallToActionCard, Icon } from '@grafana/ui';
export const NoDataSourceCallToAction = () => {
const theme = useContext(ThemeContext);
const message =
'Explore requires at least one data source. Once you have added a data source, you can query it here.';
const footer = (
<>
<Icon name="rocket" />
<> ProTip: You can also define data sources through configuration files. </>
<a
href="http://docs.grafana.org/administration/provisioning/#datasources?utm_source=explore"
target="_blank"
rel="noreferrer"
className="text-link"
>
Learn more
</a>
</>
);
const ctaElement = (
<LinkButton size="lg" href="datasources/new" icon="database">
Add data source
</LinkButton>
);
const cardClassName = css`
max-width: ${theme.breakpoints.lg};
margin-top: ${theme.spacing.md};
align-self: center;
`;
return (
<CallToActionCard
callToActionElement={ctaElement}
className={cardClassName}
footer={footer}
message={message}
theme={theme}
/>
);
};