Merge pull request #633 from ant-design/update-simple-pagination

Update simple pagination
This commit is contained in:
afc163 2015-12-05 13:36:02 +08:00
commit 462f4432d7
3 changed files with 23 additions and 9 deletions

View File

@ -9,7 +9,9 @@
````jsx
import { Pagination } from 'antd';
ReactDOM.render(
<Pagination size="small" defaultCurrent={2} total={50} />,
document.getElementById('components-pagination-demo-mini'));
ReactDOM.render(<div>
<Pagination size="small" total={50} />
<br />
<Pagination size="small" total={50} showSizeChanger showQuickJumper />
</div>, document.getElementById('components-pagination-demo-mini'));
````

View File

@ -1,25 +1,37 @@
import React from 'react';
import Pagination from 'rc-pagination';
import Select from 'rc-select';
import Select from '../select';
import zhCN from './locale/zh_CN';
const prefixCls = 'ant-pagination';
class MiniSelect extends React.Component {
render() {
return <Select size="small" {...this.props} />;
}
}
MiniSelect.Option = Select.Option;
class AntPagination extends React.Component {
render() {
let className = this.props.className;
let selectComponentClass = Select;
if (this.props.size === 'small') {
className += ' mini';
selectComponentClass = MiniSelect;
}
return <Pagination selectComponentClass={Select}
return <Pagination selectComponentClass={selectComponentClass}
selectPrefixCls="ant-select"
prefixCls={prefixCls}
{...this.props} className={className}/>;
{...this.props}
className={className} />;
}
}
AntPagination.defaultProps = {
locale: zhCN,
className: '',
prefixCls: 'ant-pagination',
};
export default AntPagination;

View File

@ -105,7 +105,7 @@
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
padding-left: 10px;
padding-left: 8px;
padding-right: 24px;
line-height: 26px;
}