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
142
Issues
142
List
Board
Labels
Milestones
Merge Requests
4
Merge Requests
4
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
gargantext
purescript-gargantext
Commits
d917d62e
Commit
d917d62e
authored
May 28, 2019
by
Przemyslaw Kaminski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SearchField: some fixes + data toggle attempt
parent
1e5dfadf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
7 deletions
+10
-7
SearchField.purs
src/Gargantext/Components/Search/SearchField.purs
+10
-7
No files found.
src/Gargantext/Components/Search/SearchField.purs
View file @
d917d62e
...
...
@@ -17,7 +17,7 @@ import Effect.Uncurried (mkEffectFn1)
import FFI.Simple ((..))
import Reactix as R
import Reactix.DOM.HTML as HTML
import Reactix.DOM.HTML (text, button, div, input, option, form, span, ul, li,
data', datalist
)
import Reactix.DOM.HTML (text, button, div, input, option, form, span, ul, li,
a
)
import Reactix.SyntheticEvent as E
import Gargantext.Components.Search.Types
...
...
@@ -60,23 +60,26 @@ searchFieldComponent = R.memo (R.hooksComponent "SearchField" cpt) hasChanged
databaseInput :: R.State (Maybe Database) -> Array Database -> R.Element
databaseInput (db /\ setDB) dbs =
div { className: "input-group-btn search-panel" }
[ button { className: "btn dropdown-toggle", data
': {toggle
: "dropdown"} }
[ button { className: "btn dropdown-toggle", data
: {"toggle"
: "dropdown"} }
[ span {} [ text "x" ] ]
, input { type: "hidden"
, onChange }
, ul { className: "dropdown-menu", role: "menu" } (liItem <$> dbs)
]
--select { className: "database", onChange } (item <$> dbs)
where
onChange = mkEffectFn1 $ \e -> setDB (readDatabase (e .. "target" .. "value"))
--item db = option { value: (show db) } [ text (show db) ]
liItem db = li {} [ text (show db) ]
liItem db = li {}
[ a {href: "#"} [text (show db) ] ]
searchInput :: R.State String -> R.Element
searchInput (term /\ setTerm) =
input { defaultValue: term
, className: "form-control"
, type: "text"
, onChange
, placeholder }
, className: "form-control"
, type: "text"
, onChange
, placeholder }
where onChange = mkEffectFn1 $ \e -> setTerm $ e .. "target" .. "value"
...
...
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