Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
X
xpub-faraday
Manage
Activity
Members
Labels
Plan
Issues
2
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Container Registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
xpub
xpub-faraday
Commits
762d69fb
Commit
762d69fb
authored
7 years ago
by
Alexandru Munteanu
Browse files
Options
Downloads
Patches
Plain Diff
Update SortableList.md
parent
00bf6b64
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
packages/components-faraday/src/components/SortableList/SortableList.md
+13
-15
13 additions, 15 deletions
...nents-faraday/src/components/SortableList/SortableList.md
with
13 additions
and
15 deletions
packages/components-faraday/src/components/SortableList/SortableList.md
+
13
−
15
View file @
762d69fb
...
...
@@ -24,13 +24,11 @@ const items = [
const
Item
=
({
isOver
,
isDragging
,
...
rest
})
=>
<
div
>
`
${
rest
.
firstName
}
${
rest
.
lastName
}
`
<
/div
>
const
DragHandle
<
SortableList
items
=
{
items
}
listItem
=
{
Item
}
moveItem
=
{(
dragIndex
,
hoverIndex
)
=>
change
items
}
/>
/>
```
### With custom drag handle
...
...
@@ -38,16 +36,16 @@ const DragHandle
const
DragHandle
=
()
=>
<
div
>
Drag
me
!<
/div
>
const
ItemWithDragHandle
=
({
dragHandle
,
...
rest
})
=>
<
div
>
{
dragHandle
}
<
span
>
Rest
of
the
content
.
<
/span
>
<
/div
>
{
dragHandle
}
<
span
>
Rest
of
the
content
.
<
/span
>
<
/div
>
<
SortableList
...
listItem
=
{
ItemWithDragHandle
}
dragHandle
=
{
DragHandle
}
...
/>
/>
```
### How to move items around
...
...
@@ -56,14 +54,14 @@ To move items of the parent container whenever `moveItem` function is called we
```
js
const
Container
=
({
moveItem
,
items
})
=>
<
div
>
...
<
SortableList
items
=
{
items
}
listItem
=
{
Item
}
moveItem
=
{
moveItem
}
/
>
...
<
/div>
...
<
SortableList
items
=
{
items
}
listItem
=
{
Item
}
moveItem
=
{
moveItem
}
/
>
...
<
/div>
```
Enhanced using recompose
```
js
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment