mirror of
https://github.com/gosticks/react-bootstrap-table2.git
synced 2026-06-29 05:30:05 +00:00
Compare commits
15 Commits
react-boot
...
react-boot
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
497bf44192 | ||
|
|
fcefcf8c84 | ||
|
|
04e3af0bbb | ||
|
|
9f47fa009c | ||
|
|
0edf9c8891 | ||
|
|
df5024892c | ||
|
|
4448c3f28c | ||
|
|
196ae33295 | ||
|
|
7f1b7a6c97 | ||
|
|
a6ccafcc75 | ||
|
|
dba3da28c1 | ||
|
|
a0e09cd804 | ||
|
|
8f304a849f | ||
|
|
33c026c7e2 | ||
|
|
d84fd5c801 |
@@ -132,7 +132,7 @@ const columns = [
|
|||||||
if (typeof cell !== 'object') {
|
if (typeof cell !== 'object') {
|
||||||
dateObj = new Date(cell);
|
dateObj = new Date(cell);
|
||||||
}
|
}
|
||||||
return `${('0' + dateObj.getDate()).slice(-2)}/${('0' + (dateObj.getMonth() + 1)).slice(-2)}/${dateObj.getFullYear()}`;
|
return `${('0' + dateObj.getUTCDate()).slice(-2)}/${('0' + (dateObj.getUTCMonth() + 1)).slice(-2)}/${dateObj.getUTCFullYear()}`;
|
||||||
},
|
},
|
||||||
editor: {
|
editor: {
|
||||||
type: Type.DATE
|
type: Type.DATE
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "react-bootstrap-table2-editor",
|
"name": "react-bootstrap-table2-editor",
|
||||||
"version": "1.2.2",
|
"version": "1.2.3",
|
||||||
"description": "it's the editor addon for react-bootstrap-table2",
|
"description": "it's the editor addon for react-bootstrap-table2",
|
||||||
"main": "./lib/index.js",
|
"main": "./lib/index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ const columns = [{
|
|||||||
if (typeof cell !== 'object') {
|
if (typeof cell !== 'object') {
|
||||||
dateObj = new Date(cell);
|
dateObj = new Date(cell);
|
||||||
}
|
}
|
||||||
return `${('0' + dateObj.getDate()).slice(-2)}/${('0' + (dateObj.getMonth() + 1)).slice(-2)}/${dateObj.getFullYear()}`;
|
return `${('0' + dateObj.getUTCDate()).slice(-2)}/${('0' + (dateObj.getUTCMonth() + 1)).slice(-2)}/${dateObj.getUTCFullYear()}`;
|
||||||
},
|
},
|
||||||
editor: {
|
editor: {
|
||||||
type: Type.DATE
|
type: Type.DATE
|
||||||
@@ -48,7 +48,7 @@ const columns = [{
|
|||||||
if (typeof cell !== 'object') {
|
if (typeof cell !== 'object') {
|
||||||
dateObj = new Date(cell);
|
dateObj = new Date(cell);
|
||||||
}
|
}
|
||||||
return \`$\{('0' + dateObj.getDate()).slice(-2)}/$\{('0' + (dateObj.getMonth() + 1)).slice(-2)}/$\{dateObj.getFullYear()}\`;
|
return \`$\{('0' + dateObj.getUTCDate()).slice(-2)}/$\{('0' + (dateObj.getUTCMonth() + 1)).slice(-2)}/$\{dateObj.getUTCFullYear()}\`;
|
||||||
},
|
},
|
||||||
editor: {
|
editor: {
|
||||||
type: Type.DATE
|
type: Type.DATE
|
||||||
|
|||||||
@@ -11,141 +11,13 @@ const products = [
|
|||||||
{ id: 14, name: 'Item 14', price: 14.5, inStock: true }
|
{ id: 14, name: 'Item 14', price: 14.5, inStock: true }
|
||||||
];
|
];
|
||||||
|
|
||||||
const columns = [
|
|
||||||
{
|
|
||||||
dataField: 'id',
|
|
||||||
text: 'Product ID'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
dataField: 'name',
|
|
||||||
text: 'Product Name'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
dataField: 'price',
|
|
||||||
text: 'Product Price'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
dataField: 'inStock',
|
|
||||||
text: 'In Stock',
|
|
||||||
formatter: (cellContent, row) => (
|
|
||||||
<div className="checkbox disabled">
|
|
||||||
<label>
|
|
||||||
<input type="checkbox" checked={ row.inStock } disabled />
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
)
|
|
||||||
},
|
|
||||||
{
|
|
||||||
dataField: 'df1',
|
|
||||||
isDummyField: true,
|
|
||||||
text: 'Action 1',
|
|
||||||
formatter: (cellContent, row) => {
|
|
||||||
if (row.inStock) {
|
|
||||||
return (
|
|
||||||
<h5>
|
|
||||||
<span className="label label-success"> Available</span>
|
|
||||||
</h5>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
return (
|
|
||||||
<h5>
|
|
||||||
<span className="label label-danger"> Backordered</span>
|
|
||||||
</h5>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
dataField: 'df2',
|
|
||||||
isDummyField: true,
|
|
||||||
text: 'Action 2',
|
|
||||||
formatter: (cellContent, row) => {
|
|
||||||
if (row.inStock) {
|
|
||||||
return (
|
|
||||||
<h5>
|
|
||||||
<span className="label label-success"> Available</span>
|
|
||||||
</h5>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
return (
|
|
||||||
<h5>
|
|
||||||
<span className="label label-danger"> Backordered</span>
|
|
||||||
</h5>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
];
|
|
||||||
|
|
||||||
const sourceCode = `\
|
const sourceCode = `\
|
||||||
import BootstrapTable from 'react-bootstrap-table-next';
|
import BootstrapTable from 'react-bootstrap-table-next';
|
||||||
|
|
||||||
const columns = [
|
|
||||||
{
|
|
||||||
dataField: 'id',
|
|
||||||
text: 'Product ID'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
dataField: 'name',
|
|
||||||
text: 'Product Name'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
dataField: 'price',
|
|
||||||
text: 'Product Price'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
dataField: 'inStock',
|
|
||||||
text: 'In Stock',
|
|
||||||
formatter: (cellContent, row) => (
|
|
||||||
<div className="checkbox disabled">
|
|
||||||
<label>
|
|
||||||
<input type="checkbox" checked={ row.inStock } disabled />
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
)
|
|
||||||
},
|
|
||||||
{
|
|
||||||
dataField: 'df1',
|
|
||||||
isDummyField: true,
|
|
||||||
text: 'Action 1',
|
|
||||||
formatter: (cellContent, row) => {
|
|
||||||
if (row.inStock) {
|
|
||||||
return (
|
|
||||||
<h5>
|
|
||||||
<span className="label label-success"> Available</span>
|
|
||||||
</h5>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
return (
|
|
||||||
<h5>
|
|
||||||
<span className="label label-danger"> Backordered</span>
|
|
||||||
</h5>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
dataField: 'df2',
|
|
||||||
isDummyField: true,
|
|
||||||
text: 'Action 2',
|
|
||||||
formatter: (cellContent, row) => {
|
|
||||||
if (row.inStock) {
|
|
||||||
return (
|
|
||||||
<h5>
|
|
||||||
<span className="label label-success"> Available</span>
|
|
||||||
</h5>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
return (
|
|
||||||
<h5>
|
|
||||||
<span className="label label-danger"> Backordered</span>
|
|
||||||
</h5>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
];
|
|
||||||
|
|
||||||
class ProductList extends React.Component {
|
class ProductList extends React.Component {
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
super(props);
|
super(props);
|
||||||
this.state = { products };
|
this.state = { products, count: 0 };
|
||||||
}
|
}
|
||||||
|
|
||||||
toggleInStock = () => {
|
toggleInStock = () => {
|
||||||
@@ -163,17 +35,96 @@ class ProductList extends React.Component {
|
|||||||
};
|
};
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
|
const columns = [
|
||||||
|
{
|
||||||
|
dataField: 'id',
|
||||||
|
text: 'Product ID',
|
||||||
|
formatter: (cell, row, rowIndex, extraData) => (
|
||||||
|
<div>
|
||||||
|
<span>ID: {row.id}</span>
|
||||||
|
<br />
|
||||||
|
<span>state: {extraData}</span>
|
||||||
|
</div>
|
||||||
|
),
|
||||||
|
formatExtraData: this.state.count
|
||||||
|
},
|
||||||
|
{
|
||||||
|
dataField: 'name',
|
||||||
|
text: 'Product Name'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
dataField: 'price',
|
||||||
|
text: 'Product Price'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
dataField: 'inStock',
|
||||||
|
text: 'In Stock',
|
||||||
|
formatter: (cellContent, row) => (
|
||||||
|
<div className="checkbox disabled">
|
||||||
|
<label>
|
||||||
|
<input type="checkbox" checked={ row.inStock } disabled />
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
},
|
||||||
|
{
|
||||||
|
dataField: 'df1',
|
||||||
|
isDummyField: true,
|
||||||
|
text: 'Action 1',
|
||||||
|
formatter: (cellContent, row) => {
|
||||||
|
if (row.inStock) {
|
||||||
|
return (
|
||||||
|
<h5>
|
||||||
|
<span className="label label-success"> Available</span>
|
||||||
|
</h5>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return (
|
||||||
|
<h5>
|
||||||
|
<span className="label label-danger"> Backordered</span>
|
||||||
|
</h5>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
dataField: 'df2',
|
||||||
|
isDummyField: true,
|
||||||
|
text: 'Action 2',
|
||||||
|
formatter: (cellContent, row) => {
|
||||||
|
if (row.inStock) {
|
||||||
|
return (
|
||||||
|
<h5>
|
||||||
|
<span className="label label-success"> Available</span>
|
||||||
|
</h5>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return (
|
||||||
|
<h5>
|
||||||
|
<span className="label label-danger"> Backordered</span>
|
||||||
|
</h5>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<h1 className="h2">Products</h1>
|
<h3>Action 1 and Action 2 are dummy column</h3>
|
||||||
|
<button onClick={ this.toggleInStock } className="btn btn-primary">
|
||||||
|
Toggle item 13 stock status
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
className="btn btn-success"
|
||||||
|
onClick={ () => this.setState(() => ({ count: this.state.count + 1 })) }
|
||||||
|
>
|
||||||
|
Click me to Increase counter
|
||||||
|
</button>
|
||||||
<BootstrapTable
|
<BootstrapTable
|
||||||
keyField="id"
|
keyField="id"
|
||||||
data={ this.state.products }
|
data={ this.state.products }
|
||||||
columns={ columns }
|
columns={ columns }
|
||||||
/>
|
/>
|
||||||
<button onClick={ this.toggleInStock } className="btn btn-primary">
|
<Code>{ sourceCode }</Code>
|
||||||
Toggle item 13 stock status
|
|
||||||
</button>
|
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -183,7 +134,7 @@ class ProductList extends React.Component {
|
|||||||
class ProductList extends React.Component {
|
class ProductList extends React.Component {
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
super(props);
|
super(props);
|
||||||
this.state = { products };
|
this.state = { products, count: 0 };
|
||||||
}
|
}
|
||||||
|
|
||||||
toggleInStock = () => {
|
toggleInStock = () => {
|
||||||
@@ -200,13 +151,95 @@ class ProductList extends React.Component {
|
|||||||
this.setState(curr => ({ ...curr, products: newProducts }));
|
this.setState(curr => ({ ...curr, products: newProducts }));
|
||||||
};
|
};
|
||||||
|
|
||||||
|
counter = () => {
|
||||||
|
this.setState(curr => ({ ...curr, count: this.state.count + 1 }));
|
||||||
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
|
const columns = [
|
||||||
|
{
|
||||||
|
dataField: 'id',
|
||||||
|
text: 'Product ID',
|
||||||
|
formatter: (cell, row, rowIndex, extraData) => (
|
||||||
|
<div>
|
||||||
|
<span>ID: {row.id}</span>
|
||||||
|
<br />
|
||||||
|
<span>Counter: {extraData}</span>
|
||||||
|
</div>
|
||||||
|
),
|
||||||
|
formatExtraData: this.state.count
|
||||||
|
},
|
||||||
|
{
|
||||||
|
dataField: 'name',
|
||||||
|
text: 'Product Name'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
dataField: 'price',
|
||||||
|
text: 'Product Price'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
dataField: 'inStock',
|
||||||
|
text: 'In Stock',
|
||||||
|
formatter: (cellContent, row) => (
|
||||||
|
<div className="checkbox disabled">
|
||||||
|
<label>
|
||||||
|
<input type="checkbox" checked={ row.inStock } disabled />
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
},
|
||||||
|
{
|
||||||
|
dataField: 'df1',
|
||||||
|
isDummyField: true,
|
||||||
|
text: 'Action 1',
|
||||||
|
formatter: (cellContent, row) => {
|
||||||
|
if (row.inStock) {
|
||||||
|
return (
|
||||||
|
<h5>
|
||||||
|
<span className="label label-success"> Available</span>
|
||||||
|
</h5>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return (
|
||||||
|
<h5>
|
||||||
|
<span className="label label-danger"> Backordered</span>
|
||||||
|
</h5>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
dataField: 'df2',
|
||||||
|
isDummyField: true,
|
||||||
|
text: 'Action 2',
|
||||||
|
formatter: (cellContent, row) => {
|
||||||
|
if (row.inStock) {
|
||||||
|
return (
|
||||||
|
<h5>
|
||||||
|
<span className="label label-success"> Available</span>
|
||||||
|
</h5>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return (
|
||||||
|
<h5>
|
||||||
|
<span className="label label-danger"> Backordered</span>
|
||||||
|
</h5>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<h3>Action 1 and Action 2 are dummy column</h3>
|
<h3>Action 1 and Action 2 are dummy column</h3>
|
||||||
<button onClick={ this.toggleInStock } className="btn btn-primary">
|
<button onClick={ this.toggleInStock } className="btn btn-primary">
|
||||||
Toggle item 13 stock status
|
Toggle item 13 stock status
|
||||||
</button>
|
</button>
|
||||||
|
<button
|
||||||
|
className="btn btn-success"
|
||||||
|
onClick={ this.counter }
|
||||||
|
>
|
||||||
|
Click me to Increase counter
|
||||||
|
</button>
|
||||||
<BootstrapTable
|
<BootstrapTable
|
||||||
keyField="id"
|
keyField="id"
|
||||||
data={ this.state.products }
|
data={ this.state.products }
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "react-bootstrap-table2-example",
|
"name": "react-bootstrap-table2-example",
|
||||||
"version": "1.0.21",
|
"version": "1.0.23",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"private": true,
|
"private": true,
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "react-bootstrap-table2-filter",
|
"name": "react-bootstrap-table2-filter",
|
||||||
"version": "1.1.7",
|
"version": "1.1.8",
|
||||||
"description": "it's a column filter addon for react-bootstrap-table2",
|
"description": "it's a column filter addon for react-bootstrap-table2",
|
||||||
"main": "./lib/index.js",
|
"main": "./lib/index.js",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ const legalComparators = [
|
|||||||
];
|
];
|
||||||
|
|
||||||
function dateParser(d) {
|
function dateParser(d) {
|
||||||
return `${d.getFullYear()}-${('0' + (d.getMonth() + 1)).slice(-2)}-${('0' + d.getDate()).slice(-2)}`;
|
return `${d.getUTCFullYear()}-${('0' + (d.getUTCMonth() + 1)).slice(-2)}-${('0' + d.getUTCDate()).slice(-2)}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
class DateFilter extends Component {
|
class DateFilter extends Component {
|
||||||
|
|||||||
@@ -98,9 +98,9 @@ export const filterByDate = _ => (
|
|||||||
customFilterValue
|
customFilterValue
|
||||||
) => {
|
) => {
|
||||||
if (!date || !comparator) return data;
|
if (!date || !comparator) return data;
|
||||||
const filterDate = date.getDate();
|
const filterDate = date.getUTCDate();
|
||||||
const filterMonth = date.getMonth();
|
const filterMonth = date.getUTCMonth();
|
||||||
const filterYear = date.getFullYear();
|
const filterYear = date.getUTCFullYear();
|
||||||
|
|
||||||
return data.filter((row) => {
|
return data.filter((row) => {
|
||||||
let valid = true;
|
let valid = true;
|
||||||
@@ -114,9 +114,9 @@ export const filterByDate = _ => (
|
|||||||
cell = new Date(cell);
|
cell = new Date(cell);
|
||||||
}
|
}
|
||||||
|
|
||||||
const targetDate = cell.getDate();
|
const targetDate = cell.getUTCDate();
|
||||||
const targetMonth = cell.getMonth();
|
const targetMonth = cell.getUTCMonth();
|
||||||
const targetYear = cell.getFullYear();
|
const targetYear = cell.getUTCFullYear();
|
||||||
|
|
||||||
|
|
||||||
switch (comparator) {
|
switch (comparator) {
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "react-bootstrap-table2-paginator",
|
"name": "react-bootstrap-table2-paginator",
|
||||||
"version": "2.0.4",
|
"version": "2.0.5",
|
||||||
"description": "it's the pagination addon for react-bootstrap-table2",
|
"description": "it's the pagination addon for react-bootstrap-table2",
|
||||||
"main": "./lib/index.js",
|
"main": "./lib/index.js",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|||||||
@@ -56,7 +56,7 @@ export default ExtendBase =>
|
|||||||
alwaysShowAllBtns
|
alwaysShowAllBtns
|
||||||
} = this.props;
|
} = this.props;
|
||||||
|
|
||||||
let pages;
|
let pages = [];
|
||||||
let endPage = totalPages;
|
let endPage = totalPages;
|
||||||
if (endPage <= 0) return [];
|
if (endPage <= 0) return [];
|
||||||
|
|
||||||
@@ -68,24 +68,42 @@ export default ExtendBase =>
|
|||||||
startPage = endPage - paginationSize + 1;
|
startPage = endPage - paginationSize + 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (startPage !== pageStartIndex && totalPages > paginationSize && withFirstAndLast) {
|
if (alwaysShowAllBtns) {
|
||||||
|
if (withFirstAndLast) {
|
||||||
|
pages = [firstPageText, prePageText];
|
||||||
|
} else {
|
||||||
|
pages = [prePageText];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (startPage !== pageStartIndex &&
|
||||||
|
totalPages > paginationSize &&
|
||||||
|
withFirstAndLast &&
|
||||||
|
pages.length === 0
|
||||||
|
) {
|
||||||
pages = [firstPageText, prePageText];
|
pages = [firstPageText, prePageText];
|
||||||
} else if (totalPages > 1 || alwaysShowAllBtns) {
|
} else if (totalPages > 1 && pages.length === 0) {
|
||||||
pages = [prePageText];
|
pages = [prePageText];
|
||||||
} else {
|
|
||||||
pages = [];
|
|
||||||
}
|
}
|
||||||
|
|
||||||
for (let i = startPage; i <= endPage; i += 1) {
|
for (let i = startPage; i <= endPage; i += 1) {
|
||||||
if (i >= pageStartIndex) pages.push(i);
|
if (i >= pageStartIndex) pages.push(i);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (endPage <= lastPage && pages.length > 1) {
|
if (alwaysShowAllBtns || (endPage <= lastPage && pages.length > 1)) {
|
||||||
pages.push(nextPageText);
|
pages.push(nextPageText);
|
||||||
}
|
}
|
||||||
if (endPage !== lastPage && withFirstAndLast) {
|
if ((endPage !== lastPage && withFirstAndLast) || (withFirstAndLast && alwaysShowAllBtns)) {
|
||||||
pages.push(lastPageText);
|
pages.push(lastPageText);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// if ((endPage <= lastPage && pages.length > 1) || alwaysShowAllBtns) {
|
||||||
|
// pages.push(nextPageText);
|
||||||
|
// }
|
||||||
|
// if (endPage !== lastPage && withFirstAndLast) {
|
||||||
|
// pages.push(lastPageText);
|
||||||
|
// }
|
||||||
|
|
||||||
return pages;
|
return pages;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "react-bootstrap-table-next",
|
"name": "react-bootstrap-table-next",
|
||||||
"version": "3.0.2",
|
"version": "3.1.0",
|
||||||
"description": "Next generation of react-bootstrap-table",
|
"description": "Next generation of react-bootstrap-table",
|
||||||
"main": "./lib/index.js",
|
"main": "./lib/index.js",
|
||||||
"repository": {
|
"repository": {
|
||||||
@@ -37,6 +37,7 @@
|
|||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"classnames": "2.2.5",
|
"classnames": "2.2.5",
|
||||||
|
"react-transition-group": "2.5.3",
|
||||||
"underscore": "1.9.1"
|
"underscore": "1.9.1"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
|
|||||||
2
packages/react-bootstrap-table2/src/cell.js
vendored
2
packages/react-bootstrap-table2/src/cell.js
vendored
@@ -26,7 +26,7 @@ class Cell extends eventDelegater(Component) {
|
|||||||
// if (nextProps.formatter)
|
// if (nextProps.formatter)
|
||||||
|
|
||||||
shouldUpdate =
|
shouldUpdate =
|
||||||
nextProps.column.formatter ? !_.isEqual(this.props.row, nextProps.row) : false ||
|
(nextProps.column.formatter ? !_.isEqual(this.props.row, nextProps.row) : false) ||
|
||||||
this.props.column.hidden !== nextProps.column.hidden ||
|
this.props.column.hidden !== nextProps.column.hidden ||
|
||||||
this.props.rowIndex !== nextProps.rowIndex ||
|
this.props.rowIndex !== nextProps.rowIndex ||
|
||||||
this.props.columnIndex !== nextProps.columnIndex ||
|
this.props.columnIndex !== nextProps.columnIndex ||
|
||||||
|
|||||||
@@ -10,18 +10,31 @@ class RowExpandProvider extends React.Component {
|
|||||||
children: PropTypes.node.isRequired,
|
children: PropTypes.node.isRequired,
|
||||||
data: PropTypes.array.isRequired,
|
data: PropTypes.array.isRequired,
|
||||||
keyField: PropTypes.string.isRequired
|
keyField: PropTypes.string.isRequired
|
||||||
}
|
};
|
||||||
|
|
||||||
state = { expanded: this.props.expandRow.expanded || [] };
|
state = { expanded: this.props.expandRow.expanded || [],
|
||||||
|
isClosing: this.props.expandRow.isClosing || [] };
|
||||||
|
|
||||||
componentWillReceiveProps(nextProps) {
|
componentWillReceiveProps(nextProps) {
|
||||||
if (nextProps.expandRow) {
|
if (nextProps.expandRow) {
|
||||||
|
const isClosing = this.state.expanded.reduce((acc, cur) => {
|
||||||
|
if (!nextProps.expandRow.expanded.includes(cur)) {
|
||||||
|
acc.push(cur);
|
||||||
|
}
|
||||||
|
return acc;
|
||||||
|
}, []);
|
||||||
|
this.setState(() => ({ expanded: nextProps.expandRow.expanded, isClosing }));
|
||||||
|
} else {
|
||||||
this.setState(() => ({
|
this.setState(() => ({
|
||||||
expanded: nextProps.expandRow.expanded || this.state.expanded
|
expanded: this.state.expanded
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
onClosed = (closedRow) => {
|
||||||
|
this.setState({ isClosing: this.state.isClosing.filter(value => value !== closedRow) });
|
||||||
|
};
|
||||||
|
|
||||||
handleRowExpand = (rowKey, expanded, rowIndex, e) => {
|
handleRowExpand = (rowKey, expanded, rowIndex, e) => {
|
||||||
const { data, keyField, expandRow: { onExpand, onlyOneExpanding, nonExpandable } } = this.props;
|
const { data, keyField, expandRow: { onExpand, onlyOneExpanding, nonExpandable } } = this.props;
|
||||||
if (nonExpandable && nonExpandable.includes(rowKey)) {
|
if (nonExpandable && nonExpandable.includes(rowKey)) {
|
||||||
@@ -29,11 +42,15 @@ class RowExpandProvider extends React.Component {
|
|||||||
}
|
}
|
||||||
|
|
||||||
let currExpanded = [...this.state.expanded];
|
let currExpanded = [...this.state.expanded];
|
||||||
|
let isClosing = [...this.state.isClosing];
|
||||||
|
|
||||||
if (expanded) {
|
if (expanded) {
|
||||||
if (onlyOneExpanding) currExpanded = [rowKey];
|
if (onlyOneExpanding) {
|
||||||
else currExpanded.push(rowKey);
|
isClosing = isClosing.concat(currExpanded);
|
||||||
|
currExpanded = [rowKey];
|
||||||
|
} else currExpanded.push(rowKey);
|
||||||
} else {
|
} else {
|
||||||
|
isClosing.push(rowKey);
|
||||||
currExpanded = currExpanded.filter(value => value !== rowKey);
|
currExpanded = currExpanded.filter(value => value !== rowKey);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -41,8 +58,8 @@ class RowExpandProvider extends React.Component {
|
|||||||
const row = dataOperator.getRowByRowId(data, keyField, rowKey);
|
const row = dataOperator.getRowByRowId(data, keyField, rowKey);
|
||||||
onExpand(row, expanded, rowIndex, e);
|
onExpand(row, expanded, rowIndex, e);
|
||||||
}
|
}
|
||||||
this.setState(() => ({ expanded: currExpanded }));
|
this.setState(() => ({ expanded: currExpanded, isClosing }));
|
||||||
}
|
};
|
||||||
|
|
||||||
handleAllRowExpand = (e, expandAll) => {
|
handleAllRowExpand = (e, expandAll) => {
|
||||||
const {
|
const {
|
||||||
@@ -68,7 +85,7 @@ class RowExpandProvider extends React.Component {
|
|||||||
}
|
}
|
||||||
|
|
||||||
this.setState(() => ({ expanded: currExpanded }));
|
this.setState(() => ({ expanded: currExpanded }));
|
||||||
}
|
};
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
const { data, keyField } = this.props;
|
const { data, keyField } = this.props;
|
||||||
@@ -78,6 +95,8 @@ class RowExpandProvider extends React.Component {
|
|||||||
...this.props.expandRow,
|
...this.props.expandRow,
|
||||||
nonExpandable: this.props.expandRow.nonExpandable,
|
nonExpandable: this.props.expandRow.nonExpandable,
|
||||||
expanded: this.state.expanded,
|
expanded: this.state.expanded,
|
||||||
|
isClosing: this.state.isClosing,
|
||||||
|
onClosed: this.onClosed,
|
||||||
isAnyExpands: dataOperator.isAnyExpands(data, keyField, this.state.expanded),
|
isAnyExpands: dataOperator.isAnyExpands(data, keyField, this.state.expanded),
|
||||||
onRowExpand: this.handleRowExpand,
|
onRowExpand: this.handleRowExpand,
|
||||||
onAllRowExpand: this.handleAllRowExpand
|
onAllRowExpand: this.handleAllRowExpand
|
||||||
|
|||||||
@@ -1,18 +1,37 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
|
import { CSSTransition } from 'react-transition-group';
|
||||||
|
|
||||||
const ExpandRow = ({ children, ...rest }) => (
|
const ExpandRow = ({ children, expanded, onClosed, ...rest }) => (
|
||||||
<tr className="expanding-row">
|
<tr>
|
||||||
<td { ...rest }>{ children }</td>
|
<td className="reset-expansion-style" { ...rest }>
|
||||||
|
<CSSTransition
|
||||||
|
appear
|
||||||
|
in={ expanded }
|
||||||
|
timeout={ 400 }
|
||||||
|
classNames="row-expand-slide"
|
||||||
|
onExited={ onClosed }
|
||||||
|
>
|
||||||
|
<div>
|
||||||
|
<div className="row-expansion-style">
|
||||||
|
{ children }
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</CSSTransition>
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
);
|
);
|
||||||
|
|
||||||
ExpandRow.propTypes = {
|
ExpandRow.propTypes = {
|
||||||
children: PropTypes.node
|
children: PropTypes.node,
|
||||||
|
expanded: PropTypes.bool,
|
||||||
|
onClosed: PropTypes.func
|
||||||
};
|
};
|
||||||
|
|
||||||
ExpandRow.defaultProps = {
|
ExpandRow.defaultProps = {
|
||||||
children: null
|
children: null,
|
||||||
|
expanded: false,
|
||||||
|
onClosed: null
|
||||||
};
|
};
|
||||||
|
|
||||||
export default ExpandRow;
|
export default ExpandRow;
|
||||||
|
|||||||
@@ -8,8 +8,8 @@ export default (Component) => {
|
|||||||
const key = props.value;
|
const key = props.value;
|
||||||
|
|
||||||
const expanded = expandRow.expanded.includes(key);
|
const expanded = expandRow.expanded.includes(key);
|
||||||
|
const isClosing = expandRow.isClosing.includes(key);
|
||||||
const expandable = !expandRow.nonExpandable || !expandRow.nonExpandable.includes(key);
|
const expandable = !expandRow.nonExpandable || !expandRow.nonExpandable.includes(key);
|
||||||
|
|
||||||
return [
|
return [
|
||||||
<Component
|
<Component
|
||||||
{ ...props }
|
{ ...props }
|
||||||
@@ -18,9 +18,11 @@ export default (Component) => {
|
|||||||
expandable={ expandable }
|
expandable={ expandable }
|
||||||
expandRow={ { ...expandRow } }
|
expandRow={ { ...expandRow } }
|
||||||
/>,
|
/>,
|
||||||
expanded ? <ExpandRow
|
expanded || isClosing ? <ExpandRow
|
||||||
key={ `${key}-expanding` }
|
key={ `${key}-expanding` }
|
||||||
colSpan={ props.visibleColumnSize }
|
colSpan={ props.visibleColumnSize }
|
||||||
|
expanded={ expanded }
|
||||||
|
onClosed={ () => expandRow.onClosed(key) }
|
||||||
>
|
>
|
||||||
{ expandRow.renderer(props.row) }
|
{ expandRow.renderer(props.row) }
|
||||||
</ExpandRow> : null
|
</ExpandRow> : null
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ export default ExtendBase =>
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
for (let i = 0; i < this.props.columns.length; i += 1) {
|
for (let i = 0; i < this.props.columns.length; i += 1) {
|
||||||
if (this.props.columns[i].hidden !== nextProps.columns[i].hidden) {
|
if (!_.isEqual(this.props.columns[i], nextProps.columns[i])) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -68,10 +68,6 @@
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
tr.expanding-row {
|
|
||||||
padding: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
td.react-bootstrap-table-editing-cell {
|
td.react-bootstrap-table-editing-cell {
|
||||||
.animated {
|
.animated {
|
||||||
animation-fill-mode: both;
|
animation-fill-mode: both;
|
||||||
@@ -161,4 +157,26 @@
|
|||||||
animation-name: bounceOut;
|
animation-name: bounceOut;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.reset-expansion-style{
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.row-expansion-style{
|
||||||
|
padding: 8px;
|
||||||
|
}
|
||||||
|
.row-expand-slide-appear{
|
||||||
|
max-height: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
.row-expand-slide-appear-active{
|
||||||
|
max-height: 1000px;
|
||||||
|
transition: max-height 3s linear;
|
||||||
|
}
|
||||||
|
.row-expand-slide-exit{
|
||||||
|
max-height: 1000px;
|
||||||
|
}
|
||||||
|
.row-expand-slide-exit-active{
|
||||||
|
max-height: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
transition: max-height 400ms cubic-bezier(0, 0.95, 0, 0.95)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user