Files
grafana/public/app/features/dashboard/components/DashboardSettings/JsonEditorSettings.tsx
Torkel Ödegaard 6c39a1995f Page: More easily support full height pages (#56524)
* Page: More easily support full height pages

* tweaks to JSONSettingsPage
2022-10-07 10:56:12 +02:00

59 lines
1.7 KiB
TypeScript

import { css } from '@emotion/css';
import React, { useState } from 'react';
import { GrafanaTheme2 } from '@grafana/data';
import { Button, CodeEditor, useStyles2 } from '@grafana/ui';
import { Page } from 'app/core/components/PageNew/Page';
import { dashboardWatcher } from 'app/features/live/dashboard/dashboardWatcher';
import { getDashboardSrv } from '../../services/DashboardSrv';
import { SettingsPageProps } from './types';
export function JsonEditorSettings({ dashboard, sectionNav }: SettingsPageProps) {
const [dashboardJson, setDashboardJson] = useState<string>(JSON.stringify(dashboard.getSaveModelClone(), null, 2));
const onClick = async () => {
await getDashboardSrv().saveJSONDashboard(dashboardJson);
dashboardWatcher.reloadPage();
};
const styles = useStyles2(getStyles);
const subTitle =
'The JSON model below is the data structure that defines the dashboard. This includes dashboard settings, panel settings, layout, queries, and so on';
return (
<Page navModel={sectionNav} subTitle={subTitle}>
<div className={styles.wrapper}>
<CodeEditor
value={dashboardJson}
language="json"
showMiniMap={true}
showLineNumbers={true}
onBlur={setDashboardJson}
containerStyles={styles.codeEditor}
/>
{dashboard.meta.canSave && (
<div>
<Button type="submit" onClick={onClick}>
Save changes
</Button>
</div>
)}
</div>
</Page>
);
}
const getStyles = (theme: GrafanaTheme2) => ({
wrapper: css({
display: 'flex',
height: '100%',
flexDirection: 'column',
gap: theme.spacing(2),
}),
codeEditor: css({
flexGrow: 1,
}),
});