grafana/public/app/plugins/panel/welcome/Welcome.tsx
Josh Hunt 3c6e0e8ef8
Chore: ESlint import order (#44959)
* Add and configure eslint-plugin-import

* Fix the lint:ts npm command

* Autofix + prettier all the files

* Manually fix remaining files

* Move jquery code in jest-setup to external file to safely reorder imports

* Resolve issue caused by circular dependencies within Prometheus

* Update .betterer.results

* Fix missing // @ts-ignore

* ignore iconBundle.ts

* Fix missing // @ts-ignore
2022-04-22 14:33:13 +01:00

108 lines
3.0 KiB
TypeScript

import { css } from '@emotion/css';
import React, { FC } from 'react';
import { GrafanaTheme } from '@grafana/data';
import { stylesFactory, useTheme } from '@grafana/ui';
const helpOptions = [
{ value: 0, label: 'Documentation', href: 'https://grafana.com/docs/grafana/latest' },
{ value: 1, label: 'Tutorials', href: 'https://grafana.com/tutorials' },
{ value: 2, label: 'Community', href: 'https://community.grafana.com' },
{ value: 3, label: 'Public Slack', href: 'http://slack.grafana.com' },
];
export const WelcomeBanner: FC = () => {
const styles = getStyles(useTheme());
return (
<div className={styles.container}>
<h1 className={styles.title}>Welcome to Grafana</h1>
<div className={styles.help}>
<h3 className={styles.helpText}>Need help?</h3>
<div className={styles.helpLinks}>
{helpOptions.map((option, index) => {
return (
<a
key={`${option.label}-${index}`}
className={styles.helpLink}
href={`${option.href}?utm_source=grafana_gettingstarted`}
>
{option.label}
</a>
);
})}
</div>
</div>
</div>
);
};
const getStyles = stylesFactory((theme: GrafanaTheme) => {
return {
container: css`
display: flex;
/// background: url(public/img/g8_home_v2.svg) no-repeat;
background-size: cover;
height: 100%;
align-items: center;
padding: 0 16px;
justify-content: space-between;
padding: 0 ${theme.spacing.lg};
@media only screen and (max-width: ${theme.breakpoints.lg}) {
background-position: 0px;
flex-direction: column;
align-items: flex-start;
justify-content: center;
}
@media only screen and (max-width: ${theme.breakpoints.sm}) {
padding: 0 ${theme.spacing.sm};
}
`,
title: css`
margin-bottom: 0;
@media only screen and (max-width: ${theme.breakpoints.lg}) {
margin-bottom: ${theme.spacing.sm};
}
@media only screen and (max-width: ${theme.breakpoints.md}) {
font-size: ${theme.typography.heading.h2};
}
@media only screen and (max-width: ${theme.breakpoints.sm}) {
font-size: ${theme.typography.heading.h3};
}
`,
help: css`
display: flex;
align-items: baseline;
`,
helpText: css`
margin-right: ${theme.spacing.md};
margin-bottom: 0;
@media only screen and (max-width: ${theme.breakpoints.md}) {
font-size: ${theme.typography.heading.h4};
}
@media only screen and (max-width: ${theme.breakpoints.sm}) {
display: none;
}
`,
helpLinks: css`
display: flex;
flex-wrap: wrap;
`,
helpLink: css`
margin-right: ${theme.spacing.md};
text-decoration: underline;
text-wrap: no-wrap;
@media only screen and (max-width: ${theme.breakpoints.sm}) {
margin-right: 8px;
}
`,
};
});