文件操作 - CustomVariableEditor.tsx
返回文件管理
返回主菜单
删除本文件
文件: /usr/share/grafana/public/app/features/variables/custom/CustomVariableEditor.tsx
编辑文件内容
import React, { ChangeEvent, FocusEvent, PureComponent } from 'react'; import { CustomVariableModel, VariableWithMultiSupport } from '../types'; import { SelectionOptionsEditor } from '../editor/SelectionOptionsEditor'; import { OnPropChangeArguments, VariableEditorProps } from '../editor/types'; import { connectWithStore } from 'app/core/utils/connectWithReduxStore'; import { MapDispatchToProps, MapStateToProps } from 'react-redux'; import { StoreState } from 'app/types'; import { changeVariableMultiValue } from '../state/actions'; interface OwnProps extends VariableEditorProps<CustomVariableModel> {} interface ConnectedProps {} interface DispatchProps { changeVariableMultiValue: typeof changeVariableMultiValue; } export type Props = OwnProps & ConnectedProps & DispatchProps; class CustomVariableEditorUnconnected extends PureComponent<Props> { onChange = (event: ChangeEvent<HTMLInputElement>) => { this.props.onPropChange({ propName: 'query', propValue: event.target.value, }); }; onSelectionOptionsChange = async ({ propName, propValue }: OnPropChangeArguments<VariableWithMultiSupport>) => { this.props.onPropChange({ propName, propValue, updateOptions: true }); }; onBlur = (event: FocusEvent<HTMLInputElement>) => { this.props.onPropChange({ propName: 'query', propValue: event.target.value, updateOptions: true, }); }; render() { return ( <> <div className="gf-form-group"> <h5 className="section-heading">Custom Options</h5> <div className="gf-form"> <span className="gf-form-label width-14">Values separated by comma</span> <input type="text" className="gf-form-input" value={this.props.variable.query} onChange={this.onChange} onBlur={this.onBlur} placeholder="1, 10, 20, myvalue, escaped\,value" required aria-label="Variable editor Form Custom Query field" /> </div> </div> <SelectionOptionsEditor variable={this.props.variable} onPropChange={this.onSelectionOptionsChange} onMultiChanged={this.props.changeVariableMultiValue} /> </> ); } } const mapStateToProps: MapStateToProps<ConnectedProps, OwnProps, StoreState> = (state, ownProps) => ({}); const mapDispatchToProps: MapDispatchToProps<DispatchProps, OwnProps> = { changeVariableMultiValue, }; export const CustomVariableEditor = connectWithStore( CustomVariableEditorUnconnected, mapStateToProps, mapDispatchToProps );
修改文件时间
将文件时间修改为当前时间的前一年
删除文件