mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* Update hook form * Update Form component * Update ChangePassword.tsx * Update custom types * Update SaveDashboardForm * Update form story * Update FieldArray.story.tsx * Bump hook form version * Update typescript to v4.2.4 * Update ForgottenPassword.tsx * Update LoginForm.tsx * Update SignupPage.tsx * Update VerifyEmail.tsx * Update AdminEditOrgPage.tsx * Update UserCreatePage.tsx * Update BasicSettings.tsx * Update NotificationChannelForm.tsx * Update NotificationChannelOptions.tsx * Update NotificationSettings.tsx * Update OptionElement.tsx * Update AlertRuleForm.tsx * Update AlertTypeStep.tsx * Update AnnotationsField.tsx * Update ConditionField.tsx * Update ConditionsStep.tsx * Update GroupAndNamespaceFields.tsx * Update LabelsField.tsx * Update QueryStep.tsx * Update RowOptionsForm.tsx * Update SaveDashboardAsForm.tsx * Update NewDashboardsFolder.tsx * Update ImportDashboardForm.tsx * Update DashboardImportPage.tsx * Update NewOrgPage.tsx * Update OrgProfile.tsx * Update UserInviteForm.tsx * Update PlaylistForm.tsx * Update ChangePasswordForm.tsx * Update UserProfileEditForm.tsx * Update TeamSettings.tsx * Update SignupInvited.tsx * Expose setValue from the Form * Update typescript to v4.2.4 * Remove ref from field props * Fix tests * Revert TS update * Use exact version * Update latest batch of changes * Reduce the number of strict TS errors * Fix defaults * more type error fixes * Update CreateTeam * fix folder picker in rule form * fixes for hook form 7 * Update docs Co-authored-by: Domas <domasx2@gmail.com>
118 lines
3.8 KiB
TypeScript
118 lines
3.8 KiB
TypeScript
import React, { FC, useCallback } from 'react';
|
|
import { Button, Field, FieldArray, InputControl, Label, TextArea, useStyles } from '@grafana/ui';
|
|
import { GrafanaTheme } from '@grafana/data';
|
|
import { css, cx } from '@emotion/css';
|
|
import { useFormContext } from 'react-hook-form';
|
|
import { RuleFormValues } from '../../types/rule-form';
|
|
import { AnnotationKeyInput } from './AnnotationKeyInput';
|
|
|
|
const AnnotationsField: FC = () => {
|
|
const styles = useStyles(getStyles);
|
|
const {
|
|
control,
|
|
register,
|
|
watch,
|
|
formState: { errors },
|
|
} = useFormContext();
|
|
const annotations = watch('annotations') as RuleFormValues['annotations'];
|
|
|
|
const existingKeys = useCallback(
|
|
(index: number): string[] => annotations.filter((_, idx: number) => idx !== index).map(({ key }) => key),
|
|
[annotations]
|
|
);
|
|
|
|
return (
|
|
<>
|
|
<Label>Summary and annotations</Label>
|
|
<FieldArray name={'annotations'} control={control}>
|
|
{({ fields, append, remove }) => {
|
|
return (
|
|
<div className={styles.flexColumn}>
|
|
{fields.map((field, index) => (
|
|
<div key={`${field.annotationKey}-${index}`} className={styles.flexRow}>
|
|
<Field
|
|
className={styles.field}
|
|
invalid={!!errors.annotations?.[index]?.key?.message}
|
|
error={errors.annotations?.[index]?.key?.message}
|
|
>
|
|
<InputControl
|
|
name={`annotations[${index}].key`}
|
|
render={({ field: { ref, ...field } }) => (
|
|
<AnnotationKeyInput {...field} existingKeys={existingKeys(index)} width={15} />
|
|
)}
|
|
control={control}
|
|
rules={{ required: { value: !!annotations[index]?.value, message: 'Required.' } }}
|
|
/>
|
|
</Field>
|
|
<Field
|
|
className={cx(styles.flexRowItemMargin, styles.field)}
|
|
invalid={!!errors.annotations?.[index]?.value?.message}
|
|
error={errors.annotations?.[index]?.value?.message}
|
|
>
|
|
<TextArea
|
|
className={styles.annotationTextArea}
|
|
{...register(`annotations[${index}].value`, {
|
|
required: { value: !!annotations[index]?.key, message: 'Required.' },
|
|
})}
|
|
placeholder={`value`}
|
|
defaultValue={field.value}
|
|
/>
|
|
</Field>
|
|
<Button
|
|
type="button"
|
|
className={styles.flexRowItemMargin}
|
|
aria-label="delete annotation"
|
|
icon="trash-alt"
|
|
variant="secondary"
|
|
onClick={() => remove(index)}
|
|
/>
|
|
</div>
|
|
))}
|
|
<Button
|
|
className={styles.addAnnotationsButton}
|
|
icon="plus-circle"
|
|
type="button"
|
|
variant="secondary"
|
|
onClick={() => {
|
|
append({});
|
|
}}
|
|
>
|
|
Add info
|
|
</Button>
|
|
</div>
|
|
);
|
|
}}
|
|
</FieldArray>
|
|
</>
|
|
);
|
|
};
|
|
|
|
const getStyles = (theme: GrafanaTheme) => ({
|
|
annotationTextArea: css`
|
|
width: 450px;
|
|
height: 76px;
|
|
`,
|
|
addAnnotationsButton: css`
|
|
flex-grow: 0;
|
|
align-self: flex-start;
|
|
margin-left: 124px;
|
|
`,
|
|
flexColumn: css`
|
|
display: flex;
|
|
flex-direction: column;
|
|
`,
|
|
field: css`
|
|
margin-bottom: ${theme.spacing.xs};
|
|
`,
|
|
flexRow: css`
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-start;
|
|
`,
|
|
flexRowItemMargin: css`
|
|
margin-left: ${theme.spacing.xs};
|
|
`,
|
|
});
|
|
|
|
export default AnnotationsField;
|