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
140
Issues
140
List
Board
Labels
Milestones
Merge Requests
5
Merge Requests
5
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
cf762e19
Unverified
Commit
cf762e19
authored
Apr 23, 2019
by
Nicolas Pouillard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[GraphExplorer] Zoom slider (and small refactorings)
parent
6c2f3c69
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
32 additions
and
11 deletions
+32
-11
psc-package.json
psc-package.json
+1
-0
Sigmajs.js
src/Gargantext/Components/GraphExplorer/Sigmajs.js
+2
-1
Graph.purs
src/Gargantext/Pages/Corpus/Graph.purs
+29
-10
No files found.
psc-package.json
View file @
cf762e19
...
@@ -3,6 +3,7 @@
...
@@ -3,6 +3,7 @@
"set"
:
"master"
,
"set"
:
"master"
,
"source"
:
"https://github.com/np/package-sets.git"
,
"source"
:
"https://github.com/np/package-sets.git"
,
"depends"
:
[
"depends"
:
[
"numbers"
,
"spec-quickcheck"
,
"spec-quickcheck"
,
"spec-discovery"
,
"spec-discovery"
,
"uint"
,
"uint"
,
...
...
src/Gargantext/Components/GraphExplorer/Sigmajs.js
View file @
cf762e19
...
@@ -69,7 +69,8 @@ exports.pauseForceAtlas2 = function() {
...
@@ -69,7 +69,8 @@ exports.pauseForceAtlas2 = function() {
exports
.
cursor_size
=
10
;
exports
.
cursor_size
=
10
;
// TODO
// TODO
exports
.
shift_key
=
false
;
// exports.shift_key = false;
exports
.
shift_key
=
true
;
exports
.
trackMouse
=
function
()
{
exports
.
trackMouse
=
function
()
{
var
partialGraph
=
window
.
sigmaGargInstance
;
var
partialGraph
=
window
.
sigmaGargInstance
;
...
...
src/Gargantext/Pages/Corpus/Graph.purs
View file @
cf762e19
...
@@ -18,6 +18,7 @@ import Data.Lens (Lens, Lens', over, (%~), (+~), (.~), (^.))
...
@@ -18,6 +18,7 @@ import Data.Lens (Lens, Lens', over, (%~), (+~), (.~), (^.))
import Data.Lens.Record (prop)
import Data.Lens.Record (prop)
import Data.Maybe (Maybe(..), fromJust, fromMaybe, isNothing)
import Data.Maybe (Maybe(..), fromJust, fromMaybe, isNothing)
import Data.Newtype (class Newtype)
import Data.Newtype (class Newtype)
import Data.Number as Num
import Data.String (joinWith)
import Data.String (joinWith)
import Data.Symbol (SProxy(..))
import Data.Symbol (SProxy(..))
import Data.Traversable (for_)
import Data.Traversable (for_)
...
@@ -43,6 +44,7 @@ import Partial.Unsafe (unsafePartial)
...
@@ -43,6 +44,7 @@ import Partial.Unsafe (unsafePartial)
import React (ReactElement)
import React (ReactElement)
import React.DOM (a, br', h2, button, div, form', input, li, li', menu, option, p, select, span, text, ul, ul')
import React.DOM (a, br', h2, button, div, form', input, li, li', menu, option, p, select, span, text, ul, ul')
import React.DOM.Props (_id, _type, checked, className, defaultValue, href, max, min, name, onChange, onClick, placeholder, style, title, value, onMouseMove)
import React.DOM.Props (_id, _type, checked, className, defaultValue, href, max, min, name, onChange, onClick, placeholder, style, title, value, onMouseMove)
import React.SyntheticEvent (SyntheticUIEvent, target)
import Thermite (PerformAction, Render, Spec, _render, cmapProps, createClass, defaultPerformAction, defaultRender, modifyState, modifyState_, noState, simpleSpec, withState)
import Thermite (PerformAction, Render, Spec, _render, cmapProps, createClass, defaultPerformAction, defaultRender, modifyState, modifyState_, noState, simpleSpec, withState)
import Unsafe.Coerce (unsafeCoerce)
import Unsafe.Coerce (unsafeCoerce)
import Web.HTML (window)
import Web.HTML (window)
...
@@ -94,6 +96,10 @@ _drawEdges' = prop (SProxy :: SProxy "drawEdges")
...
@@ -94,6 +96,10 @@ _drawEdges' = prop (SProxy :: SProxy "drawEdges")
_drawEdges :: Lens' SigmaSettings Boolean
_drawEdges :: Lens' SigmaSettings Boolean
_drawEdges f = unsafeCoerce $ _drawEdges' f
_drawEdges f = unsafeCoerce $ _drawEdges' f
numberTargetValue :: SyntheticUIEvent -> Number
numberTargetValue e =
unsafePartial (fromJust (Num.fromString ((unsafeCoerce (unsafePerformEffect (target e))).value)))
-- TODO remove newtype here
-- TODO remove newtype here
newtype State = State
newtype State = State
{ graphData :: GraphData
{ graphData :: GraphData
...
@@ -109,6 +115,8 @@ newtype State = State
...
@@ -109,6 +115,8 @@ newtype State = State
, settings :: SigmaSettings
, settings :: SigmaSettings
}
}
derive instance newtypeState :: Newtype State _
initialState :: State
initialState :: State
initialState = State
initialState = State
{ graphData : GraphData {nodes: [], edges: [], sides: [], metaData : Just $ MetaData{title : "", legend : [], corpusId : []}}
{ graphData : GraphData {nodes: [], edges: [], sides: [], metaData : Just $ MetaData{title : "", legend : [], corpusId : []}}
...
@@ -164,9 +172,10 @@ performAction (ChangeLabelSize size) _ _ =
...
@@ -164,9 +172,10 @@ performAction (ChangeLabelSize size) _ _ =
State $ ((_settings <<< _labelSizeRatio) .~ size) s
State $ ((_settings <<< _labelSizeRatio) .~ size) s
performAction (ChangeNodeSize size) _ _ =
performAction (ChangeNodeSize size) _ _ =
modifyState_ $ \(State s) -> do
modifyState_ $ \(State s) ->
let maxNoded = ((_settings <<< _maxNodeSize) .~ size) s
s # _settings <<< _maxNodeSize .~ (size * 10.0)
State $ ((_settings <<< _minNodeSize) .~ (size * 0.10)) maxNoded
# _settings <<< _minNodeSize .~ size
# State
performAction DisplayEdges _ _ =
performAction DisplayEdges _ _ =
modifyState_ $ \(State s) -> do
modifyState_ $ \(State s) -> do
...
@@ -493,18 +502,18 @@ specOld = fold [treespec treeSpec, graphspec $ simpleSpec performAction render']
...
@@ -493,18 +502,18 @@ specOld = fold [treespec treeSpec, graphspec $ simpleSpec performAction render']
, _id "labelSizeRange"
, _id "labelSizeRange"
, max "4"
, max "4"
, defaultValue <<< show $ settings ^. _labelSizeRatio
, defaultValue <<< show $ settings ^. _labelSizeRatio
, min "
0
"
, min "
1
"
, onChange \e -> d $ ChangeLabelSize (
unsafeCoerce e).target.value
, onChange \e -> d $ ChangeLabelSize (
numberTargetValue e)
]
]
]
]
, li [className "col-md-2"]
, li [className "col-md-2"]
[ span [] [text "Nodes"],input [_type "range"
[ span [] [text "Nodes"],input [_type "range"
, _id "nodeSizeRange"
, _id "nodeSizeRange"
, max "
20
"
, max "
4
"
, defaultValue <<< show $ settings ^. _m
ax
NodeSize
, defaultValue <<< show $ settings ^. _m
in
NodeSize
, min "
0
"
, min "
1
"
, onChange \e -> d $ ChangeNodeSize (
unsafeCoerce e).target.value
, onChange \e -> d $ ChangeNodeSize (
numberTargetValue e)
]
]
]
]
, li [className "col-md-2"]
, li [className "col-md-2"]
...
@@ -515,6 +524,17 @@ specOld = fold [treespec treeSpec, graphspec $ simpleSpec performAction render']
...
@@ -515,6 +524,17 @@ specOld = fold [treespec treeSpec, graphspec $ simpleSpec performAction render']
, onClick \_ -> modCamera0 (const {x: 0.0, y: 0.0, ratio: 1.0})
, onClick \_ -> modCamera0 (const {x: 0.0, y: 0.0, ratio: 1.0})
] [text "Center"]
] [text "Center"]
]
]
, li [className "col-md-2"]
[ span [] [text "Zoom"],input [ _type "range"
, _id "cameraRatio"
, max "100"
, defaultValue "0"
, min "0"
, onChange \e -> do
let ratio = (100.0 - numberTargetValue e) / 100.0
modCamera0 (const {ratio})
]
]
, li'
, li'
[ button [ className "btn btn-primary"
[ button [ className "btn btn-primary"
, onClick \_ -> pauseForceAtlas2
, onClick \_ -> pauseForceAtlas2
...
@@ -548,7 +568,6 @@ specOld = fold [treespec treeSpec, graphspec $ simpleSpec performAction render']
...
@@ -548,7 +568,6 @@ specOld = fold [treespec treeSpec, graphspec $ simpleSpec performAction render']
, ref: setSigmaRef
, ref: setSigmaRef
, onClickNode : \e ->
, onClickNode : \e ->
unsafePerformEffect $ do
unsafePerformEffect $ do
modCamera0 $ \{ratio} -> {ratio: ratio / 2.0}
_ <- d $ ShowSidePanel true
_ <- d $ ShowSidePanel true
_ <- d $ SelectNode $ SelectedNode {id : (unsafeCoerce e).data.node.id, label : (unsafeCoerce e).data.node.label}
_ <- d $ SelectNode $ SelectedNode {id : (unsafeCoerce e).data.node.id, label : (unsafeCoerce e).data.node.label}
pure unit
pure unit
...
...
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