Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Defining the ref callback as a bound method #1353

Merged
merged 3 commits into from
Oct 31, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion packages/common/editors/SimpleTextEditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,12 @@ const EditorBase = require('./EditorBase');


class SimpleTextEditor extends EditorBase {
setInputRef = (input) => {
this.input = input;
};

render() {
return (<input ref={(node) => this.input = node} type="text" onBlur={this.props.onBlur} className="form-control" defaultValue={this.props.value} />);
return (<input ref={this.setInputRef} type="text" onBlur={this.props.onBlur} className="form-control" defaultValue={this.props.value} />);
}
}

Expand Down
2 changes: 0 additions & 2 deletions packages/react-data-grid-addons/src/__tests__/Grid.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -191,10 +191,8 @@ describe('Grid', function() {
});

it('should set filter state of grid and render a filterable header row', function() {
let filterableHeaderRow = this.baseGrid.props.headerRows[1];
expect(this.component.state.canFilter).toBe(true);
expect(this.baseGrid.props.headerRows.length).toEqual(2);
expect(typeof filterableHeaderRow.ref).toEqual('function');
});
});
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,14 @@ class AutoCompleteEditor extends React.Component {
return ret.join('|');
};

setAutocompleteRef = (autoComplete) => {
this.autoComplete = autoComplete;
};

render() {
let label = this.props.label != null ? this.props.label : 'title';
return (<div height={this.props.height} onKeyDown={this.props.onKeyDown}>
<ReactAutocomplete search={this.props.search} ref={(node) => this.autoComplete = node} label={label} onChange={this.handleChange} onFocus={this.props.onFocus} resultIdentifier={this.props.resultIdentifier} options={this.props.options} value={this.getEditorDisplayValue()} />
<ReactAutocomplete search={this.props.search} ref={this.setAutocompleteRef} label={label} onChange={this.handleChange} onFocus={this.props.onFocus} resultIdentifier={this.props.resultIdentifier} options={this.props.options} value={this.getEditorDisplayValue()} />
</div>);
}
}
Expand Down
17 changes: 12 additions & 5 deletions packages/react-data-grid/src/Grid.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,17 @@ class Grid extends React.Component {
this.viewport = viewport;
};

setViewportContainerRef = (viewportContainer) => {
this.viewPortContainer = viewportContainer;
};

setEmptyViewRef = (emptyView) => {
this.emptyView = emptyView;
};

