grafana/public/app/core/components/AppChrome/TopSearchBar.tsx
Ashley Harrison 78a57f2064
Navigation: use ToolbarButton in TopSearchBar for consistency (#56371)
* use ToolbarButton in TopSearchBar for consistency

* Removed unnessary styles

Co-authored-by: Torkel Ödegaard <torkel@grafana.com>
2022-10-05 12:22:47 +01:00

87 lines
2.4 KiB
TypeScript

import { css } from '@emotion/css';
import React from 'react';
import { GrafanaTheme2 } from '@grafana/data';
import { Dropdown, Icon, ToolbarButton, useStyles2 } from '@grafana/ui';
import { contextSrv } from 'app/core/core';
import { useSelector } from 'app/types';
import { NewsContainer } from './News/NewsContainer';
import { TopNavBarMenu } from './TopBar/TopNavBarMenu';
import { TopSearchBarInput } from './TopSearchBarInput';
import { TOP_BAR_LEVEL_HEIGHT } from './types';
export function TopSearchBar() {
const styles = useStyles2(getStyles);
const navIndex = useSelector((state) => state.navIndex);
const helpNode = navIndex['help'];
const profileNode = navIndex['profile'];
return (
<div className={styles.container}>
<div className={styles.leftContent}>
<a className={styles.logo} href="/" title="Go to home">
<Icon name="grafana" size="xl" />
</a>
</div>
<div className={styles.searchWrapper}>
<TopSearchBarInput />
</div>
<div className={styles.actions}>
{helpNode && (
<Dropdown overlay={() => <TopNavBarMenu node={helpNode} />}>
<ToolbarButton iconOnly icon="question-circle" aria-label="Help" />
</Dropdown>
)}
<NewsContainer />
{profileNode && (
<Dropdown overlay={<TopNavBarMenu node={profileNode} />}>
<ToolbarButton
className={styles.profileButton}
imgSrc={contextSrv.user.gravatarUrl}
imgAlt="User avatar"
aria-label="Profile"
/>
</Dropdown>
)}
</div>
</div>
);
}
const getStyles = (theme: GrafanaTheme2) => {
return {
container: css({
height: TOP_BAR_LEVEL_HEIGHT,
display: 'grid',
gap: theme.spacing(0.5),
gridTemplateColumns: '1fr 2fr 1fr',
padding: theme.spacing(0, 2),
alignItems: 'center',
borderBottom: `1px solid ${theme.colors.border.weak}`,
}),
leftContent: css({
display: 'flex',
}),
logo: css({
display: 'flex',
}),
searchWrapper: css({}),
searchInput: css({}),
actions: css({
display: 'flex',
gap: theme.spacing(0.5),
justifyContent: 'flex-end',
}),
profileButton: css({
img: {
borderRadius: '50%',
height: '24px',
marginRight: 0,
width: '24px',
},
}),
};
};