mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 01:53:33 -06:00
* Variables: adds drag and drop in variables list * Refactor: fixes after PR comments * Chore: updates after PR comments * Refactor: adds styles during dragging * Docs: update doc * Chore: pushing Drone
127 lines
4.3 KiB
TypeScript
127 lines
4.3 KiB
TypeScript
import React, { MouseEvent, PureComponent } from 'react';
|
|
import { Icon, LinkButton } from '@grafana/ui';
|
|
import { selectors } from '@grafana/e2e-selectors';
|
|
|
|
import { toVariableIdentifier, toVariablePayload, VariableIdentifier } from '../state/types';
|
|
import { StoreState } from '../../../types';
|
|
import { VariableEditorEditor } from './VariableEditorEditor';
|
|
import { connect, ConnectedProps } from 'react-redux';
|
|
import { getEditorVariables } from '../state/selectors';
|
|
import { switchToEditMode, switchToListMode, switchToNewMode } from './actions';
|
|
import { changeVariableOrder, duplicateVariable, removeVariable } from '../state/sharedReducer';
|
|
import { VariableEditorList } from './VariableEditorList';
|
|
import { VariablesUnknownTable } from '../inspect/VariablesUnknownTable';
|
|
import { VariablesDependenciesButton } from '../inspect/VariablesDependenciesButton';
|
|
|
|
const mapStateToProps = (state: StoreState) => ({
|
|
variables: getEditorVariables(state),
|
|
idInEditor: state.templating.editor.id,
|
|
dashboard: state.dashboard.getModel(),
|
|
usagesNetwork: state.templating.inspect.usagesNetwork,
|
|
usages: state.templating.inspect.usages,
|
|
});
|
|
|
|
const mapDispatchToProps = {
|
|
changeVariableOrder,
|
|
duplicateVariable,
|
|
removeVariable,
|
|
switchToNewMode,
|
|
switchToEditMode,
|
|
switchToListMode,
|
|
};
|
|
|
|
interface OwnProps {}
|
|
|
|
const connector = connect(mapStateToProps, mapDispatchToProps);
|
|
|
|
type Props = OwnProps & ConnectedProps<typeof connector>;
|
|
|
|
class VariableEditorContainerUnconnected extends PureComponent<Props> {
|
|
componentDidMount(): void {
|
|
this.props.switchToListMode();
|
|
}
|
|
|
|
onChangeToListMode = (event: MouseEvent<HTMLAnchorElement>) => {
|
|
event.preventDefault();
|
|
this.props.switchToListMode();
|
|
};
|
|
|
|
onEditVariable = (identifier: VariableIdentifier) => {
|
|
this.props.switchToEditMode(identifier);
|
|
};
|
|
|
|
onNewVariable = () => {
|
|
this.props.switchToNewMode();
|
|
};
|
|
|
|
onChangeVariableOrder = (identifier: VariableIdentifier, fromIndex: number, toIndex: number) => {
|
|
this.props.changeVariableOrder(toVariablePayload(identifier, { fromIndex, toIndex }));
|
|
};
|
|
|
|
onDuplicateVariable = (identifier: VariableIdentifier) => {
|
|
this.props.duplicateVariable(toVariablePayload(identifier, { newId: (undefined as unknown) as string }));
|
|
};
|
|
|
|
onRemoveVariable = (identifier: VariableIdentifier) => {
|
|
this.props.removeVariable(toVariablePayload(identifier, { reIndex: true }));
|
|
};
|
|
|
|
render() {
|
|
const variableToEdit = this.props.variables.find((s) => s.id === this.props.idInEditor) ?? null;
|
|
|
|
return (
|
|
<div>
|
|
<div className="page-action-bar">
|
|
<h3 className="dashboard-settings__header">
|
|
<a
|
|
onClick={this.onChangeToListMode}
|
|
aria-label={selectors.pages.Dashboard.Settings.Variables.Edit.General.headerLink}
|
|
>
|
|
Variables
|
|
</a>
|
|
{this.props.idInEditor && (
|
|
<span>
|
|
<Icon name="angle-right" />
|
|
Edit
|
|
</span>
|
|
)}
|
|
</h3>
|
|
|
|
<div className="page-action-bar__spacer" />
|
|
{this.props.variables.length > 0 && variableToEdit === null && (
|
|
<>
|
|
<VariablesDependenciesButton variables={this.props.variables} />
|
|
<LinkButton
|
|
type="button"
|
|
onClick={this.onNewVariable}
|
|
aria-label={selectors.pages.Dashboard.Settings.Variables.List.newButton}
|
|
>
|
|
New
|
|
</LinkButton>
|
|
</>
|
|
)}
|
|
</div>
|
|
|
|
{!variableToEdit && (
|
|
<VariableEditorList
|
|
variables={this.props.variables}
|
|
onAdd={this.onNewVariable}
|
|
onEdit={this.onEditVariable}
|
|
onChangeOrder={this.onChangeVariableOrder}
|
|
onDuplicate={this.onDuplicateVariable}
|
|
onDelete={this.onRemoveVariable}
|
|
usages={this.props.usages}
|
|
usagesNetwork={this.props.usagesNetwork}
|
|
/>
|
|
)}
|
|
{!variableToEdit && this.props.variables.length > 0 && (
|
|
<VariablesUnknownTable variables={this.props.variables} dashboard={this.props.dashboard} />
|
|
)}
|
|
{variableToEdit && <VariableEditorEditor identifier={toVariableIdentifier(variableToEdit)} />}
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
export const VariableEditorContainer = connector(VariableEditorContainerUnconnected);
|