mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
76 lines
2.8 KiB
TypeScript
76 lines
2.8 KiB
TypeScript
import { css } from '@emotion/css';
|
|
import React from 'react';
|
|
import { UseFormRegister } from 'react-hook-form';
|
|
|
|
import { GrafanaTheme2 } from '@grafana/data/src';
|
|
import { selectors as e2eSelectors } from '@grafana/e2e-selectors/src';
|
|
import { reportInteraction } from '@grafana/runtime/src';
|
|
import { FieldSet, Label, Switch, TimeRangeInput, useStyles2, VerticalGroup } from '@grafana/ui/src';
|
|
import { Layout } from '@grafana/ui/src/components/Layout/Layout';
|
|
import { getTimeRange } from 'app/features/dashboard/utils/timeRange';
|
|
|
|
import { useSelector } from '../../../../../../types';
|
|
|
|
import { ConfigPublicDashoardForm } from './ConfigPublicDashboard';
|
|
|
|
const selectors = e2eSelectors.pages.ShareDashboardModal.PublicDashboard;
|
|
|
|
export const Configuration = ({
|
|
disabled,
|
|
onChange,
|
|
register,
|
|
}: {
|
|
disabled: boolean;
|
|
onChange: (name: keyof ConfigPublicDashoardForm, value: boolean) => void;
|
|
register: UseFormRegister<ConfigPublicDashoardForm>;
|
|
}) => {
|
|
const styles = useStyles2(getStyles);
|
|
|
|
const dashboardState = useSelector((store) => store.dashboard);
|
|
const dashboard = dashboardState.getModel()!;
|
|
|
|
const timeRange = getTimeRange(dashboard.getDefaultTime(), dashboard);
|
|
|
|
return (
|
|
<>
|
|
<FieldSet disabled={disabled} className={styles.dashboardConfig}>
|
|
<VerticalGroup spacing="md">
|
|
<Layout orientation={1} spacing="xs" justify="space-between">
|
|
<Label description="The public dashboard uses the default time range settings of the dashboard">
|
|
Default time range
|
|
</Label>
|
|
<TimeRangeInput value={timeRange} disabled onChange={() => {}} />
|
|
</Layout>
|
|
<Layout orientation={0} spacing="sm">
|
|
<Switch
|
|
{...register('isTimeSelectionEnabled')}
|
|
data-testid={selectors.EnableTimeRangeSwitch}
|
|
onChange={(e) => onChange('isTimeSelectionEnabled', e.currentTarget.checked)}
|
|
/>
|
|
<Label description="Allow viewers to change time range">Time range picker enabled</Label>
|
|
</Layout>
|
|
<Layout orientation={0} spacing="sm">
|
|
<Switch
|
|
{...register('isAnnotationsEnabled')}
|
|
onChange={(e) => {
|
|
reportInteraction('grafana_dashboards_annotations_clicked', {
|
|
action: e.currentTarget.checked ? 'enable' : 'disable',
|
|
});
|
|
onChange('isAnnotationsEnabled', e.currentTarget.checked);
|
|
}}
|
|
data-testid={selectors.EnableAnnotationsSwitch}
|
|
/>
|
|
<Label description="Show annotations on public dashboard">Show annotations</Label>
|
|
</Layout>
|
|
</VerticalGroup>
|
|
</FieldSet>
|
|
</>
|
|
);
|
|
};
|
|
|
|
const getStyles = (theme: GrafanaTheme2) => ({
|
|
dashboardConfig: css`
|
|
margin: ${theme.spacing(0, 0, 3, 0)};
|
|
`,
|
|
});
|