Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
a9c33ab6
Commit
a9c33ab6
authored
Jan 22, 2019
by
Hugo Häggmark
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved ValueMapping logic and tests to separate files
parent
bbb75961
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
173 additions
and
194 deletions
+173
-194
packages/grafana-ui/src/components/Gauge/Gauge.test.tsx
+0
-103
packages/grafana-ui/src/components/Gauge/Gauge.tsx
+3
-91
packages/grafana-ui/src/utils/valueMappings.test.ts
+81
-0
packages/grafana-ui/src/utils/valueMappings.ts
+89
-0
No files found.
packages/grafana-ui/src/components/Gauge/Gauge.test.tsx
View file @
a9c33ab6
...
...
@@ -98,109 +98,6 @@ describe('Get thresholds formatted', () => {
});
});
describe
(
'Format value with value mappings'
,
()
=>
{
it
(
'should return undefined with no valuemappings'
,
()
=>
{
const
valueMappings
:
ValueMapping
[]
=
[];
const
value
=
'10'
;
const
{
instance
}
=
setup
({
valueMappings
});
const
result
=
instance
.
getFirstFormattedValueMapping
(
valueMappings
,
value
);
expect
(
result
).
toBeUndefined
();
});
it
(
'should return undefined with no matching valuemappings'
,
()
=>
{
const
valueMappings
:
ValueMapping
[]
=
[
{
id
:
0
,
operator
:
''
,
text
:
'elva'
,
type
:
MappingType
.
ValueToText
,
value
:
'11'
},
{
id
:
1
,
operator
:
''
,
text
:
'1-9'
,
type
:
MappingType
.
RangeToText
,
from
:
'1'
,
to
:
'9'
},
];
const
value
=
'10'
;
const
{
instance
}
=
setup
({
valueMappings
});
const
result
=
instance
.
getFirstFormattedValueMapping
(
valueMappings
,
value
);
expect
(
result
).
toBeUndefined
();
});
it
(
'should return first matching mapping with lowest id'
,
()
=>
{
const
valueMappings
:
ValueMapping
[]
=
[
{
id
:
0
,
operator
:
''
,
text
:
'1-20'
,
type
:
MappingType
.
RangeToText
,
from
:
'1'
,
to
:
'20'
},
{
id
:
1
,
operator
:
''
,
text
:
'tio'
,
type
:
MappingType
.
ValueToText
,
value
:
'10'
},
];
const
value
=
'10'
;
const
{
instance
}
=
setup
({
valueMappings
});
const
result
=
instance
.
getFirstFormattedValueMapping
(
valueMappings
,
value
);
expect
(
result
.
text
).
toEqual
(
'1-20'
);
});
it
(
'should return if value is null and value to text mapping value is null'
,
()
=>
{
const
valueMappings
:
ValueMapping
[]
=
[
{
id
:
0
,
operator
:
''
,
text
:
'1-20'
,
type
:
MappingType
.
RangeToText
,
from
:
'1'
,
to
:
'20'
},
{
id
:
1
,
operator
:
''
,
text
:
'<NULL>'
,
type
:
MappingType
.
ValueToText
,
value
:
'null'
},
];
const
value
=
null
;
const
{
instance
}
=
setup
({
valueMappings
});
const
result
=
instance
.
getFirstFormattedValueMapping
(
valueMappings
,
value
);
expect
(
result
.
text
).
toEqual
(
'<NULL>'
);
});
it
(
'should return if value is null and range to text mapping from and to is null'
,
()
=>
{
const
valueMappings
:
ValueMapping
[]
=
[
{
id
:
0
,
operator
:
''
,
text
:
'<NULL>'
,
type
:
MappingType
.
RangeToText
,
from
:
'null'
,
to
:
'null'
},
{
id
:
1
,
operator
:
''
,
text
:
'elva'
,
type
:
MappingType
.
ValueToText
,
value
:
'11'
},
];
const
value
=
null
;
const
{
instance
}
=
setup
({
valueMappings
});
const
result
=
instance
.
getFirstFormattedValueMapping
(
valueMappings
,
value
);
expect
(
result
.
text
).
toEqual
(
'<NULL>'
);
});
it
(
'should return rangeToText mapping where value equals to'
,
()
=>
{
const
valueMappings
:
ValueMapping
[]
=
[
{
id
:
0
,
operator
:
''
,
text
:
'1-10'
,
type
:
MappingType
.
RangeToText
,
from
:
'1'
,
to
:
'10'
},
{
id
:
1
,
operator
:
''
,
text
:
'elva'
,
type
:
MappingType
.
ValueToText
,
value
:
'11'
},
];
const
value
=
'10'
;
const
{
instance
}
=
setup
({
valueMappings
});
const
result
=
instance
.
getFirstFormattedValueMapping
(
valueMappings
,
value
);
expect
(
result
.
text
).
toEqual
(
'1-10'
);
});
it
(
'should return rangeToText mapping where value equals from'
,
()
=>
{
const
valueMappings
:
ValueMapping
[]
=
[
{
id
:
0
,
operator
:
''
,
text
:
'10-20'
,
type
:
MappingType
.
RangeToText
,
from
:
'10'
,
to
:
'20'
},
{
id
:
1
,
operator
:
''
,
text
:
'elva'
,
type
:
MappingType
.
ValueToText
,
value
:
'11'
},
];
const
value
=
'10'
;
const
{
instance
}
=
setup
({
valueMappings
});
const
result
=
instance
.
getFirstFormattedValueMapping
(
valueMappings
,
value
);
expect
(
result
.
text
).
toEqual
(
'10-20'
);
});
it
(
'should return rangeToText mapping where value is between from and to'
,
()
=>
{
const
valueMappings
:
ValueMapping
[]
=
[
{
id
:
0
,
operator
:
''
,
text
:
'1-20'
,
type
:
MappingType
.
RangeToText
,
from
:
'1'
,
to
:
'20'
},
{
id
:
1
,
operator
:
''
,
text
:
'elva'
,
type
:
MappingType
.
ValueToText
,
value
:
'11'
},
];
const
value
=
'10'
;
const
{
instance
}
=
setup
({
valueMappings
});
const
result
=
instance
.
getFirstFormattedValueMapping
(
valueMappings
,
value
);
expect
(
result
.
text
).
toEqual
(
'1-20'
);
});
});
describe
(
'Format value'
,
()
=>
{
it
(
'should return if value isNaN'
,
()
=>
{
const
valueMappings
:
ValueMapping
[]
=
[];
...
...
packages/grafana-ui/src/components/Gauge/Gauge.tsx
View file @
a9c33ab6
import
React
,
{
PureComponent
}
from
'react'
;
import
$
from
'jquery'
;
import
{
ValueMapping
,
Threshold
,
ThemeName
,
MappingType
,
BasicGaugeColor
,
ThemeNames
,
ValueMap
,
RangeMap
,
}
from
'../../types/panel'
;
import
{
ValueMapping
,
Threshold
,
ThemeName
,
BasicGaugeColor
,
ThemeNames
}
from
'../../types/panel'
;
import
{
TimeSeriesVMs
}
from
'../../types/series'
;
import
{
getValueFormat
}
from
'../../utils/valueFormats/valueFormats'
;
type
TimeSeriesValue
=
string
|
number
|
null
;
import
{
TimeSeriesValue
,
getMappedValue
}
from
'../../utils/valueMappings'
;
export
interface
Props
{
decimals
:
number
;
...
...
@@ -59,84 +49,6 @@ export class Gauge extends PureComponent<Props> {
this
.
draw
();
}
addValueToTextMappingText
(
allValueMappings
:
ValueMapping
[],
valueToTextMapping
:
ValueMap
,
value
:
TimeSeriesValue
)
{
if
(
valueToTextMapping
.
value
===
undefined
)
{
return
allValueMappings
;
}
if
(
value
===
null
&&
valueToTextMapping
.
value
&&
valueToTextMapping
.
value
.
toLowerCase
()
===
'null'
)
{
return
allValueMappings
.
concat
(
valueToTextMapping
);
}
const
valueAsNumber
=
parseFloat
(
value
as
string
);
const
valueToTextMappingAsNumber
=
parseFloat
(
valueToTextMapping
.
value
as
string
);
if
(
isNaN
(
valueAsNumber
)
||
isNaN
(
valueToTextMappingAsNumber
))
{
return
allValueMappings
;
}
if
(
valueAsNumber
!==
valueToTextMappingAsNumber
)
{
return
allValueMappings
;
}
return
allValueMappings
.
concat
(
valueToTextMapping
);
}
addRangeToTextMappingText
(
allValueMappings
:
ValueMapping
[],
rangeToTextMapping
:
RangeMap
,
value
:
TimeSeriesValue
)
{
if
(
rangeToTextMapping
.
from
===
undefined
||
rangeToTextMapping
.
to
===
undefined
||
value
===
undefined
)
{
return
allValueMappings
;
}
if
(
value
===
null
&&
rangeToTextMapping
.
from
&&
rangeToTextMapping
.
to
&&
rangeToTextMapping
.
from
.
toLowerCase
()
===
'null'
&&
rangeToTextMapping
.
to
.
toLowerCase
()
===
'null'
)
{
return
allValueMappings
.
concat
(
rangeToTextMapping
);
}
const
valueAsNumber
=
parseFloat
(
value
as
string
);
const
fromAsNumber
=
parseFloat
(
rangeToTextMapping
.
from
as
string
);
const
toAsNumber
=
parseFloat
(
rangeToTextMapping
.
to
as
string
);
if
(
isNaN
(
valueAsNumber
)
||
isNaN
(
fromAsNumber
)
||
isNaN
(
toAsNumber
))
{
return
allValueMappings
;
}
if
(
valueAsNumber
>=
fromAsNumber
&&
valueAsNumber
<=
toAsNumber
)
{
return
allValueMappings
.
concat
(
rangeToTextMapping
);
}
return
allValueMappings
;
}
getAllFormattedValueMappings
(
valueMappings
:
ValueMapping
[],
value
:
TimeSeriesValue
)
{
const
allFormattedValueMappings
=
valueMappings
.
reduce
(
(
allValueMappings
,
valueMapping
)
=>
{
if
(
valueMapping
.
type
===
MappingType
.
ValueToText
)
{
allValueMappings
=
this
.
addValueToTextMappingText
(
allValueMappings
,
valueMapping
as
ValueMap
,
value
);
}
else
if
(
valueMapping
.
type
===
MappingType
.
RangeToText
)
{
allValueMappings
=
this
.
addRangeToTextMappingText
(
allValueMappings
,
valueMapping
as
RangeMap
,
value
);
}
return
allValueMappings
;
},
[]
as
ValueMapping
[]
);
allFormattedValueMappings
.
sort
((
t1
,
t2
)
=>
{
return
t1
.
id
-
t2
.
id
;
});
return
allFormattedValueMappings
;
}
getFirstFormattedValueMapping
(
valueMappings
:
ValueMapping
[],
value
:
TimeSeriesValue
)
{
return
this
.
getAllFormattedValueMappings
(
valueMappings
,
value
)[
0
];
}
formatValue
(
value
:
TimeSeriesValue
)
{
const
{
decimals
,
valueMappings
,
prefix
,
suffix
,
unit
}
=
this
.
props
;
...
...
@@ -145,7 +57,7 @@ export class Gauge extends PureComponent<Props> {
}
if
(
valueMappings
.
length
>
0
)
{
const
valueMappedValue
=
this
.
getFirstFormattedValueMapping
(
valueMappings
,
value
);
const
valueMappedValue
=
getMappedValue
(
valueMappings
,
value
);
if
(
valueMappedValue
)
{
return
`
${
prefix
}
${
valueMappedValue
.
text
}
${
suffix
}
`
;
}
...
...
packages/grafana-ui/src/utils/valueMappings.test.ts
0 → 100644
View file @
a9c33ab6
import
{
getMappedValue
}
from
'./valueMappings'
;
import
{
ValueMapping
,
MappingType
}
from
'../types/panel'
;
describe
(
'Format value with value mappings'
,
()
=>
{
it
(
'should return undefined with no valuemappings'
,
()
=>
{
const
valueMappings
:
ValueMapping
[]
=
[];
const
value
=
'10'
;
expect
(
getMappedValue
(
valueMappings
,
value
)).
toBeUndefined
();
});
it
(
'should return undefined with no matching valuemappings'
,
()
=>
{
const
valueMappings
:
ValueMapping
[]
=
[
{
id
:
0
,
operator
:
''
,
text
:
'elva'
,
type
:
MappingType
.
ValueToText
,
value
:
'11'
},
{
id
:
1
,
operator
:
''
,
text
:
'1-9'
,
type
:
MappingType
.
RangeToText
,
from
:
'1'
,
to
:
'9'
},
];
const
value
=
'10'
;
expect
(
getMappedValue
(
valueMappings
,
value
)).
toBeUndefined
();
});
it
(
'should return first matching mapping with lowest id'
,
()
=>
{
const
valueMappings
:
ValueMapping
[]
=
[
{
id
:
0
,
operator
:
''
,
text
:
'1-20'
,
type
:
MappingType
.
RangeToText
,
from
:
'1'
,
to
:
'20'
},
{
id
:
1
,
operator
:
''
,
text
:
'tio'
,
type
:
MappingType
.
ValueToText
,
value
:
'10'
},
];
const
value
=
'10'
;
expect
(
getMappedValue
(
valueMappings
,
value
).
text
).
toEqual
(
'1-20'
);
});
it
(
'should return if value is null and value to text mapping value is null'
,
()
=>
{
const
valueMappings
:
ValueMapping
[]
=
[
{
id
:
0
,
operator
:
''
,
text
:
'1-20'
,
type
:
MappingType
.
RangeToText
,
from
:
'1'
,
to
:
'20'
},
{
id
:
1
,
operator
:
''
,
text
:
'<NULL>'
,
type
:
MappingType
.
ValueToText
,
value
:
'null'
},
];
const
value
=
null
;
expect
(
getMappedValue
(
valueMappings
,
value
).
text
).
toEqual
(
'<NULL>'
);
});
it
(
'should return if value is null and range to text mapping from and to is null'
,
()
=>
{
const
valueMappings
:
ValueMapping
[]
=
[
{
id
:
0
,
operator
:
''
,
text
:
'<NULL>'
,
type
:
MappingType
.
RangeToText
,
from
:
'null'
,
to
:
'null'
},
{
id
:
1
,
operator
:
''
,
text
:
'elva'
,
type
:
MappingType
.
ValueToText
,
value
:
'11'
},
];
const
value
=
null
;
expect
(
getMappedValue
(
valueMappings
,
value
).
text
).
toEqual
(
'<NULL>'
);
});
it
(
'should return rangeToText mapping where value equals to'
,
()
=>
{
const
valueMappings
:
ValueMapping
[]
=
[
{
id
:
0
,
operator
:
''
,
text
:
'1-10'
,
type
:
MappingType
.
RangeToText
,
from
:
'1'
,
to
:
'10'
},
{
id
:
1
,
operator
:
''
,
text
:
'elva'
,
type
:
MappingType
.
ValueToText
,
value
:
'11'
},
];
const
value
=
'10'
;
expect
(
getMappedValue
(
valueMappings
,
value
).
text
).
toEqual
(
'1-10'
);
});
it
(
'should return rangeToText mapping where value equals from'
,
()
=>
{
const
valueMappings
:
ValueMapping
[]
=
[
{
id
:
0
,
operator
:
''
,
text
:
'10-20'
,
type
:
MappingType
.
RangeToText
,
from
:
'10'
,
to
:
'20'
},
{
id
:
1
,
operator
:
''
,
text
:
'elva'
,
type
:
MappingType
.
ValueToText
,
value
:
'11'
},
];
const
value
=
'10'
;
expect
(
getMappedValue
(
valueMappings
,
value
).
text
).
toEqual
(
'10-20'
);
});
it
(
'should return rangeToText mapping where value is between from and to'
,
()
=>
{
const
valueMappings
:
ValueMapping
[]
=
[
{
id
:
0
,
operator
:
''
,
text
:
'1-20'
,
type
:
MappingType
.
RangeToText
,
from
:
'1'
,
to
:
'20'
},
{
id
:
1
,
operator
:
''
,
text
:
'elva'
,
type
:
MappingType
.
ValueToText
,
value
:
'11'
},
];
const
value
=
'10'
;
expect
(
getMappedValue
(
valueMappings
,
value
).
text
).
toEqual
(
'1-20'
);
});
});
packages/grafana-ui/src/utils/valueMappings.ts
0 → 100644
View file @
a9c33ab6
import
{
ValueMapping
,
MappingType
,
ValueMap
,
RangeMap
}
from
'../types'
;
export
type
TimeSeriesValue
=
string
|
number
|
null
;
const
addValueToTextMappingText
=
(
allValueMappings
:
ValueMapping
[],
valueToTextMapping
:
ValueMap
,
value
:
TimeSeriesValue
)
=>
{
if
(
valueToTextMapping
.
value
===
undefined
)
{
return
allValueMappings
;
}
if
(
value
===
null
&&
valueToTextMapping
.
value
&&
valueToTextMapping
.
value
.
toLowerCase
()
===
'null'
)
{
return
allValueMappings
.
concat
(
valueToTextMapping
);
}
const
valueAsNumber
=
parseFloat
(
value
as
string
);
const
valueToTextMappingAsNumber
=
parseFloat
(
valueToTextMapping
.
value
as
string
);
if
(
isNaN
(
valueAsNumber
)
||
isNaN
(
valueToTextMappingAsNumber
))
{
return
allValueMappings
;
}
if
(
valueAsNumber
!==
valueToTextMappingAsNumber
)
{
return
allValueMappings
;
}
return
allValueMappings
.
concat
(
valueToTextMapping
);
};
const
addRangeToTextMappingText
=
(
allValueMappings
:
ValueMapping
[],
rangeToTextMapping
:
RangeMap
,
value
:
TimeSeriesValue
)
=>
{
if
(
rangeToTextMapping
.
from
===
undefined
||
rangeToTextMapping
.
to
===
undefined
||
value
===
undefined
)
{
return
allValueMappings
;
}
if
(
value
===
null
&&
rangeToTextMapping
.
from
&&
rangeToTextMapping
.
to
&&
rangeToTextMapping
.
from
.
toLowerCase
()
===
'null'
&&
rangeToTextMapping
.
to
.
toLowerCase
()
===
'null'
)
{
return
allValueMappings
.
concat
(
rangeToTextMapping
);
}
const
valueAsNumber
=
parseFloat
(
value
as
string
);
const
fromAsNumber
=
parseFloat
(
rangeToTextMapping
.
from
as
string
);
const
toAsNumber
=
parseFloat
(
rangeToTextMapping
.
to
as
string
);
if
(
isNaN
(
valueAsNumber
)
||
isNaN
(
fromAsNumber
)
||
isNaN
(
toAsNumber
))
{
return
allValueMappings
;
}
if
(
valueAsNumber
>=
fromAsNumber
&&
valueAsNumber
<=
toAsNumber
)
{
return
allValueMappings
.
concat
(
rangeToTextMapping
);
}
return
allValueMappings
;
};
const
getAllFormattedValueMappings
=
(
valueMappings
:
ValueMapping
[],
value
:
TimeSeriesValue
)
=>
{
const
allFormattedValueMappings
=
valueMappings
.
reduce
(
(
allValueMappings
,
valueMapping
)
=>
{
if
(
valueMapping
.
type
===
MappingType
.
ValueToText
)
{
allValueMappings
=
addValueToTextMappingText
(
allValueMappings
,
valueMapping
as
ValueMap
,
value
);
}
else
if
(
valueMapping
.
type
===
MappingType
.
RangeToText
)
{
allValueMappings
=
addRangeToTextMappingText
(
allValueMappings
,
valueMapping
as
RangeMap
,
value
);
}
return
allValueMappings
;
},
[]
as
ValueMapping
[]
);
allFormattedValueMappings
.
sort
((
t1
,
t2
)
=>
{
return
t1
.
id
-
t2
.
id
;
});
return
allFormattedValueMappings
;
};
export
const
getMappedValue
=
(
valueMappings
:
ValueMapping
[],
value
:
TimeSeriesValue
):
ValueMapping
=>
{
return
getAllFormattedValueMappings
(
valueMappings
,
value
)[
0
];
};
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment