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
24006ff8
Commit
24006ff8
authored
Apr 24, 2018
by
Mael NICOLAS
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
starting to type Charts, DataZoom done
parent
75ae440b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
56 additions
and
20 deletions
+56
-20
Chart.purs
src/Chart.purs
+53
-18
Dashboard.purs
src/Dashboard.purs
+3
-2
No files found.
src/Chart.purs
View file @
24006ff8
...
...
@@ -3,18 +3,7 @@ module Chart where
import Prelude
import CSS (Color, white)
import React (ReactClass, ReactElement, createElementDynamic)
import React.DOM.Props (Props, unsafeFromPropsArray, unsafeMkProps)
import Control.Monad.Eff (Eff)
import DOM (DOM)
import DOM.HTML (window) as DOM
import DOM.HTML.Types (htmlDocumentToParentNode) as DOM
import DOM.HTML.Window (document) as DOM
import DOM.Node.ParentNode (QuerySelector(..))
import DOM.Node.ParentNode (querySelector) as DOM
import Data.Maybe (fromJust)
import Partial.Unsafe (unsafePartial)
import React (ReactElement)
import React as R
import React.DOM (p)
import React.DOM.Props (Props, className, unsafeFromPropsArray)
...
...
@@ -213,10 +202,10 @@ type Title =
type Rich = {}
foreign import eChartsClass :: forall props. ReactClass props
foreign import eChartsClass :: forall props. R
.R
eactClass props
echarts :: forall eff. Array Props -> ReactElement
echarts p = createElementDynamic eChartsClass (unsafeFromPropsArray p) []
echarts :: forall eff. Array Props -> R
.R
eactElement
echarts p =
R.
createElementDynamic eChartsClass (unsafeFromPropsArray p) []
-- Props
...
...
@@ -373,7 +362,7 @@ yAxisIndex = unsafeMkProps "yAxisIndex"
-- , p''
-- ]
histogram :: ReactElement
histogram :: R
.R
eactElement
histogram = echarts
[ option
[ tooltip [trigger "axis"]
...
...
@@ -388,12 +377,53 @@ histogram = echarts
, "Sep", "Oct", "Nov" , "Dec"
]
]
, dataZoom
[dz1,dz1,dz2,dz2
]
, dataZoom
' [dz1', dz1', dz2', dz2'
]
, yAxis [ya1, ya2]
, series [sd1, sd2, sd3]
]
]
{-
type DataZoom =
{"type" :: String
, xAxisIndex :: Int
, filterMode :: String
, start :: Int
, end :: Int
}
-}
dataZoom' :: Array DataZoom -> Props
dataZoom' dzs = unsafeMkProps "dataZoom" $ dzToProps <$> dzs
dzToProps :: forall props. DataZoom -> props
dzToProps dz = unsafeFromPropsArray
[ type' dz."type"
, xAxisIndex dz.xAxisIndex
, filterMode dz.filterMode
, start dz.start
, end dz.end
]
dz1' :: DataZoom
dz1' = {
"type": "slider"
,xAxisIndex: 0
,filterMode: "empty"
,start: 0
,end: 100
}
dz2' :: DataZoom
dz2' = {
"type": "inside"
,xAxisIndex: 0
,filterMode: "empty"
,start: 0
,end: 100
}
dz1 :: forall props. props
dz1 = unsafeFromPropsArray
[ type' "slider"
, xAxisIndex 0
...
...
@@ -402,6 +432,7 @@ dz1 = unsafeFromPropsArray
, end 100
]
dz2 :: forall props. props
dz2 = unsafeFromPropsArray
[ type' "inside"
, xAxisIndex 0
...
...
@@ -410,6 +441,7 @@ dz2 = unsafeFromPropsArray
, end 100
]
ya1 :: forall props. props
ya1 = unsafeFromPropsArray
[ type' "value"
, name "Score metric"
...
...
@@ -417,7 +449,7 @@ ya1 = unsafeFromPropsArray
, position "right"
, axisLabel [formatter "{value}"]
]
ya2 :: forall props. props
ya2 = unsafeFromPropsArray
[ type' "value"
, name "Publications (by year)"
...
...
@@ -426,6 +458,7 @@ ya2 = unsafeFromPropsArray
, axisLabel [formatter "{value}"]
]
sd1 :: forall props. props
sd1 = unsafeFromPropsArray
[ name "Map terms coverage"
, type' "line"
...
...
@@ -439,6 +472,7 @@ sd1 = unsafeFromPropsArray
, data' [95, 80, 75, 35, 30, 50, 70, 80, 95, 95, 95, 99]
]
sd3 :: forall props. props
sd3 = unsafeFromPropsArray
[ name "All"
, type' "bar"
...
...
@@ -448,6 +482,7 @@ sd3 = unsafeFromPropsArray
]
sd2 :: forall props. props
sd2 = unsafeFromPropsArray
[ name "Favorites"
, type' "bar"
...
...
@@ -457,5 +492,5 @@ sd2 = unsafeFromPropsArray
]
p'' :: ReactElement
p'' :: R
.R
eactElement
p'' = p [] []
src/Dashboard.purs
View file @
24006ff8
...
...
@@ -2,9 +2,10 @@ module Dashboard where
import DOM (DOM)
import Data.Unit (Unit)
import Prelude (pure, unit
, void
)
import Prelude (pure, unit)
import React.DOM (text)
import Thermite (PerformAction, Render, Spec, simpleSpec)
import Chart
type State = Unit
...
...
@@ -17,7 +18,7 @@ performAction :: forall eff props. PerformAction (dom :: DOM | eff) State props
performAction _ _ _ = pure unit
render :: forall props. Render State props Action
render dispatch _ state _ = [text "Dashboard"]
render dispatch _ state _ = [text "Dashboard"
, histogram
]
layoutDashboard :: forall props eff. Spec (dom :: DOM | eff) State props Action
layoutDashboard = simpleSpec performAction render
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