Commit a5deabbe by Josh Soref Committed by GitHub

Chore: spelling - grafana-data (#24436)

parent 5f4526ca
...@@ -17,7 +17,7 @@ describe('Read/Write arrow Table to DataFrame', () => { ...@@ -17,7 +17,7 @@ describe('Read/Write arrow Table to DataFrame', () => {
}, },
fields: [ fields: [
{ name: 'time', config: {}, type: FieldType.time, values: [1, 2, 3] }, { name: 'time', config: {}, type: FieldType.time, values: [1, 2, 3] },
{ name: 'value', config: { min: 0, max: 50, unit: 'somthing' }, type: FieldType.number, values: [1, 2, 3] }, { name: 'value', config: { min: 0, max: 50, unit: 'something' }, type: FieldType.number, values: [1, 2, 3] },
{ name: 'str', config: {}, type: FieldType.string, values: ['a', 'b', 'c'] }, { name: 'str', config: {}, type: FieldType.string, values: ['a', 'b', 'c'] },
], ],
}); });
......
...@@ -59,7 +59,7 @@ describe('dataFrameView', () => { ...@@ -59,7 +59,7 @@ describe('dataFrameView', () => {
expect(keys).toEqual(['time', 'name', 'value']); expect(keys).toEqual(['time', 'name', 'value']);
}); });
it('has a weird side effect that the object values change after interation', () => { it('has a weird side effect that the object values change after interaction', () => {
expect(vector.length).toEqual(3); expect(vector.length).toEqual(3);
// Get the first value // Get the first value
......
...@@ -152,7 +152,7 @@ export class MutableDataFrame<T = any> extends FunctionalVector<T> implements Da ...@@ -152,7 +152,7 @@ export class MutableDataFrame<T = any> extends FunctionalVector<T> implements Da
return Math.max(v, f.values.length); return Math.max(v, f.values.length);
}, 0); }, 0);
// Add empty elements until everything mastches // Add empty elements until everything matches
for (const field of this.fields) { for (const field of this.fields) {
while (field.values.length !== length) { while (field.values.length !== length) {
field.values.add(MISSING_VALUE); field.values.add(MISSING_VALUE);
......
...@@ -4,7 +4,7 @@ import { KeyValue } from '../types/data'; ...@@ -4,7 +4,7 @@ import { KeyValue } from '../types/data';
export interface Dimension<T = any> { export interface Dimension<T = any> {
// Name of the dimension // Name of the dimension
name: string; name: string;
// Colection of fields representing dimension // Collection of fields representing dimension
// I.e. in 2d graph we have two dimension- X and Y axes. Both dimensions can represent // I.e. in 2d graph we have two dimension- X and Y axes. Both dimensions can represent
// multiple fields being drawn on the graph. // multiple fields being drawn on the graph.
// For instance y-axis dimension is a collection of series value fields, // For instance y-axis dimension is a collection of series value fields,
......
...@@ -70,7 +70,7 @@ describe('toDataFrame', () => { ...@@ -70,7 +70,7 @@ describe('toDataFrame', () => {
}); });
expect(input.length).toEqual(2); expect(input.length).toEqual(2);
// If the object is alreay a DataFrame, it should not change // If the object is already a DataFrame, it should not change
const again = toDataFrame(input); const again = toDataFrame(input);
expect(again).toBe(input); expect(again).toBe(input);
}); });
...@@ -97,7 +97,7 @@ describe('toDataFrame', () => { ...@@ -97,7 +97,7 @@ describe('toDataFrame', () => {
).toThrowError('Expected table rows to be array, got object.'); ).toThrowError('Expected table rows to be array, got object.');
}); });
it('Guess Colum Types from value', () => { it('Guess Column Types from value', () => {
expect(guessFieldTypeFromValue(1)).toBe(FieldType.number); expect(guessFieldTypeFromValue(1)).toBe(FieldType.number);
expect(guessFieldTypeFromValue(1.234)).toBe(FieldType.number); expect(guessFieldTypeFromValue(1.234)).toBe(FieldType.number);
expect(guessFieldTypeFromValue(3.125e7)).toBe(FieldType.number); expect(guessFieldTypeFromValue(3.125e7)).toBe(FieldType.number);
...@@ -107,7 +107,7 @@ describe('toDataFrame', () => { ...@@ -107,7 +107,7 @@ describe('toDataFrame', () => {
expect(guessFieldTypeFromValue(dateTime())).toBe(FieldType.time); expect(guessFieldTypeFromValue(dateTime())).toBe(FieldType.time);
}); });
it('Guess Colum Types from strings', () => { it('Guess Column Types from strings', () => {
expect(guessFieldTypeFromValue('1')).toBe(FieldType.number); expect(guessFieldTypeFromValue('1')).toBe(FieldType.number);
expect(guessFieldTypeFromValue('1.234')).toBe(FieldType.number); expect(guessFieldTypeFromValue('1.234')).toBe(FieldType.number);
expect(guessFieldTypeFromValue('NaN')).toBe(FieldType.number); expect(guessFieldTypeFromValue('NaN')).toBe(FieldType.number);
...@@ -118,7 +118,7 @@ describe('toDataFrame', () => { ...@@ -118,7 +118,7 @@ describe('toDataFrame', () => {
expect(guessFieldTypeFromValue('xxxx')).toBe(FieldType.string); expect(guessFieldTypeFromValue('xxxx')).toBe(FieldType.string);
}); });
it('Guess Colum Types from series', () => { it('Guess Column Types from series', () => {
const series = new MutableDataFrame({ const series = new MutableDataFrame({
fields: [ fields: [
{ name: 'A (number)', values: [123, null] }, { name: 'A (number)', values: [123, null] },
...@@ -147,7 +147,7 @@ describe('toDataFrame', () => { ...@@ -147,7 +147,7 @@ describe('toDataFrame', () => {
'@timestamp': [1570044340458], '@timestamp': [1570044340458],
tags: ['deploy', 'website-01'], tags: ['deploy', 'website-01'],
description: 'Torkel deployed website', description: 'Torkel deployed website',
coordinates: { latitude: 12, longitude: 121, level: { depth: 3, coolnes: 'very' } }, coordinates: { latitude: 12, longitude: 121, level: { depth: 3, coolness: 'very' } },
'unescaped-content': 'breaking <br /> the <br /> row', 'unescaped-content': 'breaking <br /> the <br /> row',
}, },
], ],
...@@ -165,7 +165,7 @@ describe('toDataFrame', () => { ...@@ -165,7 +165,7 @@ describe('toDataFrame', () => {
}); });
}); });
describe('SerisData backwards compatibility', () => { describe('SeriesData backwards compatibility', () => {
it('can convert TimeSeries to series and back again', () => { it('can convert TimeSeries to series and back again', () => {
const timeseries = { const timeseries = {
target: 'Field Name', target: 'Field Name',
...@@ -280,7 +280,7 @@ describe('SerisData backwards compatibility', () => { ...@@ -280,7 +280,7 @@ describe('SerisData backwards compatibility', () => {
'@timestamp': [1570044340458], '@timestamp': [1570044340458],
tags: ['deploy', 'website-01'], tags: ['deploy', 'website-01'],
description: 'Torkel deployed website', description: 'Torkel deployed website',
coordinates: { latitude: 12, longitude: 121, level: { depth: 3, coolnes: 'very' } }, coordinates: { latitude: 12, longitude: 121, level: { depth: 3, coolness: 'very' } },
'unescaped-content': 'breaking <br /> the <br /> row', 'unescaped-content': 'breaking <br /> the <br /> row',
}, },
], ],
......
...@@ -247,7 +247,7 @@ describe('PanelPlugin', () => { ...@@ -247,7 +247,7 @@ describe('PanelPlugin', () => {
}); });
}); });
it('should ignore defaults that are not specified as availeble properties', () => { it('should ignore defaults that are not specified as available properties', () => {
const panel = new PanelPlugin(() => { const panel = new PanelPlugin(() => {
return <div>Panel</div>; return <div>Panel</div>;
}); });
......
...@@ -29,7 +29,7 @@ export interface SetFieldConfigOptionsArgs<TFieldConfigOptions = any> { ...@@ -29,7 +29,7 @@ export interface SetFieldConfigOptionsArgs<TFieldConfigOptions = any> {
standardOptions?: FieldConfigProperty[]; standardOptions?: FieldConfigProperty[];
/** /**
* Object specyfing standard option properties default values * Object specifying standard option properties default values
* *
* @example * @example
* ```typescript * ```typescript
...@@ -243,7 +243,7 @@ export class PanelPlugin<TOptions = any, TFieldConfigOptions extends object = an ...@@ -243,7 +243,7 @@ export class PanelPlugin<TOptions = any, TFieldConfigOptions extends object = an
} }
/** /**
* Allows specyfing which standard field config options panel should use and defining default values * Allows specifying which standard field config options panel should use and defining default values
* *
* @example * @example
* ```typescript * ```typescript
......
...@@ -97,7 +97,7 @@ describe('Stats Calculators', () => { ...@@ -97,7 +97,7 @@ describe('Stats Calculators', () => {
expect(stats.delta).toEqual(300); expect(stats.delta).toEqual(300);
}); });
it('consistenly check allIsNull/allIsZero', () => { it('consistently check allIsNull/allIsZero', () => {
const empty = createField('x'); const empty = createField('x');
const allNull = createField('x', [null, null, null, null]); const allNull = createField('x', [null, null, null, null]);
const allUndefined = createField('x', [undefined, undefined, undefined, undefined]); const allUndefined = createField('x', [undefined, undefined, undefined, undefined]);
...@@ -155,7 +155,7 @@ describe('Stats Calculators', () => { ...@@ -155,7 +155,7 @@ describe('Stats Calculators', () => {
`Invalid ${reducer} result for: ` + `Invalid ${reducer} result for: ` +
input.data.join(', ') + input.data.join(', ') +
` Expected: ${input.result}` + // configured ` Expected: ${input.result}` + // configured
` Recieved: Multiple: ${v1}, Single: ${v2}`; ` Received: Multiple: ${v1}, Single: ${v2}`;
expect(msg).toEqual(null); expect(msg).toEqual(null);
} }
} }
......
...@@ -245,7 +245,7 @@ export function doStandardCalcs(field: Field, ignoreNulls: boolean, nullAsZero: ...@@ -245,7 +245,7 @@ export function doStandardCalcs(field: Field, ignoreNulls: boolean, nullAsZero:
delta: 0, delta: 0,
step: Number.MAX_VALUE, step: Number.MAX_VALUE,
// Just used for calcutations -- not exposed as a stat // Just used for calculations -- not exposed as a stat
previousDeltaUp: true, previousDeltaUp: true,
} as FieldCalcs; } as FieldCalcs;
......
// Load the Buildtin matchers // Load the Builtin matchers
import { getFieldPredicateMatchers, getFramePredicateMatchers } from './matchers/predicates'; import { getFieldPredicateMatchers, getFramePredicateMatchers } from './matchers/predicates';
import { getFieldNameMatchers, getFrameNameMatchers } from './matchers/nameMatcher'; import { getFieldNameMatchers, getFrameNameMatchers } from './matchers/nameMatcher';
import { getFieldTypeMatchers } from './matchers/fieldTypeMatcher'; import { getFieldTypeMatchers } from './matchers/fieldTypeMatcher';
......
...@@ -52,7 +52,7 @@ const timeMatcher: FieldMatcherInfo = { ...@@ -52,7 +52,7 @@ const timeMatcher: FieldMatcherInfo = {
}; };
/** /**
* Registry Initalization * Registry Initialization
*/ */
export function getFieldTypeMatchers(): FieldMatcherInfo[] { export function getFieldTypeMatchers(): FieldMatcherInfo[] {
return [fieldTypeMatcher, numericMatcher, timeMatcher]; return [fieldTypeMatcher, numericMatcher, timeMatcher];
......
// This needs to be in its own file to avoid circular references // This needs to be in its own file to avoid circular references
// Builtin Predicates // Builtin Predicates
// not using 'any' and 'never' since they are reservered keywords // not using 'any' and 'never' since they are reserved keywords
export enum MatcherID { export enum MatcherID {
anyMatch = 'anyMatch', // checks children anyMatch = 'anyMatch', // checks children
allMatch = 'allMatch', // checks children allMatch = 'allMatch', // checks children
......
...@@ -124,7 +124,7 @@ const frameNameMatcher: FrameMatcherInfo<string> = { ...@@ -124,7 +124,7 @@ const frameNameMatcher: FrameMatcherInfo<string> = {
}; };
/** /**
* Registry Initalization * Registry Initialization
*/ */
export function getFieldNameMatchers(): FieldMatcherInfo[] { export function getFieldNameMatchers(): FieldMatcherInfo[] {
return [fieldNameMatcher, regexpFieldNameMatcher, multipleFieldNamesMatcher, regexpOrMultipleNamesMatcher]; return [fieldNameMatcher, regexpFieldNameMatcher, multipleFieldNamesMatcher, regexpOrMultipleNamesMatcher];
......
...@@ -8,7 +8,7 @@ export interface TransformerUIProps<T> { ...@@ -8,7 +8,7 @@ export interface TransformerUIProps<T> {
*/ */
options: T; options: T;
/** /**
* Pre-transform data rames * Pre-transform data frames
*/ */
input: DataFrame[]; input: DataFrame[];
onChange: (options: T) => void; onChange: (options: T) => void;
......
...@@ -524,9 +524,9 @@ export interface DataSourceInstanceSettings<T extends DataSourceJsonData = DataS ...@@ -524,9 +524,9 @@ export interface DataSourceInstanceSettings<T extends DataSourceJsonData = DataS
database?: string; database?: string;
/** /**
* This is the full Authorization header if basic auth is ennabled. * This is the full Authorization header if basic auth is enabled.
* Only available here when access is Browser (direct), when access is Server (proxy) * Only available here when access is Browser (direct), when access is Server (proxy)
* The basic auth header, username & password is never exposted to browser/Frontend * The basic auth header, username & password is never exposed to browser/Frontend
* so this will be empty then. * so this will be empty then.
*/ */
basicAuth?: string; basicAuth?: string;
......
...@@ -24,7 +24,7 @@ export interface ConfigOverrideRule { ...@@ -24,7 +24,7 @@ export interface ConfigOverrideRule {
} }
export interface FieldConfigSource<TOptions extends object = any> { export interface FieldConfigSource<TOptions extends object = any> {
// Defatuls applied to all numeric fields // Defaults applied to all numeric fields
defaults: FieldConfig<TOptions>; defaults: FieldConfig<TOptions>;
// Rules to override individual values // Rules to override individual values
......
...@@ -57,7 +57,7 @@ export interface PanelProps<T = any> { ...@@ -57,7 +57,7 @@ export interface PanelProps<T = any> {
fieldConfig: FieldConfigSource; fieldConfig: FieldConfigSource;
/** Field config change handler */ /** Field config change handler */
onFieldConfigChange: (config: FieldConfigSource) => void; onFieldConfigChange: (config: FieldConfigSource) => void;
/** Indicathes whether or not panel should be rendered transparent */ /** Indicates whether or not panel should be rendered transparent */
transparent: boolean; transparent: boolean;
/** Current width of the panel */ /** Current width of the panel */
width: number; width: number;
......
...@@ -7,7 +7,7 @@ export interface Vector<T = any> { ...@@ -7,7 +7,7 @@ export interface Vector<T = any> {
get(index: number): T; get(index: number): T;
/** /**
* Get the resutls as an array. * Get the results as an array.
*/ */
toArray(): T[]; toArray(): T[];
} }
......
...@@ -150,7 +150,7 @@ export class CSVReader { ...@@ -150,7 +150,7 @@ export class CSVReader {
this.state = ParseState.ReadingRows; this.state = ParseState.ReadingRows;
// Make sure colum structure is valid // Make sure column structure is valid
if (line.length > this.current.fields.length) { if (line.length > this.current.fields.length) {
const { fields } = this.current; const { fields } = this.current;
for (let f = fields.length; f < line.length; f++) { for (let f = fields.length; f < line.length; f++) {
......
...@@ -7,7 +7,7 @@ import { ArrayVector } from '../vector/ArrayVector'; ...@@ -7,7 +7,7 @@ import { ArrayVector } from '../vector/ArrayVector';
// This matches: // This matches:
// first a label from start of the string or first white space, then any word chars until "=" // first a label from start of the string or first white space, then any word chars until "="
// second either an empty quotes, or anything that starts with quote and ends with unescaped quote, // second either an empty quotes, or anything that starts with quote and ends with unescaped quote,
// or any non whitespace chars that do not start with qoute // or any non whitespace chars that do not start with quote
const LOGFMT_REGEXP = /(?:^|\s)([\w\(\)\[\]\{\}]+)=(""|(?:".*?[^\\]"|[^"\s]\S*))/; const LOGFMT_REGEXP = /(?:^|\s)([\w\(\)\[\]\{\}]+)=(""|(?:".*?[^\\]"|[^"\s]\S*))/;
/** /**
......
...@@ -38,7 +38,7 @@ describe('colors', () => { ...@@ -38,7 +38,7 @@ describe('colors', () => {
expect(getColorByName('aruba-sunshine')).toBeUndefined(); expect(getColorByName('aruba-sunshine')).toBeUndefined();
}); });
it('returns color definiton for known color', () => { it('returns color definition for known color', () => {
expect(getColorByName(SemiDarkBlue.name)).toBe(SemiDarkBlue); expect(getColorByName(SemiDarkBlue.name)).toBe(SemiDarkBlue);
}); });
}); });
......
...@@ -21,7 +21,7 @@ describe('hex', () => { ...@@ -21,7 +21,7 @@ describe('hex', () => {
}); });
describe('hex 0x', () => { describe('hex 0x', () => {
it('positive integeter', () => { it('positive integer', () => {
const str = toHex0x(7999, 0); const str = toHex0x(7999, 0);
expect(formattedValueToString(str)).toBe('0x1F3F'); expect(formattedValueToString(str)).toBe('0x1F3F');
}); });
......
...@@ -13,7 +13,7 @@ interface ValueFormatTest { ...@@ -13,7 +13,7 @@ interface ValueFormatTest {
} }
const formatTests: ValueFormatTest[] = [ const formatTests: ValueFormatTest[] = [
// Currancy // Currency
{ id: 'currencyUSD', decimals: 2, value: 1532.82, result: '$1.53K' }, { id: 'currencyUSD', decimals: 2, value: 1532.82, result: '$1.53K' },
{ id: 'currencyKRW', decimals: 2, value: 1532.82, result: '₩1.53K' }, { id: 'currencyKRW', decimals: 2, value: 1532.82, result: '₩1.53K' },
......
...@@ -12,7 +12,7 @@ interface CircularOptions<T> { ...@@ -12,7 +12,7 @@ interface CircularOptions<T> {
* Circular vector uses a single buffer to capture a stream of values * Circular vector uses a single buffer to capture a stream of values
* overwriting the oldest value on add. * overwriting the oldest value on add.
* *
* This supports addting to the 'head' or 'tail' and will grow the buffer * This supports adding to the 'head' or 'tail' and will grow the buffer
* to match a configured capacity. * to match a configured capacity.
*/ */
export class CircularVector<T = any> extends FunctionalVector implements MutableVector<T> { export class CircularVector<T = any> extends FunctionalVector implements MutableVector<T> {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment