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
9bcc9b06
Commit
9bcc9b06
authored
Mar 15, 2019
by
ryan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
calculate the column width
parent
e6cba97b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
4 deletions
+12
-4
packages/grafana-ui/src/components/Table/Table.tsx
+12
-4
No files found.
packages/grafana-ui/src/components/Table/Table.tsx
View file @
9bcc9b06
...
...
@@ -8,6 +8,7 @@ import {
CellMeasurerCache
,
CellMeasurer
,
GridCellProps
,
Index
,
}
from
'react-virtualized'
;
import
{
Themeable
}
from
'../../types/theme'
;
...
...
@@ -26,6 +27,7 @@ import { stringToJsRegex } from '../../utils/index';
export
interface
Props
extends
Themeable
{
data
:
TableData
;
minColumnWidth
:
number
;
showHeader
:
boolean
;
fixedHeader
:
boolean
;
fixedColumns
:
number
;
...
...
@@ -46,6 +48,7 @@ interface State {
interface
ColumnRenderInfo
{
header
:
string
;
width
:
number
;
builder
:
TableCellBuilder
;
}
...
...
@@ -64,6 +67,7 @@ export class Table extends Component<Props, State> {
fixedHeader
:
true
,
fixedColumns
:
0
,
rotate
:
false
,
minColumnWidth
:
150
,
};
constructor
(
props
:
Props
)
{
...
...
@@ -76,9 +80,7 @@ export class Table extends Component<Props, State> {
this
.
renderer
=
this
.
initColumns
(
props
);
this
.
measurer
=
new
CellMeasurerCache
({
defaultHeight
:
30
,
defaultWidth
:
150
,
fixedWidth
:
true
,
fixedHeight
:
true
,
});
}
...
...
@@ -112,7 +114,8 @@ export class Table extends Component<Props, State> {
/** Given the configuration, setup how each column gets rendered */
initColumns
(
props
:
Props
):
ColumnRenderInfo
[]
{
const
{
styles
,
data
}
=
props
;
const
{
styles
,
data
,
width
,
minColumnWidth
}
=
props
;
const
columnWidth
=
Math
.
max
(
width
/
data
.
columns
.
length
,
minColumnWidth
);
return
data
.
columns
.
map
((
col
,
index
)
=>
{
let
title
=
col
.
text
;
...
...
@@ -133,6 +136,7 @@ export class Table extends Component<Props, State> {
return
{
header
:
title
,
width
:
columnWidth
,
builder
:
getCellBuilder
(
col
,
style
,
this
.
props
),
};
});
...
...
@@ -230,6 +234,10 @@ export class Table extends Component<Props, State> {
);
};
getColumnWidth
=
(
col
:
Index
):
number
=>
{
return
this
.
renderer
[
col
.
index
].
width
;
};
render
()
{
const
{
showHeader
,
fixedHeader
,
fixedColumns
,
rotate
,
width
,
height
}
=
this
.
props
;
const
{
data
}
=
this
.
state
;
...
...
@@ -271,7 +279,7 @@ export class Table extends Component<Props, State> {
rowCount=
{
rowCount
}
overscanColumnCount=
{
8
}
overscanRowCount=
{
8
}
columnWidth=
{
this
.
measurer
.
c
olumnWidth
}
columnWidth=
{
this
.
getC
olumnWidth
}
deferredMeasurementCache=
{
this
.
measurer
}
cellRenderer=
{
this
.
cellRenderer
}
rowHeight=
{
this
.
measurer
.
rowHeight
}
...
...
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