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
f36312b5
Commit
f36312b5
authored
Mar 12, 2018
by
Sudhir Kumar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added Treeview in Docview page
parent
2ac4a611
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
112 additions
and
42 deletions
+112
-42
index.html
dist/index.html
+2
-1
DocView.purs
src/DocView.purs
+81
-41
NTree.purs
src/NTree.purs
+29
-0
No files found.
dist/index.html
View file @
f36312b5
...
...
@@ -4,9 +4,10 @@
<meta
charset=
"utf-8"
/>
<title>
CNRS GarganText
</title>
<link
href=
"https://fonts.googleapis.com/icon?family=Material+Icons"
rel=
"stylesheet"
>
<link
href=
"https://use.fontawesome.com/releases/v5.0.8/css/all.css"
rel=
"stylesheet"
>
<link
href=
"css/login.min.css"
rel=
"stylesheet"
>
<link
href=
"css/bootstrap.css"
rel=
"stylesheet"
>
<
link
href=
"css/lavish-bootstrap.css"
rel=
"stylesheet"
>
<
!-- <link href="css/lavish-bootstrap.css" rel="stylesheet"> --
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"css/menu.css"
/>
<link
href=
"css/Login.css"
rel=
"stylesheet"
>
...
...
src/DocView.purs
View file @
f36312b5
module DocView where
import Data.Argonaut
import Prelude hiding (div)
import Control.Monad.Aff (Aff, attempt)
import Control.Monad.Aff.Class (liftAff)
...
...
@@ -20,13 +21,13 @@ import Data.Either (Either(..))
import Data.HTTP.Method (Method(..))
import Data.Maybe (fromJust)
import Data.MediaType.Common (applicationJSON)
import Data.Tuple (Tuple(..))
import Network.HTTP.Affjax (AJAX, affjax, defaultRequest)
import Network.HTTP.RequestHeader (RequestHeader(..))
import Partial.Unsafe (unsafePartial)
import Prelude hiding (div)
import React (ReactElement)
import React as R
import React.DOM (a, b, b', br
', div, dt, input, option, select, span, table, tbody, td, text, thead, tr
)
import React.DOM (a, b, b', br
, br', div, dt, i, input, li, option, select, span, table, tbody, td, text, thead, tr, ul
)
import React.DOM.Props (_type, className, href, onChange, onClick, selected, value)
import ReactDOM as RDOM
import Thermite (PerformAction, Render, Spec, cotransform, createReactSpec, defaultPerformAction, modifyState, simpleSpec)
...
...
@@ -94,6 +95,14 @@ instance decodeResponse :: DecodeJson Response where
pure $ Response { cid, created, favorite, ngramCount, hyperdata }
data NTree a = NLeaf a | NNode String (Array (NTree a))
type FTree = NTree (Tuple String String)
spec :: Spec _ State _ Action
spec = simpleSpec performAction render
where
...
...
@@ -104,8 +113,15 @@ spec = simpleSpec performAction render
div [className "jumbotron"]
[
div [className "row"]
[ div [className "col-md-3"]
[ br' []
, br' []
, toHtml exampleTree
]
, div [className "col-md-9"]
[
br' []
, br' []
, div [] [b [] [text d.title]]
, div [] [ text "Search "
, input [] []
...
...
@@ -133,6 +149,45 @@ spec = simpleSpec performAction render
]
]
]
]
exampleTree :: NTree (Tuple String String)
exampleTree =
NNode "Web Sites"
[ NNode "Google"
[ NLeaf (Tuple "Search" "http://google.com/")
, NLeaf (Tuple "Maps" "http://maps.google.com/")
]
, NNode "Social Media"
[ NLeaf (Tuple "Google +" "http://plus.google.com/")
, NLeaf (Tuple "Twitter" "http://twitter.com/")
, NLeaf (Tuple "Facebook" "http://facebook.com/")
, NNode "Others"
[ NLeaf (Tuple "Instagram" "https://www.instagram.com/")
, NLeaf (Tuple "WhatsApp" "https://web.whatsapp.com")
]
]
]
toHtml :: FTree -> ReactElement
toHtml (NLeaf (Tuple name link)) =
li []
[ a [ href link]
[ text name
]
]
toHtml (NNode name ary) =
ul []
[ li [] $
[ i [className "fas fa-folder"] []
, text name
] <>
map toHtml ary
]
performAction :: PerformAction _ State _ Action
performAction (ChangePageSize ps) _ _ = void (cotransform (\state -> changePageSize ps state ))
...
...
@@ -156,21 +211,6 @@ performAction LoadData _ _ = void do
}
-- Corpus {_id : 1, url : "", date : "date", title : "title", source : "source", fav : false}
-- newtype Response = Response
-- { cid :: Int
-- , created :: String
-- , favorite :: Boolean
-- , ngramCount :: Int
-- , hyperdata :: Hyperdata
-- }
-- newtype Hyperdata = Hyperdata
-- {
-- title :: String
-- , abstract :: String
-- }
...
...
src/NTree.purs
0 → 100644
View file @
f36312b5
module NTree where
import Prelude
import Data.Tuple (Tuple(..))
import React (ReactElement)
import React.DOM (a, i, li, text, ul)
import React.DOM.Props (className, href)
data NTree a = NLeaf a | NNode String (Array (NTree a))
type FTree = NTree (Tuple String String)
toHtml :: FTree -> ReactElement
toHtml (NLeaf (Tuple name link)) =
li []
[ a [ href link]
[ i [className "fas fa-folder"] []
, text name
]
]
toHtml (NNode name ary) =
ul []
[ li [] $
[ text name
] <>
map toHtml ary
]
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