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
c5797cc2
Unverified
Commit
c5797cc2
authored
Feb 22, 2021
by
Hugo Häggmark
Committed by
GitHub
Feb 22, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
StoryBook: Introduces Grafana Controls (#31351)
parent
7c797f73
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
55 additions
and
12 deletions
+55
-12
packages/grafana-ui/.storybook/main.ts
+1
-0
packages/grafana-ui/src/addons/grafana-controls/preset.ts
+5
-0
packages/grafana-ui/src/addons/grafana-controls/register.tsx
+43
-0
packages/grafana-ui/src/components/BigValue/BigValue.story.tsx
+6
-12
No files found.
packages/grafana-ui/.storybook/main.ts
View file @
c5797cc2
...
...
@@ -14,6 +14,7 @@ module.exports = {
addons
:
[
'@storybook/addon-docs'
,
'@storybook/addon-controls'
,
'../src/addons/grafana-controls/preset.ts'
,
'@storybook/addon-knobs'
,
'@storybook/addon-actions'
,
'storybook-dark-mode/register'
,
...
...
packages/grafana-ui/src/addons/grafana-controls/preset.ts
0 → 100644
View file @
c5797cc2
module
.
exports
=
{
managerEntries
(
entry
=
[])
{
return
[...
entry
,
require
.
resolve
(
'./register'
)];
},
};
packages/grafana-ui/src/addons/grafana-controls/register.tsx
0 → 100644
View file @
c5797cc2
import
React
from
'react'
;
import
{
ArgTypes
}
from
'@storybook/react'
;
import
{
addons
,
types
}
from
'@storybook/addons'
;
import
{
AddonPanel
,
ArgsTable
}
from
'@storybook/components'
;
import
{
useArgs
,
useArgTypes
,
useParameter
}
from
'@storybook/api'
;
const
ADDON_ID
=
'storybook/grafana-controls'
;
const
PANEL_ID
=
`
${
ADDON_ID
}
/controls`
;
const
PARAM_KEY
=
'grafanaControls'
;
const
GrafanaControlsPanel
=
()
=>
{
const
[
args
,
updateArgs
,
resetArgs
]
=
useArgs
();
const
rows
=
useArgTypes
();
const
argTypes
=
useParameter
<
ArgTypes
>
(
PARAM_KEY
,
{});
const
newRows
:
ArgTypes
=
{};
for
(
const
key
in
argTypes
)
{
if
(
!
Object
.
hasOwnProperty
.
call
(
argTypes
,
key
))
{
continue
;
}
if
(
Object
.
hasOwnProperty
.
call
(
rows
,
key
))
{
newRows
[
key
]
=
{
...
rows
[
key
],
...
argTypes
[
key
]
};
}
}
return
(
<
ArgsTable
rows=
{
newRows
}
args=
{
args
}
updateArgs=
{
updateArgs
}
resetArgs=
{
resetArgs
as
any
}
inAddonPanel
compact
/>
);
};
addons
.
register
(
ADDON_ID
,
(
api
)
=>
{
addons
.
add
(
PANEL_ID
,
{
type
:
types
.
PANEL
,
title
:
'Grafana Controls'
,
// eslint-disable-next-line react/display-name
render
:
({
active
,
key
})
=>
(
<
AddonPanel
active=
{
Boolean
(
active
)
}
key=
{
key
}
>
<
GrafanaControlsPanel
/>
</
AddonPanel
>
),
});
});
packages/grafana-ui/src/components/BigValue/BigValue.story.tsx
View file @
c5797cc2
...
...
@@ -11,7 +11,6 @@ import {
import
{
withCenteredStory
}
from
'../../utils/storybook/withCenteredStory'
;
import
mdx
from
'./BigValue.mdx'
;
import
{
useTheme
}
from
'../../themes'
;
import
{
NOOP_CONTROL
}
from
'@grafana/ui/.storybook/preview'
;
import
{
ArrayVector
,
FieldSparkline
,
FieldType
}
from
'@grafana/data'
;
export
default
{
...
...
@@ -23,10 +22,12 @@ export default {
page
:
mdx
,
},
knobs
:
{
disable
d
:
true
,
disable
:
true
,
},
controls
:
{
disable
:
true
,
},
argType
s
:
{
grafanaControl
s
:
{
width
:
{
control
:
{
type
:
'range'
,
min
:
200
,
max
:
800
}
},
height
:
{
control
:
{
type
:
'range'
,
min
:
200
,
max
:
800
}
},
colorMode
:
{
control
:
{
type
:
'select'
,
options
:
[
BigValueColorMode
.
Value
,
BigValueColorMode
.
Background
]
}
},
...
...
@@ -44,15 +45,8 @@ export default {
],
},
},
color
:
{
control
:
'color'
},
value
:
NOOP_CONTROL
,
sparkline
:
NOOP_CONTROL
,
onClick
:
NOOP_CONTROL
,
className
:
NOOP_CONTROL
,
alignmentFactors
:
NOOP_CONTROL
,
text
:
NOOP_CONTROL
,
count
:
NOOP_CONTROL
,
theme
:
NOOP_CONTROL
,
color
:
{
control
:
{
type
:
'color'
}
},
},
},
};
...
...
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