Commit d8e9f225 authored by afc163's avatar afc163

Improve search saga and loading logic

parent f50867b0
......@@ -5,35 +5,33 @@ export default {
state: {
list: [],
loading: true,
loading: false,
cursor: 0,
},
effects: {
*fetch({ payload, callback }, { call, put }) {
*fetch({ payload }, { call, put }) {
yield put({
type: 'changeLoading',
payload: true,
});
const response = yield call(queryFakeList, payload);
yield put({
type: 'save',
type: 'appendList',
payload: Array.isArray(response) ? response : [],
});
yield put({
type: 'changeLoading',
payload: false,
});
if (callback) {
callback();
}
},
},
reducers: {
save(state, action) {
appendList(state, action) {
return {
...state,
list: action.payload,
list: state.list.concat(action.payload),
};
},
changeLoading(state, action) {
......@@ -42,5 +40,11 @@ export default {
loading: action.payload,
};
},
updateCursor(state, action) {
return {
...state,
loading: action.payload,
};
},
},
};
......@@ -12,25 +12,15 @@ import styles from './SearchList.less';
const { Option } = Select;
const FormItem = Form.Item;
const pageSize = 5;
@Form.create()
@connect(state => ({
list: state.list,
}))
export default class SearchList extends Component {
state = {
count: 3,
showLoadMore: true,
loadingMore: false,
}
componentDidMount() {
const { count } = this.state;
this.props.dispatch({
type: 'list/fetch',
payload: {
count,
},
});
this.fetchMore();
}
setOwner = () => {
......@@ -40,30 +30,11 @@ export default class SearchList extends Component {
});
}
handleLoadMore = () => {
const { count } = this.state;
const nextCount = count + 5;
this.setState({
count: nextCount,
loadingMore: true,
});
fetchMore = () => {
this.props.dispatch({
type: 'list/fetch',
payload: {
count: nextCount,
},
callback: () => {
this.setState({
loadingMore: false,
});
// fack count
if (nextCount < 10) {
this.setState({
showLoadMore: false,
});
}
count: pageSize,
},
});
}
......@@ -86,7 +57,6 @@ export default class SearchList extends Component {
}
render() {
const { showLoadMore, loadingMore } = this.state;
const { form, list: { list, loading } } = this.props;
const { getFieldDecorator } = form;
......@@ -165,11 +135,10 @@ export default class SearchList extends Component {
},
};
const loadMore = showLoadMore ? (
const loadMore = list.length > 0 ? (
<div style={{ textAlign: 'center', marginTop: 16 }}>
<Button onClick={this.handleLoadMore} style={{ paddingLeft: 48, paddingRight: 48 }}>
{loadingMore && (<span><Icon type="loading" /> 加载中...</span>)}
{!loadingMore && (<span>εŠ θ½½ζ›΄ε€š</span>)}
<Button onClick={this.fetchMore} style={{ paddingLeft: 48, paddingRight: 48 }}>
{loading ? <span><Icon type="loading" /> 加载中...</span> : 'εŠ θ½½ζ›΄ε€š'}
</Button>
</div>
) : null;
......@@ -286,7 +255,7 @@ export default class SearchList extends Component {
>
<List
size="large"
loading={!loadingMore && loading}
loading={list.length === 0 ? loading : false}
rowKey="id"
itemLayout="vertical"
loadMore={loadMore}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment