Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
pro-blocks
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
duanledexianxianxian
pro-blocks
Commits
d8e9f225
Commit
d8e9f225
authored
Nov 03, 2017
by
afc163
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve search saga and loading logic
parent
f50867b0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
48 deletions
+21
-48
src/models/list.js
src/models/list.js
+12
-8
src/routes/List/SearchList.js
src/routes/List/SearchList.js
+9
-40
No files found.
src/models/list.js
View file @
d8e9f225
...
...
@@ -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
,
};
},
},
};
src/routes/List/SearchList.js
View file @
d8e9f225
...
...
@@ -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
}
...
...
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