render() {
let headerRows = this.props.headerRows || [{ref: (node) => this.row = node}];
let EmptyRowsView = this.props.emptyRowsView;
const { headerRows } = this.props;
Copy link
Contributor Author

@amanmahajan7 amanmahajan7 Oct 31, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

const EmptyRowsView = this.props.emptyRowsView;

return (
<div style={this.getStyle()} className="react-grid-Grid">
Expand All @@ -151,13 +159,12 @@ class Grid extends React.Component {
draggableHeaderCell={this.props.draggableHeaderCell}
onSort={this.props.onSort}
onHeaderDrop={this.props.onHeaderDrop}
// onScroll={this.onHeaderScroll}
getValidFilterValues={this.props.getValidFilterValues}
cellMetaData={this.props.cellMetaData}
/>
{this.props.rowsCount >= 1 || (this.props.rowsCount === 0 && !this.props.emptyRowsView) ?
<div
ref={(node) => { this.viewPortContainer = node; } }
ref={this.setViewportContainerRef}
onKeyDown={this.props.onViewportKeydown}
onKeyUp={this.props.onViewportKeyup}
>
Expand Down Expand Up @@ -204,7 +211,7 @@ class Grid extends React.Component {
/>
</div>
:
<div ref={(node) => { this.emptyView = node; } } className="react-grid-Empty">
<div ref={this.setEmptyViewRef} className="react-grid-Empty">
<EmptyRowsView />
</div>
}
Expand Down
76 changes: 40 additions & 36 deletions packages/react-data-grid/src/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,22 +78,25 @@ class Header extends React.Component {
}
};

setRowRef = (row) => {
this.row = row;
};

setFilterRowRef = (filterRow) => {
this.filterRow = filterRow;
};

getHeaderRows = () => {
let columnMetrics = this.getColumnMetrics();
let resizeColumn;
if (this.state.resizing) {
resizeColumn = this.state.resizing.column;
}
let headerRows = [];
this.props.headerRows.forEach((row, index) => {
const columnMetrics = this.getColumnMetrics();
const resizeColumn = this.state.resizing ? this.state.resizing.column : undefined;

return this.props.headerRows.map((row, index) => {
// To allow header filters to be visible
let rowHeight = 'auto';
if (row.rowType === HeaderRowType.FILTER) {
rowHeight = '500px';
}
let scrollbarSize = getScrollbarSize() > 0 ? getScrollbarSize() : 0;
let updatedWidth = isNaN(this.props.totalWidth - scrollbarSize) ? this.props.totalWidth : this.props.totalWidth - scrollbarSize;
let headerRowStyle = {
const isFilterRow = row.rowType === HeaderRowType.FILTER;
const rowHeight = isFilterRow ? '500px' : 'auto';
const scrollbarSize = getScrollbarSize() > 0 ? getScrollbarSize() : 0;
const updatedWidth = isNaN(this.props.totalWidth - scrollbarSize) ? this.props.totalWidth : this.props.totalWidth - scrollbarSize;
const headerRowStyle = {
position: 'absolute',
top: this.getCombinedHeaderHeights(index),
left: 0,
Expand All @@ -102,29 +105,30 @@ class Header extends React.Component {
minHeight: rowHeight
};

headerRows.push(<HeaderRow
key={row.ref}
ref={(node) => { return row.rowType === HeaderRowType.FILTER ? this.filterRow = node : this.row = node; }}
rowType={row.rowType}
style={headerRowStyle}
onColumnResize={this.onColumnResize}
onColumnResizeEnd={this.onColumnResizeEnd}
width={columnMetrics.width}
height={row.height || this.props.height}
columns={columnMetrics.columns}
resizing={resizeColumn}
draggableHeaderCell={this.props.draggableHeaderCell}
filterable={row.filterable}
onFilterChange={row.onFilterChange}
onHeaderDrop={this.props.onHeaderDrop}
sortColumn={this.props.sortColumn}
sortDirection={this.props.sortDirection}
onSort={this.props.onSort}
onScroll={this.props.onScroll}
getValidFilterValues={this.props.getValidFilterValues}
/>);
return (
<HeaderRow
key={row.rowType}
Copy link
Contributor Author

@amanmahajan7 amanmahajan7 Oct 31, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure why was key a function (row.ref is defined in ReactDataGrid.js)

ref={isFilterRow ? this.setFilterRowRef : this.setRowRef}
rowType={row.rowType}
style={headerRowStyle}
onColumnResize={this.onColumnResize}
onColumnResizeEnd={this.onColumnResizeEnd}
width={columnMetrics.width}
height={row.height || this.props.height}
columns={columnMetrics.columns}
resizing={resizeColumn}
draggableHeaderCell={this.props.draggableHeaderCell}
filterable={row.filterable}
onFilterChange={row.onFilterChange}
onHeaderDrop={this.props.onHeaderDrop}
sortColumn={this.props.sortColumn}
sortDirection={this.props.sortDirection}
onSort={this.props.onSort}
onScroll={this.props.onScroll}
getValidFilterValues={this.props.getValidFilterValues}
/>
);
});
return headerRows;
};

getColumnMetrics = () => {
Expand Down
9 changes: 6 additions & 3 deletions packages/react-data-grid/src/ReactDataGrid.js
Original file line number Diff line number Diff line change
Expand Up @@ -558,10 +558,9 @@ class ReactDataGrid extends React.Component {
};

getHeaderRows = () => {
let rows = [{ ref: (node) => this.row = node, height: this.props.headerRowHeight || this.props.rowHeight, rowType: HeaderRowType.HEADER }];
const rows = [{ height: this.props.headerRowHeight || this.props.rowHeight, rowType: HeaderRowType.HEADER }];
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ref: this.row is not used anywhere. Header row defines its own ref.

if (this.state.canFilter === true) {
rows.push({
ref: (node) => this.filterRow = node,
filterable: true,
onFilterChange: this.props.onAddFilter,
height: this.props.headerFiltersHeight,
Expand Down Expand Up @@ -646,6 +645,10 @@ class ReactDataGrid extends React.Component {
this.grid = grid;
};

setBaseGridRef = (base) => {
this.base = base;
};

renderToolbar = () => {
let Toolbar = this.props.toolbar;
let toolBarProps = {columns: this.props.columns, onToggleFilter: this.onToggleFilter, numberOfRows: this.props.rowsCount};
Expand Down Expand Up @@ -694,7 +697,7 @@ class ReactDataGrid extends React.Component {
{toolbar}
<div className="react-grid-Main">
<BaseGrid
ref={(node) => this.base = node}
ref={this.setBaseGridRef}
{...this.props}
rowKey={this.props.rowKey}
headerRows={this.getHeaderRows()}
Expand Down