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
Christian Merten
purescript-gargantext
Commits
2a6ef3f1
Commit
2a6ef3f1
authored
May 14, 2019
by
Alexandre Delanoë
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Echarts] Options to view data, download as image
parent
d5821c83
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
73 additions
and
17 deletions
+73
-17
AnnotatedField.purs
src/Gargantext/Components/Annotation/AnnotatedField.purs
+5
-6
ECharts.purs
src/Gargantext/Components/Charts/Options/ECharts.purs
+3
-2
Font.purs
src/Gargantext/Components/Charts/Options/Font.purs
+50
-0
Type.purs
src/Gargantext/Components/Charts/Options/Type.purs
+2
-1
Specs.purs
src/Gargantext/Pages/Layout/Specs.purs
+13
-8
No files found.
src/Gargantext/Components/Annotation/AnnotatedField.purs
View file @
2a6ef3f1
...
@@ -47,8 +47,7 @@ annotatedFieldComponent :: R.Component Props
...
@@ -47,8 +47,7 @@ annotatedFieldComponent :: R.Component Props
annotatedFieldComponent = R.hooksComponent "AnnotatedField" cpt
annotatedFieldComponent = R.hooksComponent "AnnotatedField" cpt
where
where
runs props =
runs props =
HTML.div { className: "annotated-field-runs" } $
HTML.div { className: "annotated-field-runs" } (map annotateRun $ compile props)
annotateRun <$> compile props
cpt props _ = do
cpt props _ = do
menu /\ setMenu <- R.useState $ \_ -> pure Nothing
menu /\ setMenu <- R.useState $ \_ -> pure Nothing
let wrapperProps =
let wrapperProps =
...
@@ -99,9 +98,9 @@ annotateRun (Tuple text list) = R.createElement annotatedRunComponent { text, li
...
@@ -99,9 +98,9 @@ annotateRun (Tuple text list) = R.createElement annotatedRunComponent { text, li
annotatedRunComponent :: R.Component RunProps
annotatedRunComponent :: R.Component RunProps
annotatedRunComponent = R.staticComponent "AnnotatedRun" cpt
annotatedRunComponent = R.staticComponent "AnnotatedRun" cpt
where cpt { text, list } _ = maybe' (\_ -> unstyled text) (styled text) list
where cpt
{ text, list } _ = maybe' (\_ -> unstyled text) (styled text) list
styled
text list
= HTML.span { className: className list } [ HTML.text text ]
styled
text list
= HTML.span { className: className list } [ HTML.text text ]
unstyled text = HTML.span {} [ HTML.text text ]
unstyled text
= HTML.span {} [ HTML.text text ]
className
list
= "annotation-run " <> termClass list
className
list
= "annotation-run " <> termClass list
src/Gargantext/Components/Charts/Options/ECharts.purs
View file @
2a6ef3f1
...
@@ -7,7 +7,7 @@ import CSS.Common (normal)
...
@@ -7,7 +7,7 @@ import CSS.Common (normal)
import Data.Array (length)
import Data.Array (length)
import Gargantext.Components.Charts.Options.Color (transparent, violet, black)
import Gargantext.Components.Charts.Options.Color (transparent, violet, black)
import Gargantext.Components.Charts.Options.Data (DataLegend, DataAxis, dataSerie)
import Gargantext.Components.Charts.Options.Data (DataLegend, DataAxis, dataSerie)
import Gargantext.Components.Charts.Options.Font (IconOptions(..), Shape(..), TextStyle, chartFontStyle, chartFontWeight, icon, mkTooltip, Tooltip)
import Gargantext.Components.Charts.Options.Font (IconOptions(..), Shape(..), TextStyle, chartFontStyle, chartFontWeight, icon, mkTooltip, Tooltip
, ToolBox, mkToolBox
)
import Gargantext.Components.Charts.Options.Legend (legendType, LegendMode(..), PlainOrScroll(..), selectedMode, Orientation(..), orient)
import Gargantext.Components.Charts.Options.Legend (legendType, LegendMode(..), PlainOrScroll(..), selectedMode, Orientation(..), orient)
import Gargantext.Components.Charts.Options.Position (Align(..), LeftRelativePosition(..), TopRelativePosition(..), numberPosition, percentPosition, relativePosition)
import Gargantext.Components.Charts.Options.Position (Align(..), LeftRelativePosition(..), TopRelativePosition(..), numberPosition, percentPosition, relativePosition)
import Gargantext.Components.Charts.Options.Series (Series, SeriesName, Chart(..), seriesPieD1)
import Gargantext.Components.Charts.Options.Series (Series, SeriesName, Chart(..), seriesPieD1)
...
@@ -162,7 +162,7 @@ data Options = Options
...
@@ -162,7 +162,7 @@ data Options = Options
}
}
tooltipTriggerAxis :: Tooltip
tooltipTriggerAxis :: Tooltip
tooltipTriggerAxis = mkTooltip {trigger: "axis"}
tooltipTriggerAxis = mkTooltip {
trigger: "axis"}
opts :: Options -> Option
opts :: Options -> Option
opts (Options { mainTitle
opts (Options { mainTitle
...
@@ -182,6 +182,7 @@ opts (Options { mainTitle
...
@@ -182,6 +182,7 @@ opts (Options { mainTitle
, yAxis
, yAxis
, dataZoom: if addZoom then [zoom Slider, zoom Inside] else []
, dataZoom: if addZoom then [zoom Slider, zoom Inside] else []
, children : unsafeCoerce [] -- TODO
, children : unsafeCoerce [] -- TODO
, toolbox: mkToolBox
}
}
data Zoom = Slider | Inside
data Zoom = Slider | Inside
...
...
src/Gargantext/Components/Charts/Options/Font.purs
View file @
2a6ef3f1
...
@@ -17,6 +17,13 @@ module Gargantext.Components.Charts.Options.Font
...
@@ -17,6 +17,13 @@ module Gargantext.Components.Charts.Options.Font
, Tooltip
, Tooltip
, TooltipOptional
, TooltipOptional
, mkTooltip
, mkTooltip
, ToolBox
, mkToolBox
, Feature
, DataView
, MagicType
, Save
, Restore
) where
) where
import Prelude (Unit, ($), (<<<), (<>))
import Prelude (Unit, ($), (<<<), (<>))
...
@@ -109,5 +116,48 @@ type TooltipOptional =
...
@@ -109,5 +116,48 @@ type TooltipOptional =
, formatter :: Formatter
, formatter :: Formatter
)
)
-----------------------------------------------------------------
-- | ToolBox
mkToolBox :: ToolBox
mkToolBox = { feature: { dataView : { show: true, readOnly : false, title : "View data"}
, saveAsImage : { show : true, pixelRatio : 10, title : "Save as image"}
-- , magicType : { show : true, "type" : ["line", "bar", "pie", "stack", "tiled"], title : "Type"}
, restore : {show : true, title : "Restore"}
}
, orient : "vertical"
}
---------------------------------------
type ToolBox = { feature :: Feature
, orient :: String}
type Feature = { dataView :: DataView
, saveAsImage :: Save
--, magicType :: MagicType
, restore :: Restore
}
---------------------------------------
type Save = { show :: Boolean
, pixelRatio :: Int
, title :: String
}
type Restore = { show :: Boolean
, title :: String}
type MagicType = { show :: Boolean
, "type" :: Array String -- TODO use line bar types
, title :: String
}
---------------------------------------
type DataView = { show :: Boolean
, readOnly :: Boolean
, title :: String
}
---------------------------------------
mkTooltip :: forall o. Optional o TooltipOptional => Record o -> Tooltip
mkTooltip :: forall o. Optional o TooltipOptional => Record o -> Tooltip
mkTooltip = unsafeCoerce
mkTooltip = unsafeCoerce
src/Gargantext/Components/Charts/Options/Type.purs
View file @
2a6ef3f1
...
@@ -4,7 +4,7 @@ import Prelude
...
@@ -4,7 +4,7 @@ import Prelude
import Gargantext.Components.Charts.Options.Color (Color)
import Gargantext.Components.Charts.Options.Color (Color)
import Gargantext.Components.Charts.Options.Data (DataLegend, DataAxis)
import Gargantext.Components.Charts.Options.Data (DataLegend, DataAxis)
import Gargantext.Components.Charts.Options.Font (TextStyle, Tooltip)
import Gargantext.Components.Charts.Options.Font (TextStyle, Tooltip
, ToolBox
)
import Gargantext.Components.Charts.Options.Legend (LegendType, Orient, SelectedMode)
import Gargantext.Components.Charts.Options.Legend (LegendType, Orient, SelectedMode)
import Gargantext.Components.Charts.Options.Position (LeftRelativePosition, Position, TopRelativePosition)
import Gargantext.Components.Charts.Options.Position (LeftRelativePosition, Position, TopRelativePosition)
import Gargantext.Components.Charts.Options.Series (Series)
import Gargantext.Components.Charts.Options.Series (Series)
...
@@ -42,6 +42,7 @@ type Option =
...
@@ -42,6 +42,7 @@ type Option =
, series :: Array Series
, series :: Array Series
, dataZoom :: Array DataZoom
, dataZoom :: Array DataZoom
, children :: R.Children
, children :: R.Children
, toolbox :: ToolBox
}
}
type Title =
type Title =
...
...
src/Gargantext/Pages/Layout/Specs.purs
View file @
2a6ef3f1
...
@@ -85,7 +85,8 @@ layout0 layout =
...
@@ -85,7 +85,8 @@ layout0 layout =
outerLayout :: Spec AppState {} Action
outerLayout :: Spec AppState {} Action
outerLayout =
outerLayout =
cont $ fold
cont $ fold
[ withState \st ->
[ -- over _render \render d p s c -> [logLinks d s] ,
withState \st ->
case st.loginState.authData of
case st.loginState.authData of
Just (AuthData {tree_id}) ->
Just (AuthData {tree_id}) ->
ls $ cmapProps (const {root: tree_id}) as
ls $ cmapProps (const {root: tree_id}) as
...
@@ -302,15 +303,11 @@ liNav (LiNav { title : title'
...
@@ -302,15 +303,11 @@ liNav (LiNav { title : title'
]
]
]
]
divDropdownRight :: (Action -> Effect Unit) -> AppState -> ReactElement
divDropdownRight d s =
logLinks :: (Action -> Effect Unit) -> AppState -> ReactElement
ul [className "nav navbar-nav pull-right"]
logLinks d s = case s.loginState.authData of
[ li [className "dropdown"]
[ case s.loginState.authData of
Nothing -> loginLink
Nothing -> loginLink
Just _ -> logoutLink
Just _ -> logoutLink
]
]
where
where
loginLink =
loginLink =
a [ aria {hidden : true}
a [ aria {hidden : true}
...
@@ -332,6 +329,14 @@ divDropdownRight d s =
...
@@ -332,6 +329,14 @@ divDropdownRight d s =
]
]
[text " Logout"]
[text " Logout"]
divDropdownRight :: (Action -> Effect Unit) -> AppState -> ReactElement
divDropdownRight d s =
ul [className "nav navbar-nav pull-right"]
[ li [className "dropdown"]
[ logLinks d s ]
]
layoutFooter :: Spec AppState {} Action
layoutFooter :: Spec AppState {} Action
layoutFooter = simpleSpec performAction render
layoutFooter = simpleSpec performAction render
where
where
...
...
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