mirror of https://github.com/grafana/grafana.git
59 lines
1.5 KiB
TypeScript
59 lines
1.5 KiB
TypeScript
import { css, cx } from '@emotion/css';
|
|
|
|
import { GrafanaTheme2 } from '@grafana/data';
|
|
import { Trans, t } from '@grafana/i18n';
|
|
import { IconButton, useStyles2 } from '@grafana/ui';
|
|
|
|
export interface MinimalisticPaginationProps {
|
|
currentPage: number;
|
|
numberOfPages: number;
|
|
onNavigate: (toPage: number) => void;
|
|
hideWhenSinglePage?: boolean;
|
|
className?: string;
|
|
}
|
|
|
|
export const MinimalisticPagination = ({
|
|
currentPage,
|
|
numberOfPages,
|
|
onNavigate,
|
|
hideWhenSinglePage,
|
|
className,
|
|
}: MinimalisticPaginationProps) => {
|
|
const styles = useStyles2(getStyles);
|
|
|
|
if (hideWhenSinglePage && numberOfPages <= 1) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<div className={cx(styles.wrapper, className)}>
|
|
<IconButton
|
|
name="angle-left"
|
|
size="md"
|
|
tooltip={t('dashboard.minimalistic-pagination.tooltip-previous', 'Previous')}
|
|
onClick={() => onNavigate(currentPage - 1)}
|
|
disabled={currentPage === 1}
|
|
/>
|
|
<Trans i18nKey="dashboard.minimalistic-pagination.page-count">
|
|
{{ currentPage }} of {{ numberOfPages }}
|
|
</Trans>
|
|
<IconButton
|
|
name="angle-right"
|
|
size="md"
|
|
tooltip={t('dashboard.minimalistic-pagination.tooltip-next', 'Next')}
|
|
onClick={() => onNavigate(currentPage + 1)}
|
|
disabled={currentPage === numberOfPages}
|
|
/>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
const getStyles = (theme: GrafanaTheme2) => ({
|
|
wrapper: css({
|
|
display: 'flex',
|
|
flexDirection: 'row',
|
|
gap: 16,
|
|
userSelect: 'none',
|
|
}),
|
|
});
|