Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
purescript-gargantext
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Grégoire Locqueville
purescript-gargantext
Commits
1a572a61
Commit
1a572a61
authored
Jul 30, 2019
by
Przemyslaw Kaminski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[DocsTable] search clear added
parent
74638ba3
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
8 deletions
+14
-8
DocsTable.purs
src/Gargantext/Components/DocsTable.purs
+14
-8
No files found.
src/Gargantext/Components/DocsTable.purs
View file @
1a572a61
...
@@ -208,13 +208,12 @@ searchBar (query /\ setQuery) = R.createElement el {} []
...
@@ -208,13 +208,12 @@ searchBar (query /\ setQuery) = R.createElement el {} []
[ H.input { type: "text"
[ H.input { type: "text"
, className: "form-control"
, className: "form-control"
, on: {change: onSearchChange queryText, keyUp: onSearchKeyup queryText}
, on: {change: onSearchChange queryText, keyUp: onSearchKeyup queryText}
, placeholder: query}
, placeholder: query
, defaultValue: query}
]
]
, H.div {className: "col col-md-1"}
, H.div {className: "col col-md-1"}
[ H.button { type: "submit"
[ searchButton queryText
, className: "btn btn-default"
, if query /= "" then clearButton else H.div {} []
, on: {click: onSearchClick queryText}}
[ H.text "Search" ]
]
]
]
]
...
@@ -229,9 +228,16 @@ searchBar (query /\ setQuery) = R.createElement el {} []
...
@@ -229,9 +228,16 @@ searchBar (query /\ setQuery) = R.createElement el {} []
else
else
pure $ unit
pure $ unit
onSearchClick :: forall e. R.State Query -> e -> Effect Unit
searchButton (queryText /\ _) =
onSearchClick (queryText /\ _) = \e ->
H.button { type: "submit"
setQuery $ const queryText
, className: "btn btn-default"
, on: {click: \e -> setQuery $ const queryText}}
[ H.span {className: "glyphicon glyphicon-search"} [] ]
clearButton =
H.button { className: "btn btn-danger"
, on: {click: \e -> setQuery $ const ""}}
[ H.span {className: "glyphicon glyphicon-remove"} [] ]
mock :: Boolean
mock :: Boolean
mock = false
mock = false
...
...
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