mirror of
https://github.com/grafana/grafana.git
synced 2025-09-28 11:34:16 +08:00

* TypeScript: Fix some strict typescript errors * Fix more strict typescript errors * Few more fixes * Better string conversion * update check script to 195
31 lines
839 B
TypeScript
31 lines
839 B
TypeScript
import React, { FC } from 'react';
|
|
import { Modal, stylesFactory } from '@grafana/ui';
|
|
import { css } from '@emotion/css';
|
|
|
|
import { OnRowOptionsUpdate, RowOptionsForm } from './RowOptionsForm';
|
|
|
|
export interface RowOptionsModalProps {
|
|
title: string;
|
|
repeat?: string | null;
|
|
onDismiss: () => void;
|
|
onUpdate: OnRowOptionsUpdate;
|
|
}
|
|
|
|
export const RowOptionsModal: FC<RowOptionsModalProps> = ({ repeat, title, onDismiss, onUpdate }) => {
|
|
const styles = getStyles();
|
|
return (
|
|
<Modal isOpen={true} title="Row options" icon="copy" onDismiss={onDismiss} className={styles.modal}>
|
|
<RowOptionsForm repeat={repeat} title={title} onCancel={onDismiss} onUpdate={onUpdate} />
|
|
</Modal>
|
|
);
|
|
};
|
|
|
|
const getStyles = stylesFactory(() => {
|
|
return {
|
|
modal: css`
|
|
label: RowOptionsModal;
|
|
width: 500px;
|
|
`,
|
|
};
|
|
});
|