Commit 6180e41c authored by Abinaya Sudhir's avatar Abinaya Sudhir

Search bar included in sidebar

parent e79d4155
...@@ -24,7 +24,6 @@ import SearchForm as S ...@@ -24,7 +24,6 @@ import SearchForm as S
import Thermite (PerformAction, Render, Spec, _render, defaultRender, focus, modifyState, simpleSpec, withState) import Thermite (PerformAction, Render, Spec, _render, defaultRender, focus, modifyState, simpleSpec, withState)
import UserPage as UP import UserPage as UP
import AnnotationDocumentView as D import AnnotationDocumentView as D
import Gargantext.Data.Lang import Gargantext.Data.Lang
type E e = (dom :: DOM, ajax :: AJAX, console :: CONSOLE | e) type E e = (dom :: DOM, ajax :: AJAX, console :: CONSOLE | e)
...@@ -188,7 +187,9 @@ layout0 layout = ...@@ -188,7 +187,9 @@ layout0 layout =
[ layoutSidebar [ layoutSidebar
-- TODO Add layoutTree -- TODO Add layoutTree
--, exampleTree' --, exampleTree'
, divSearchBar
, innerLayout $ layout , innerLayout $ layout
, layoutFooter , layoutFooter
] ]
where where
...@@ -221,7 +222,7 @@ layoutSidebar = simpleSpec performAction render ...@@ -221,7 +222,7 @@ layoutSidebar = simpleSpec performAction render
[ divLogo [ divLogo
, div [ className "collapse navbar-collapse"] , div [ className "collapse navbar-collapse"]
[ divDropdownLeft [ divDropdownLeft
, divSearchBar -- , divSearchBar
, divDropdownRight , divDropdownRight
] ]
] ]
...@@ -317,7 +318,7 @@ menuElements ns = dropDown $ intercalate divider $ map (map liNav) ns ...@@ -317,7 +318,7 @@ menuElements ns = dropDown $ intercalate divider $ map (map liNav) ns
where where
dropDown :: Array ReactElement -> ReactElement dropDown :: Array ReactElement -> ReactElement
dropDown = ul [className "dropdown-menu"] dropDown = ul [className "dropdown-menu"]
divider :: Array ReactElement divider :: Array ReactElement
divider = [li [className "divider"] []] divider = [li [className "divider"] []]
...@@ -354,23 +355,31 @@ liNav (LiNav { title : title' ...@@ -354,23 +355,31 @@ liNav (LiNav { title : title'
-- TODO put the search form in the center of the navBar -- TODO put the search form in the center of the navBar
divSearchBar :: ReactElement divSearchBar :: forall props eff. Spec (dom :: DOM |eff) AppState props Action
divSearchBar = ul [ className "nav navbar-nav" divSearchBar = simpleSpec performAction render
, style { "margin-left" : "146px"} where
] [ div [className "navbar-form"] render :: Render AppState props Action
[ input [ className "search-query" render dispatch _ state _ = [div [ className "" ] [ searchbar']]
, placeholder "Query, URL or FILE (works with Firefox or Chromium browsers)" where
, _type "text" searchbar' = ul [ className "nav navbar-nav"
, style { height: "35px" , style { "margin-left" : "79px"}
, width : "450px" ] [ div [className "navbar-form"]
-- , color: "white" [ input [ className "search-query"
-- , background : "#A1C2D8" , placeholder "Query, URL or FILE (works with Firefox or Chromium browsers)"
} , _type "text"
] [] , style { height: "35px"
-- TODO add button in navbar (and "enter" execution) , width : "450px"
-- , div [] [button [][]] -- , color: "white"
-- , background : "#A1C2D8"
}
] []
-- TODO add button in navbar (and "enter" execution)
-- , div [] [button [][]]
] ]
] ]
--divDropdownRight :: Render AppState props Action --divDropdownRight :: Render AppState props Action
divDropdownRight :: ReactElement divDropdownRight :: ReactElement
......
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