mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
react-panel: Time range options moved to "Queries" tab
This commit is contained in:
43
public/app/core/components/Form/Element.tsx
Normal file
43
public/app/core/components/Form/Element.tsx
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
import React, { PureComponent, ReactNode, ReactElement } from 'react';
|
||||||
|
import { Label } from './Label';
|
||||||
|
import { uniqueId } from 'lodash';
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
label?: ReactNode;
|
||||||
|
labelClassName?: string;
|
||||||
|
id?: string;
|
||||||
|
children: ReactElement<any>;
|
||||||
|
}
|
||||||
|
|
||||||
|
export class Element extends PureComponent<Props> {
|
||||||
|
elementId: string = this.props.id || uniqueId('form-element-');
|
||||||
|
|
||||||
|
get elementLabel() {
|
||||||
|
const { label, labelClassName } = this.props;
|
||||||
|
|
||||||
|
if (label) {
|
||||||
|
return (
|
||||||
|
<Label htmlFor={this.elementId} className={labelClassName}>
|
||||||
|
{label}
|
||||||
|
</Label>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
get children() {
|
||||||
|
const { children } = this.props;
|
||||||
|
|
||||||
|
return React.cloneElement(children, { id: this.elementId });
|
||||||
|
}
|
||||||
|
|
||||||
|
render() {
|
||||||
|
return (
|
||||||
|
<div className="our-custom-wrapper-class">
|
||||||
|
{this.elementLabel}
|
||||||
|
{this.children}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
96
public/app/core/components/Form/Input.tsx
Normal file
96
public/app/core/components/Form/Input.tsx
Normal file
@@ -0,0 +1,96 @@
|
|||||||
|
import React, { PureComponent } from 'react';
|
||||||
|
import { ValidationRule } from 'app/types';
|
||||||
|
|
||||||
|
export enum InputStatus {
|
||||||
|
Default = 'default',
|
||||||
|
Loading = 'loading',
|
||||||
|
Invalid = 'invalid',
|
||||||
|
Valid = 'valid',
|
||||||
|
}
|
||||||
|
|
||||||
|
export enum InputTypes {
|
||||||
|
Text = 'text',
|
||||||
|
Number = 'number',
|
||||||
|
Password = 'password',
|
||||||
|
Email = 'email',
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
status?: InputStatus;
|
||||||
|
validationRules: ValidationRule[];
|
||||||
|
hideErrorMessage?: boolean;
|
||||||
|
onBlurWithStatus?: (evt, status: InputStatus) => void;
|
||||||
|
emptyToNull?: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
const validator = (value: string, validationRules: ValidationRule[]) => {
|
||||||
|
const errors = validationRules.reduce((acc, currRule) => {
|
||||||
|
if (!currRule.rule(value)) {
|
||||||
|
return acc.concat(currRule.errorMessage);
|
||||||
|
}
|
||||||
|
return acc;
|
||||||
|
}, []);
|
||||||
|
return errors.length > 0 ? errors : null;
|
||||||
|
};
|
||||||
|
|
||||||
|
export class Input extends PureComponent<Props & React.HTMLProps<HTMLInputElement>> {
|
||||||
|
state = {
|
||||||
|
error: null,
|
||||||
|
};
|
||||||
|
|
||||||
|
get status() {
|
||||||
|
const { error } = this.state;
|
||||||
|
if (error) {
|
||||||
|
return InputStatus.Invalid;
|
||||||
|
}
|
||||||
|
return InputStatus.Valid;
|
||||||
|
}
|
||||||
|
|
||||||
|
onBlurWithValidation = evt => {
|
||||||
|
const { validationRules, onBlurWithStatus, onBlur } = this.props;
|
||||||
|
|
||||||
|
let errors = null;
|
||||||
|
if (validationRules) {
|
||||||
|
errors = validator(evt.currentTarget.value, validationRules);
|
||||||
|
this.setState(prevState => {
|
||||||
|
return {
|
||||||
|
...prevState,
|
||||||
|
error: errors ? errors[0] : null,
|
||||||
|
};
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
if (onBlurWithStatus) {
|
||||||
|
onBlurWithStatus(evt, errors ? InputStatus.Invalid : InputStatus.Valid);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (onBlur) {
|
||||||
|
onBlur(evt);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
render() {
|
||||||
|
const {
|
||||||
|
status,
|
||||||
|
validationRules,
|
||||||
|
onBlurWithStatus,
|
||||||
|
onBlur,
|
||||||
|
className,
|
||||||
|
hideErrorMessage,
|
||||||
|
emptyToNull,
|
||||||
|
...restProps
|
||||||
|
} = this.props;
|
||||||
|
|
||||||
|
const { error } = this.state;
|
||||||
|
|
||||||
|
let inputClassName = 'gf-form-input';
|
||||||
|
inputClassName = this.status === InputStatus.Invalid ? inputClassName + ' invalid' : inputClassName;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="our-custom-wrapper-class">
|
||||||
|
<input {...restProps} onBlur={this.onBlurWithValidation} className={inputClassName} />
|
||||||
|
{error && !hideErrorMessage && <span>{error}</span>}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
19
public/app/core/components/Form/Label.tsx
Normal file
19
public/app/core/components/Form/Label.tsx
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
import React, { PureComponent, ReactNode } from 'react';
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
children: ReactNode;
|
||||||
|
htmlFor?: string;
|
||||||
|
className?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export class Label extends PureComponent<Props> {
|
||||||
|
render() {
|
||||||
|
const { children, htmlFor, className } = this.props;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<label className={`custom-label-class ${className || ''}`} htmlFor={htmlFor}>
|
||||||
|
{children}
|
||||||
|
</label>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
3
public/app/core/components/Form/index.ts
Normal file
3
public/app/core/components/Form/index.ts
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
export { Element } from './Element';
|
||||||
|
export { Input } from './Input';
|
||||||
|
export { Label } from './Label';
|
||||||
@@ -159,3 +159,12 @@ export function describeTimeRange(range: RawTimeRange): string {
|
|||||||
|
|
||||||
return range.from.toString() + ' to ' + range.to.toString();
|
return range.from.toString() + ' to ' + range.to.toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export const isValidTimeSpan = (value: string) => {
|
||||||
|
if (value.indexOf('$') === 0 || value.indexOf('+$') === 0) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
const info = describeTextRange(value);
|
||||||
|
return info.invalid !== true;
|
||||||
|
};
|
||||||
|
|||||||
@@ -8,6 +8,11 @@ import { DashboardModel } from '../dashboard_model';
|
|||||||
import './../../panel/metrics_tab';
|
import './../../panel/metrics_tab';
|
||||||
import config from 'app/core/config';
|
import config from 'app/core/config';
|
||||||
import { QueryInspector } from './QueryInspector';
|
import { QueryInspector } from './QueryInspector';
|
||||||
|
import { Switch } from 'app/core/components/Switch/Switch';
|
||||||
|
import { Input } from 'app/core/components/Form';
|
||||||
|
import { InputStatus } from 'app/core/components/Form/Input';
|
||||||
|
import { isValidTimeSpan } from 'app/core/utils/rangeutil';
|
||||||
|
import { ValidationRule } from 'app/types';
|
||||||
|
|
||||||
// Services
|
// Services
|
||||||
import { getDatasourceSrv } from 'app/features/plugins/datasource_srv';
|
import { getDatasourceSrv } from 'app/features/plugins/datasource_srv';
|
||||||
@@ -29,6 +34,7 @@ interface Help {
|
|||||||
interface State {
|
interface State {
|
||||||
currentDatasource: DataSourceSelectItem;
|
currentDatasource: DataSourceSelectItem;
|
||||||
help: Help;
|
help: Help;
|
||||||
|
hideTimeOverride: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface LoadingPlaceholderProps {
|
interface LoadingPlaceholderProps {
|
||||||
@@ -36,6 +42,17 @@ interface LoadingPlaceholderProps {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const LoadingPlaceholder: SFC<LoadingPlaceholderProps> = ({ text }) => <h2>{text}</h2>;
|
const LoadingPlaceholder: SFC<LoadingPlaceholderProps> = ({ text }) => <h2>{text}</h2>;
|
||||||
|
const validationRules: ValidationRule[] = [
|
||||||
|
{
|
||||||
|
rule: value => {
|
||||||
|
if (!value) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return isValidTimeSpan(value);
|
||||||
|
},
|
||||||
|
errorMessage: 'Not a valid timespan',
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
export class QueriesTab extends PureComponent<Props, State> {
|
export class QueriesTab extends PureComponent<Props, State> {
|
||||||
element: any;
|
element: any;
|
||||||
@@ -53,6 +70,7 @@ export class QueriesTab extends PureComponent<Props, State> {
|
|||||||
isLoading: false,
|
isLoading: false,
|
||||||
helpHtml: null,
|
helpHtml: null,
|
||||||
},
|
},
|
||||||
|
hideTimeOverride: false,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -215,9 +233,40 @@ export class QueriesTab extends PureComponent<Props, State> {
|
|||||||
return isLoading ? <LoadingPlaceholder text="Loading help..." /> : helpHtml;
|
return isLoading ? <LoadingPlaceholder text="Loading help..." /> : helpHtml;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
emptyToNull = (value: string) => {
|
||||||
|
return value === '' ? null : value;
|
||||||
|
};
|
||||||
|
|
||||||
|
onOverrideTime = (evt, status: InputStatus) => {
|
||||||
|
const { value } = evt.target;
|
||||||
|
const { panel } = this.props;
|
||||||
|
const emptyToNullValue = this.emptyToNull(value);
|
||||||
|
if (status === InputStatus.Valid && panel.timeFrom !== emptyToNullValue) {
|
||||||
|
panel.timeFrom = emptyToNullValue;
|
||||||
|
panel.refresh();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
onTimeShift = (evt, status: InputStatus) => {
|
||||||
|
const { value } = evt.target;
|
||||||
|
const { panel } = this.props;
|
||||||
|
const emptyToNullValue = this.emptyToNull(value);
|
||||||
|
if (status === InputStatus.Valid && panel.timeShift !== emptyToNullValue) {
|
||||||
|
panel.timeShift = emptyToNullValue;
|
||||||
|
panel.refresh();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
onToggleTimeOverride = () => {
|
||||||
|
const { panel } = this.props;
|
||||||
|
panel.hideTimeOverride = !panel.hideTimeOverride;
|
||||||
|
panel.refresh();
|
||||||
|
};
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
const { currentDatasource } = this.state;
|
const { currentDatasource } = this.state;
|
||||||
|
const hideTimeOverride = this.props.panel.hideTimeOverride;
|
||||||
|
console.log('hideTimeOverride', hideTimeOverride);
|
||||||
const { hasQueryHelp, queryOptions } = currentDatasource.meta;
|
const { hasQueryHelp, queryOptions } = currentDatasource.meta;
|
||||||
const hasQueryOptions = !!queryOptions;
|
const hasQueryOptions = !!queryOptions;
|
||||||
const dsInformation = {
|
const dsInformation = {
|
||||||
@@ -256,7 +305,55 @@ export class QueriesTab extends PureComponent<Props, State> {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<EditorTabBody heading="Queries" main={dsInformation} toolbarItems={[options, queryInspector, dsHelp]}>
|
<EditorTabBody heading="Queries" main={dsInformation} toolbarItems={[options, queryInspector, dsHelp]}>
|
||||||
<div ref={element => (this.element = element)} style={{ width: '100%' }} />
|
<>
|
||||||
|
<div ref={element => (this.element = element)} style={{ width: '100%' }} />
|
||||||
|
|
||||||
|
<h5 className="section-heading">Time Range</h5>
|
||||||
|
|
||||||
|
<div className="gf-form-group">
|
||||||
|
<div className="gf-form">
|
||||||
|
<span className="gf-form-label">
|
||||||
|
<i className="fa fa-clock-o" />
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<span className="gf-form-label width-12">Override relative time</span>
|
||||||
|
<span className="gf-form-label width-6">Last</span>
|
||||||
|
<Input
|
||||||
|
type="text"
|
||||||
|
className="gf-form-input max-width-8"
|
||||||
|
placeholder="1h"
|
||||||
|
onBlurWithStatus={this.onOverrideTime}
|
||||||
|
validationRules={validationRules}
|
||||||
|
hideErrorMessage={true}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="gf-form">
|
||||||
|
<span className="gf-form-label">
|
||||||
|
<i className="fa fa-clock-o" />
|
||||||
|
</span>
|
||||||
|
<span className="gf-form-label width-12">Add time shift</span>
|
||||||
|
<span className="gf-form-label width-6">Amount</span>
|
||||||
|
<Input
|
||||||
|
type="text"
|
||||||
|
className="gf-form-input max-width-8"
|
||||||
|
placeholder="1h"
|
||||||
|
onBlurWithStatus={this.onTimeShift}
|
||||||
|
validationRules={validationRules}
|
||||||
|
hideErrorMessage={true}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="gf-form-inline">
|
||||||
|
<div className="gf-form">
|
||||||
|
<span className="gf-form-label">
|
||||||
|
<i className="fa fa-clock-o" />
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<Switch label="Hide time override info" checked={hideTimeOverride} onChange={this.onToggleTimeOverride} />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</>
|
||||||
</EditorTabBody>
|
</EditorTabBody>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
4
public/app/types/form.ts
Normal file
4
public/app/types/form.ts
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
export interface ValidationRule {
|
||||||
|
rule: (value: string) => boolean;
|
||||||
|
errorMessage: string;
|
||||||
|
}
|
||||||
@@ -30,7 +30,7 @@ import {
|
|||||||
AppNotificationTimeout,
|
AppNotificationTimeout,
|
||||||
} from './appNotifications';
|
} from './appNotifications';
|
||||||
import { DashboardSearchHit } from './search';
|
import { DashboardSearchHit } from './search';
|
||||||
|
import { ValidationRule } from './form';
|
||||||
export {
|
export {
|
||||||
Team,
|
Team,
|
||||||
TeamsState,
|
TeamsState,
|
||||||
@@ -89,6 +89,7 @@ export {
|
|||||||
AppNotificationTimeout,
|
AppNotificationTimeout,
|
||||||
DashboardSearchHit,
|
DashboardSearchHit,
|
||||||
UserState,
|
UserState,
|
||||||
|
ValidationRule,
|
||||||
};
|
};
|
||||||
|
|
||||||
export interface StoreState {
|
export interface StoreState {
|
||||||
|
|||||||
@@ -1,7 +1,11 @@
|
|||||||
input[type="text"].ng-dirty.ng-invalid {
|
input[type='text'].ng-dirty.ng-invalid {
|
||||||
}
|
}
|
||||||
|
|
||||||
input.validation-error,
|
input.validation-error,
|
||||||
input.ng-dirty.ng-invalid {
|
input.ng-dirty.ng-invalid {
|
||||||
box-shadow: inset 0 0px 5px $red;
|
box-shadow: inset 0 0px 5px $red;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
input.invalid {
|
||||||
|
box-shadow: inset 0 0px 5px $red;
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user