forked from grafana/grafana
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathOptionsPicker.tsx
197 lines (168 loc) · 7.01 KB
/
OptionsPicker.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
import { css } from '@emotion/css';
import { ComponentType, PureComponent } from 'react';
import { connect, ConnectedProps } from 'react-redux';
import { bindActionCreators } from 'redux';
import { LoadingState, VariableOption, VariableWithMultiSupport, VariableWithOptions } from '@grafana/data';
import { selectors } from '@grafana/e2e-selectors';
import { ClickOutsideWrapper } from '@grafana/ui';
import { StoreState, ThunkDispatch } from 'app/types';
import { VARIABLE_PREFIX } from '../../constants';
import { isMulti } from '../../guard';
import { getVariableQueryRunner } from '../../query/VariableQueryRunner';
import { formatVariableLabel } from '../../shared/formatVariable';
import { toKeyedAction } from '../../state/keyedVariablesReducer';
import { getVariablesState } from '../../state/selectors';
import { KeyedVariableIdentifier } from '../../state/types';
import { toKeyedVariableIdentifier } from '../../utils';
import { VariableInput } from '../shared/VariableInput';
import { VariableLink } from '../shared/VariableLink';
import VariableOptions from '../shared/VariableOptions';
import { NavigationKey, VariablePickerProps } from '../types';
import { commitChangesToVariable, filterOrSearchOptions, navigateOptions, openOptions } from './actions';
import { initialOptionPickerState, OptionsPickerState, toggleAllOptions, toggleOption } from './reducer';
export const optionPickerFactory = <Model extends VariableWithOptions | VariableWithMultiSupport>(): ComponentType<
VariablePickerProps<Model>
> => {
const mapDispatchToProps = (dispatch: ThunkDispatch) => {
return {
...bindActionCreators({ openOptions, commitChangesToVariable, navigateOptions }, dispatch),
filterOrSearchOptions: (identifier: KeyedVariableIdentifier, filter = '') => {
dispatch(filterOrSearchOptions(identifier, filter));
},
toggleAllOptions: (identifier: KeyedVariableIdentifier) =>
dispatch(toKeyedAction(identifier.rootStateKey, toggleAllOptions())),
toggleOption: (
identifier: KeyedVariableIdentifier,
option: VariableOption,
clearOthers: boolean,
forceSelect: boolean
) => dispatch(toKeyedAction(identifier.rootStateKey, toggleOption({ option, clearOthers, forceSelect }))),
};
};
const mapStateToProps = (state: StoreState, ownProps: OwnProps) => {
const { rootStateKey } = ownProps.variable;
if (!rootStateKey) {
console.error('OptionPickerFactory: variable has no rootStateKey');
return {
picker: initialOptionPickerState,
};
}
const p = getVariablesState(rootStateKey, state).optionsPicker;
const isMfeTeamFilter =
state.fnGlobalState.FNDashboard && state.fnGlobalState.metadata.teams.length && p.id === 'team';
const teamFilter = isMfeTeamFilter
? state.fnGlobalState.metadata.teams.map((t) => ({
text: t,
value: t,
selected: false,
}))
: [];
return {
picker: { ...p, ...(teamFilter.length && { options: [...p.options, ...teamFilter] }) },
mfeState: state.fnGlobalState,
};
};
const connector = connect(mapStateToProps, mapDispatchToProps);
interface OwnProps extends VariablePickerProps<Model> {}
type Props = OwnProps & ConnectedProps<typeof connector>;
class OptionsPickerUnconnected extends PureComponent<Props> {
onShowOptions = () =>
this.props.openOptions(toKeyedVariableIdentifier(this.props.variable), this.props.onVariableChange);
onHideOptions = () => {
if (!this.props.variable.rootStateKey) {
console.error('Variable has no rootStateKey');
return;
}
this.props.commitChangesToVariable(this.props.variable.rootStateKey, this.props.onVariableChange);
};
onToggleOption = (option: VariableOption, clearOthers: boolean) => {
const toggleFunc =
isMulti(this.props.variable) && this.props.variable.multi
? this.onToggleMultiValueVariable
: this.onToggleSingleValueVariable;
toggleFunc(option, clearOthers);
};
onToggleSingleValueVariable = (option: VariableOption, clearOthers: boolean) => {
this.props.toggleOption(toKeyedVariableIdentifier(this.props.variable), option, clearOthers, false);
this.onHideOptions();
};
onToggleMultiValueVariable = (option: VariableOption, clearOthers: boolean) => {
this.props.toggleOption(toKeyedVariableIdentifier(this.props.variable), option, clearOthers, false);
};
onToggleAllOptions = () => {
this.props.toggleAllOptions(toKeyedVariableIdentifier(this.props.variable));
};
onFilterOrSearchOptions = (filter: string) => {
this.props.filterOrSearchOptions(toKeyedVariableIdentifier(this.props.variable), filter);
};
onNavigate = (key: NavigationKey, clearOthers: boolean) => {
if (!this.props.variable.rootStateKey) {
console.error('Variable has no rootStateKey');
return;
}
this.props.navigateOptions(this.props.variable.rootStateKey, key, clearOthers);
};
render() {
const { variable, picker } = this.props;
const showOptions = picker.id === variable.id;
const styles = getStyles();
return (
<div className={styles.variableLinkWrapper} data-testid={selectors.components.Variables.variableLinkWrapper}>
{showOptions ? this.renderOptions(picker) : this.renderLink(variable)}
</div>
);
}
renderLink(variable: VariableWithOptions) {
const linkText = formatVariableLabel(variable);
const loading = variable.state === LoadingState.Loading;
return (
<VariableLink
id={VARIABLE_PREFIX + variable.id}
text={linkText}
onClick={this.onShowOptions}
loading={loading}
onCancel={this.onCancel}
disabled={this.props.readOnly}
/>
);
}
onCancel = () => {
getVariableQueryRunner().cancelRequest(toKeyedVariableIdentifier(this.props.variable));
};
renderOptions(picker: OptionsPickerState) {
const { id } = this.props.variable;
return (
<ClickOutsideWrapper onClick={this.onHideOptions}>
<VariableInput
id={VARIABLE_PREFIX + id}
value={picker.queryValue}
onChange={(value) => {
this.onFilterOrSearchOptions(value);
}}
onNavigate={this.onNavigate}
aria-expanded={true}
aria-controls={`options-${id}`}
/>
<VariableOptions
values={picker.options}
onToggle={this.onToggleOption}
onToggleAll={this.onToggleAllOptions}
highlightIndex={picker.highlightIndex}
multi={picker.multi}
selectedValues={picker.selectedValues}
id={`options-${id}`}
/>
</ClickOutsideWrapper>
);
}
}
const OptionsPicker = connector(OptionsPickerUnconnected);
OptionsPicker.displayName = 'OptionsPicker';
return OptionsPicker;
};
const getStyles = () => ({
variableLinkWrapper: css({
display: 'inline-block',
position: 'relative',
}),
});