mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
77 lines
1.8 KiB
TypeScript
77 lines
1.8 KiB
TypeScript
import { selectors } from '@grafana/e2e-selectors';
|
|
import { Field, Label } from '@grafana/ui';
|
|
import React, { ReactNode } from 'react';
|
|
import { OptionsPaneCategoryDescriptor } from './OptionsPaneCategoryDescriptor';
|
|
|
|
export interface OptionsPaneItemProps {
|
|
title: string;
|
|
value?: any;
|
|
description?: string;
|
|
popularRank?: number;
|
|
render: () => React.ReactNode;
|
|
skipField?: boolean;
|
|
showIf?: () => boolean;
|
|
}
|
|
|
|
/**
|
|
* This is not a real React component but an intermediary to enable deep option search without traversing a React node tree.
|
|
*/
|
|
export class OptionsPaneItemDescriptor {
|
|
parent!: OptionsPaneCategoryDescriptor;
|
|
|
|
constructor(public props: OptionsPaneItemProps) {}
|
|
|
|
getLabel(isSearching?: boolean): ReactNode {
|
|
const { title, description } = this.props;
|
|
|
|
if (!isSearching) {
|
|
// Do not render label for categories with only one child
|
|
if (this.parent.props.title === title) {
|
|
return null;
|
|
}
|
|
|
|
return title;
|
|
}
|
|
|
|
const categories: string[] = [];
|
|
|
|
if (this.parent.parent) {
|
|
categories.push(this.parent.parent.props.title);
|
|
}
|
|
|
|
if (this.parent.props.title !== title) {
|
|
categories.push(this.parent.props.title);
|
|
}
|
|
|
|
return (
|
|
<Label description={description} category={categories}>
|
|
{title}
|
|
</Label>
|
|
);
|
|
}
|
|
|
|
render(isSearching?: boolean) {
|
|
const { title, description, render, showIf, skipField } = this.props;
|
|
const key = `${this.parent.props.id} ${title}`;
|
|
|
|
if (showIf && !showIf()) {
|
|
return null;
|
|
}
|
|
|
|
if (skipField) {
|
|
return render();
|
|
}
|
|
|
|
return (
|
|
<Field
|
|
label={this.getLabel(isSearching)}
|
|
description={description}
|
|
key={key}
|
|
aria-label={selectors.components.PanelEditor.OptionsPane.fieldLabel(key)}
|
|
>
|
|
{render() as React.ReactElement}
|
|
</Field>
|
|
);
|
|
}
|
|
}
|