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
e33c7cfb
Unverified
Commit
e33c7cfb
authored
Dec 14, 2020
by
Dominik Prokop
Committed by
GitHub
Dec 14, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
GraphNG: Load uPlot path builders lazily (#29813)
parent
93649e1f
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
47 additions
and
14 deletions
+47
-14
packages/grafana-ui/src/components/uPlot/Plot.test.tsx
+0
-0
packages/grafana-ui/src/components/uPlot/config/UPlotSeriesBuilder.ts
+47
-14
No files found.
packages/grafana-ui/src/components/uPlot/Plot.test
_skip
.tsx
→
packages/grafana-ui/src/components/uPlot/Plot.test.tsx
View file @
e33c7cfb
File moved
packages/grafana-ui/src/components/uPlot/config/UPlotSeriesBuilder.ts
View file @
e33c7cfb
...
@@ -3,17 +3,9 @@ import uPlot, { Series } from 'uplot';
...
@@ -3,17 +3,9 @@ import uPlot, { Series } from 'uplot';
import
{
DrawStyle
,
LineConfig
,
AreaConfig
,
PointsConfig
,
PointVisibility
,
LineInterpolation
}
from
'../config'
;
import
{
DrawStyle
,
LineConfig
,
AreaConfig
,
PointsConfig
,
PointVisibility
,
LineInterpolation
}
from
'../config'
;
import
{
PlotConfigBuilder
}
from
'../types'
;
import
{
PlotConfigBuilder
}
from
'../types'
;
const
pathBuilders
=
uPlot
.
paths
;
const
barWidthFactor
=
0.6
;
const
barWidthFactor
=
0.6
;
const
barMaxWidth
=
Infinity
;
const
barMaxWidth
=
Infinity
;
const
barsBuilder
=
pathBuilders
.
bars
!
({
size
:
[
barWidthFactor
,
barMaxWidth
]
});
const
linearBuilder
=
pathBuilders
.
linear
!
();
const
smoothBuilder
=
pathBuilders
.
spline
!
();
const
stepBeforeBuilder
=
pathBuilders
.
stepped
!
({
align
:
-
1
});
const
stepAfterBuilder
=
pathBuilders
.
stepped
!
({
align
:
1
});
export
interface
SeriesProps
extends
LineConfig
,
AreaConfig
,
PointsConfig
{
export
interface
SeriesProps
extends
LineConfig
,
AreaConfig
,
PointsConfig
{
drawStyle
:
DrawStyle
;
drawStyle
:
DrawStyle
;
scaleKey
:
string
;
scaleKey
:
string
;
...
@@ -43,20 +35,19 @@ export class UPlotSeriesBuilder extends PlotConfigBuilder<SeriesProps, Series> {
...
@@ -43,20 +35,19 @@ export class UPlotSeriesBuilder extends PlotConfigBuilder<SeriesProps, Series> {
lineConfig
.
stroke
=
lineColor
;
lineConfig
.
stroke
=
lineColor
;
lineConfig
.
width
=
lineWidth
;
lineConfig
.
width
=
lineWidth
;
lineConfig
.
paths
=
(
self
:
uPlot
,
seriesIdx
:
number
,
idx0
:
number
,
idx1
:
number
)
=>
{
lineConfig
.
paths
=
(
self
:
uPlot
,
seriesIdx
:
number
,
idx0
:
number
,
idx1
:
number
)
=>
{
let
pathsBuilder
=
linearBuilder
;
let
builderConfig
;
if
(
drawStyle
===
DrawStyle
.
Bars
)
{
if
(
drawStyle
===
DrawStyle
.
Bars
)
{
pathsBuilder
=
barsBuilder
;
builderConfig
=
{
size
:
[
barWidthFactor
,
barMaxWidth
]
}
;
}
else
if
(
drawStyle
===
DrawStyle
.
Line
)
{
}
else
if
(
drawStyle
===
DrawStyle
.
Line
)
{
if
(
lineInterpolation
===
LineInterpolation
.
StepBefore
)
{
if
(
lineInterpolation
===
LineInterpolation
.
StepBefore
)
{
pathsBuilder
=
stepBeforeBuilder
;
builderConfig
=
{
align
:
-
1
}
;
}
else
if
(
lineInterpolation
===
LineInterpolation
.
StepAfter
)
{
}
else
if
(
lineInterpolation
===
LineInterpolation
.
StepAfter
)
{
pathsBuilder
=
stepAfterBuilder
;
builderConfig
=
{
align
:
1
};
}
else
if
(
lineInterpolation
===
LineInterpolation
.
Smooth
)
{
pathsBuilder
=
smoothBuilder
;
}
}
}
}
let
pathsBuilder
=
mapDrawStyleToPathBuilder
(
drawStyle
,
lineInterpolation
,
builderConfig
);
return
pathsBuilder
(
self
,
seriesIdx
,
idx0
,
idx1
);
return
pathsBuilder
(
self
,
seriesIdx
,
idx0
,
idx1
);
};
};
}
}
...
@@ -99,3 +90,45 @@ export class UPlotSeriesBuilder extends PlotConfigBuilder<SeriesProps, Series> {
...
@@ -99,3 +90,45 @@ export class UPlotSeriesBuilder extends PlotConfigBuilder<SeriesProps, Series> {
};
};
}
}
}
}
enum
PathBuilder
{
Linear
,
Bars
,
Spline
,
Stepped
,
}
function
getPathBuilder
(
builder
:
PathBuilder
):
(
opts
:
any
)
=>
Series
.
PathBuilder
{
const
pathBuilders
=
uPlot
.
paths
;
switch
(
builder
)
{
case
PathBuilder
.
Bars
:
return
pathBuilders
.
bars
!
;
case
PathBuilder
.
Linear
:
return
pathBuilders
.
linear
!
;
case
PathBuilder
.
Spline
:
return
pathBuilders
.
spline
!
;
case
PathBuilder
.
Stepped
:
return
pathBuilders
.
stepped
!
;
default
:
return
pathBuilders
.
linear
!
;
}
}
function
mapDrawStyleToPathBuilder
(
style
:
DrawStyle
,
lineInterpolation
?:
LineInterpolation
,
opts
?:
any
)
{
let
builder
=
getPathBuilder
(
PathBuilder
.
Linear
);
if
(
style
===
DrawStyle
.
Bars
)
{
builder
=
getPathBuilder
(
PathBuilder
.
Bars
);
}
else
if
(
style
===
DrawStyle
.
Line
)
{
if
(
lineInterpolation
===
LineInterpolation
.
StepBefore
)
{
builder
=
getPathBuilder
(
PathBuilder
.
Stepped
);
}
else
if
(
lineInterpolation
===
LineInterpolation
.
StepAfter
)
{
builder
=
getPathBuilder
(
PathBuilder
.
Stepped
);
}
else
if
(
lineInterpolation
===
LineInterpolation
.
Smooth
)
{
builder
=
getPathBuilder
(
PathBuilder
.
Spline
);
}
}
return
builder
(
opts
);
}
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