1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
module Gargantext.Components.Router (router) where
import Gargantext.Prelude
import DOM.Simple as DOM
import Data.Array (filter, length)
import Data.Array as A
import Data.Foldable (intercalate)
import Data.Map as M
import Data.Maybe (Maybe(..), fromMaybe, maybe)
import Data.UUID (UUID)
import Data.UUID as UUID
import Effect (Effect)
import Gargantext.Components.App.Store (Boxes)
import Gargantext.Components.ErrorsView as ErrorsView
import Gargantext.Components.Forest (forestLayout)
import Gargantext.Components.ForgotPassword (forgotPasswordLayout)
import Gargantext.Components.Login (login)
import Gargantext.Components.Nodes.Annuaire (annuaireLayout)
import Gargantext.Components.Nodes.Annuaire.User (userLayout)
import Gargantext.Components.Nodes.Annuaire.User.Contact (contactLayout)
import Gargantext.Components.Nodes.Corpus as Corpus
import Gargantext.Components.Nodes.Corpus.Code (corpusCodeLayout)
import Gargantext.Components.Nodes.Corpus.Dashboard (dashboardLayout)
import Gargantext.Components.Nodes.Corpus.Document as Document
import Gargantext.Components.Nodes.Corpus.Phylo as Phylo
import Gargantext.Components.Nodes.Graph as Graph
import Gargantext.Components.Nodes.File (fileLayout)
import Gargantext.Components.Nodes.Frame as Frame
import Gargantext.Components.Nodes.Home (homeLayout)
import Gargantext.Components.Nodes.Lists as Lists
import Gargantext.Components.Nodes.Texts as Texts
import Gargantext.Components.Tile (tileBlock)
import Gargantext.Components.TopBar as TopBar
import Gargantext.Config (defaultFrontends, defaultBackends)
import Gargantext.Context.Session as SessionContext
import Gargantext.Ends (Backend)
import Gargantext.Hooks.Resize (ResizeType(..), useResizeHandler)
import Gargantext.Hooks.Session (useSession)
import Gargantext.Routes (AppRoute, Tile)
import Gargantext.Routes as GR
import Gargantext.Sessions (Session, sessionId)
import Gargantext.Sessions as Sessions
import Gargantext.Types (CorpusId, Handed(..), ListId, NodeID, NodeType(..), SessionId, SidePanelState(..))
import Gargantext.Utils ((?))
import Gargantext.Utils.Reactix (getElementById)
import Gargantext.Utils.Reactix as R2
import Reactix as R
import Reactix.DOM.HTML as H
import Record (get)
import Record as Record
import Record.Extra as RE
import Toestand as T
import Type.Proxy (Proxy(..))
here :: R2.Here
here = R2.here "Gargantext.Components.Router"
type Props = ( boxes :: Boxes )
type SessionProps = ( sessionId :: SessionId | Props )
type SessionNodeProps = ( nodeId :: NodeID | SessionProps )
type Props' = ( backend :: Backend, route' :: AppRoute | Props )
router :: R2.Leaf Props
router = R2.leafComponent routerCpt
routerCpt :: R.Component Props
routerCpt = here.component "router" cpt where
cpt { boxes: boxes@{ handed } } _ = do
-- States
handed' <- R2.useLive' handed
-- Computed
let
handedClassName :: Handed -> String
handedClassName = case _ of
LeftHanded -> "left-handed"
RightHanded -> "right-handed"
toggleHandedClass :: Handed -> DOM.Element -> Effect Unit
toggleHandedClass new el = do
R2.removeClass el
[ handedClassName LeftHanded
, handedClassName RightHanded
]
R2.addClass el
[ handedClassName new
]
-- Effects
R.useLayoutEffect1' handed' do
getElementById "app" >>= maybe R.nothing (toggleHandedClass handed')
getElementById "portal" >>= maybe R.nothing (toggleHandedClass handed')
-- Render
pure $
H.div
{ className: "router" }
[
login' boxes
,
TopBar.component
{}
,
ErrorsView.component
{}
,
H.div
{ className: "router__inner" }
[
forest { boxes }
,
mainPage { boxes }
,
sidePanel { boxes }
]
]
--------------------------------------------------------------
mainPage :: R2.Leaf Props
mainPage = R2.leafComponent mainPageCpt
mainPageCpt :: R.Component Props
mainPageCpt = here.component "mainPage" cpt where
cpt { boxes } _ = do
-- States
route <- R2.useLive' boxes.route
tileAxisXList <- R2.useLive' boxes.tileAxisXList
tileAxisYList <- R2.useLive' boxes.tileAxisYList
-- Computed
let
findTile :: UUID -> Record Tile -> Boolean
findTile id tile = eq id $ get (Proxy :: Proxy "id") tile
deleteTile ::
Record Tile
-> T.Box (Array (Record Tile))
-> (Unit -> Effect Unit)
deleteTile tile listBox = const do
list <- T.read listBox
newList <- pure $ filter (not $ findTile $ tile.id) list
T.write_ newList listBox
let hasHorizontalTiles = not $ eq 0 $ length tileAxisXList
let hasVerticalTiles = not $ eq 0 $ length tileAxisYList
-- Render
pure $
H.div { className: "router__body main-page" }
[
H.div
{ className: intercalate " "
[ "main-page__main-row"
, if (hasVerticalTiles)
then "main-page__main-row--with-y-tiles"
else ""
, if (hasVerticalTiles && not hasHorizontalTiles)
then "main-page__main-row--only-y-tiles"
else ""
]
}
[
-- main render route
H.div { className: "main-page__main-route" }
[
renderRoute { boxes, route }
]
,
-- optional tile render route [Y Axis ~ aside vertical column]
case tileAxisYList of
[] -> mempty
_ ->
H.div
{ className: intercalate " "
[ "main-page__vertical-tiles"
, "main-page__vertical-tiles--" <> (show $ length tileAxisYList)
]
} $
tileAxisYList <#> \tile -> tileBlock
{ boxes
, tile
, key: UUID.toString tile.id
, closeCallback: deleteTile tile boxes.tileAxisYList
}
[
renderRoute { boxes, route: tile.route }
]
]
,
-- optional tile render route [X Axis ~ bottom horizontal row]
case tileAxisXList of
[] -> mempty
_ ->
H.div
{ className: intercalate " "
[ "main-page__horizontal-tiles"
, "main-page__horizontal-tiles--" <> (show $ length tileAxisXList)
]
} $
tileAxisXList <#> \tile -> tileBlock
{ boxes
, tile
, key: UUID.toString tile.id
, closeCallback: deleteTile tile boxes.tileAxisXList
}
[
renderRoute { boxes, route: tile.route }
]
]
--------------------------------------------------------------
forest :: R2.Leaf Props
forest = R2.leaf forestCpt
forestCpt :: R.Memo Props
forestCpt = R.memo' $ here.component "forest" cpt where
cpt { boxes } _ = do
-- States
showTree' <- R2.useLive' boxes.showTree
-- Hooks
resizeHandler <- useResizeHandler
-- Effects
R.useLayoutEffect1' [] do
resizeHandler.add
".router__aside__handle__action"
".router__aside"
Vertical
pure $ resizeHandler.remove
".router__aside__handle__action"
-- Render
pure $
H.div
{ className: "router__aside"
-- @XXX: ReactJS lack of "keep-alive" feature workaround solution
-- @link https://github.com/facebook/react/issues/12039
, style: { display: showTree' ? "block" $ "none" }
}
[
H.div
{ className: "router__aside__inner" }
[
forestLayout
{ boxes
, frontends: defaultFrontends
}
]
,
H.div
{ className: "router__aside__handle"
}
[
H.div
{ className: "router__aside__handle__action" }
[]
]
]
--------------------------------------------------------------
sidePanel :: R2.Leaf Props
sidePanel = R2.leafComponent sidePanelCpt
sidePanelCpt :: R.Component Props
sidePanelCpt = here.component "sidePanel" cpt where
cpt props@{ boxes: { session
, sidePanelState } } _ = do
session' <- T.useLive T.unequal session
sidePanelState' <- T.useLive T.unequal sidePanelState
case session' of
Nothing -> pure $ H.div {} []
Just _ ->
case sidePanelState' of
Opened -> pure $
R.provideContext SessionContext.context session'
[ openedSidePanel props ]
_ -> pure $ H.div {} []
--------------------------------------------------------------
type RenderRouteProps =
( route :: AppRoute
| Props
)
renderRoute :: R2.Leaf RenderRouteProps
renderRoute = R2.leaf renderRouteCpt
renderRouteCpt :: R.Memo RenderRouteProps
renderRouteCpt = R.memo' $ here.component "renderRoute" cpt where
cpt { boxes, route } _ = do
let sessionNodeProps sId nId =
{ nodeId: nId
, sessionId: sId
, boxes
}
pure $ R.fragment
[ case route of
GR.Annuaire s n -> annuaire (sessionNodeProps s n) []
GR.ContactPage s a n -> contact (Record.merge { annuaireId: a } $ sessionNodeProps s n) []
GR.Corpus s n -> corpus (sessionNodeProps s n) []
GR.CorpusCode s n -> corpusCode (sessionNodeProps s n) []
GR.CorpusDocument s c l n -> corpusDocument (Record.merge { corpusId: c, listId: l } $ sessionNodeProps s n) []
GR.Dashboard s n -> dashboard (sessionNodeProps s n) []
GR.Document s l n -> document (Record.merge { listId: l } $ sessionNodeProps s n) []
GR.Folder s n -> corpus (sessionNodeProps s n) []
GR.FolderPrivate s n -> corpus (sessionNodeProps s n) []
GR.FolderPublic s n -> corpus (sessionNodeProps s n) []
GR.FolderShared s n -> corpus (sessionNodeProps s n) []
GR.Home -> home { boxes } []
GR.Lists s n -> lists (sessionNodeProps s n) []
GR.Login -> login' boxes
GR.PGraphExplorer s g -> graphExplorer (sessionNodeProps s g) []
GR.PhyloExplorer s g -> phyloExplorer (sessionNodeProps s g) []
GR.RouteFile s n -> routeFile (sessionNodeProps s n) []
GR.RouteFrameWrite s n -> routeFrame (Record.merge { nodeType: NodeFrameWrite } $ sessionNodeProps s n) []
GR.RouteFrameCalc s n -> routeFrame (Record.merge { nodeType: NodeFrameCalc } $ sessionNodeProps s n) []
GR.RouteFrameCode s n -> routeFrame (Record.merge { nodeType: NodeFrameNotebook } $ sessionNodeProps s n) []
GR.RouteFrameVisio s n -> routeFrame (Record.merge { nodeType: NodeFrameVisio } $ sessionNodeProps s n) []
GR.Team s n -> team (sessionNodeProps s n) []
GR.NodeTexts s n -> texts (sessionNodeProps s n) []
GR.UserPage s n -> user (sessionNodeProps s n) []
GR.ForgotPassword p -> forgotPassword {boxes, params: p} []
]
--------------------------------------------------------------
type AuthedProps =
( content :: Session -> R.Element
| SessionProps )
authed :: R2.Component AuthedProps
authed = R.createElement authedCpt
authedCpt :: R.Component AuthedProps
authedCpt = here.component "authed" cpt where
cpt props@{ boxes: { session, sessions }
, content
, sessionId } _ = do
sessions' <- T.useLive T.unequal sessions
let session' = Sessions.lookup sessionId sessions'
R.useEffect' $ do
T.write_ session' session
case session' of
Nothing -> pure $
home homeProps []
Just s -> pure $
R.provideContext SessionContext.context session' [ content s ]
where
homeProps = RE.pick props :: Record Props
--------------------------------------------------------------
openedSidePanel :: R2.Leaf Props
openedSidePanel = R2.leaf openedSidePanelCpt
openedSidePanelCpt :: R.Component Props
openedSidePanelCpt = here.component "openedSidePanel" cpt where
cpt { boxes:
{ route
, sidePanelState
}
} _ = do
session <- useSession
route' <- T.useLive T.unequal route
let wrapper = H.div { className: "side-panel" }
case route' of
GR.Lists _s _n -> do
pure $ wrapper
[ Lists.sidePanel { session
, sidePanelState } [] ]
GR.NodeTexts _s _n ->
pure $ wrapper [ Texts.textsSidePanel {} ]
_ -> pure $ wrapper []
--------------------------------------------------------------
annuaire :: R2.Component SessionNodeProps
annuaire = R.createElement annuaireCpt
annuaireCpt :: R.Component SessionNodeProps
annuaireCpt = here.component "annuaire" cpt where
cpt props@{ nodeId } _ = do
let sessionProps = RE.pick props :: Record SessionProps
pure $ authed (Record.merge { content: \session ->
annuaireLayout { frontends: defaultFrontends
, nodeId
, session } } sessionProps) []
--------------------------------------------------------------
corpus :: R2.Component SessionNodeProps
corpus = R.createElement corpusCpt
corpusCpt :: R.Component SessionNodeProps
corpusCpt = here.component "corpus" cpt where
cpt props@{ nodeId } _ = do
let
sessionProps = RE.pick props :: Record SessionProps
authedProps =
Record.merge
{ content:
\session -> Corpus.node
{ nodeId
, key: show (sessionId session) <> "-" <> show nodeId
}
}
sessionProps
pure $ authed authedProps []
--------------------------------------------------------------
corpusCode :: R2.Component SessionNodeProps
corpusCode = R.createElement corpusCodeCpt
corpusCodeCpt :: R.Component SessionNodeProps
corpusCodeCpt = here.component "corpusCode" cpt where
cpt props@{ boxes, nodeId } _ = do
let
sessionProps = RE.pick props :: Record SessionProps
authedProps = Record.merge
{ content: \session -> corpusCodeLayout
{ nodeId
, session
, boxes
}
}
sessionProps
pure $ authed authedProps []
--------------------------------------------------------------
type CorpusDocumentProps =
( corpusId :: CorpusId
, listId :: ListId
| SessionNodeProps
)
corpusDocument :: R2.Component CorpusDocumentProps
corpusDocument = R.createElement corpusDocumentCpt
corpusDocumentCpt :: R.Component CorpusDocumentProps
corpusDocumentCpt = here.component "corpusDocument" cpt where
cpt props@{ corpusId, listId, nodeId } _ = do
let
sessionProps = (RE.pick props :: Record SessionProps)
authedProps =
Record.merge
{ content:
\session ->
Document.node
{ mCorpusId: Just corpusId
, listId
, nodeId
, key: show (sessionId session) <> "-" <> show nodeId
}
}
sessionProps
pure $ authed authedProps []
--------------------------------------------------------------
dashboard :: R2.Component SessionNodeProps
dashboard = R.createElement dashboardCpt
dashboardCpt :: R.Component SessionNodeProps
dashboardCpt = here.component "dashboard" cpt
where
cpt props@{ boxes, nodeId } _ = do
let sessionProps = RE.pick props :: Record SessionProps
pure $ authed (Record.merge { content: \session ->
dashboardLayout { boxes, nodeId, session } [] } sessionProps) []
--------------------------------------------------------------
type DocumentProps =
( listId :: ListId
| SessionNodeProps
)
document :: R2.Component DocumentProps
document = R.createElement documentCpt
documentCpt :: R.Component DocumentProps
documentCpt = here.component "document" cpt where
cpt props@{ listId, nodeId } _ = do
let
sessionProps = (RE.pick props :: Record SessionProps)
authedProps =
Record.merge
{ content:
\session ->
Document.node
{ mCorpusId: Nothing
, listId
, nodeId
, key: show (sessionId session) <> "-" <> show nodeId
}
}
sessionProps
pure $ authed authedProps []
--------------------------------------------------------------
graphExplorer :: R2.Component SessionNodeProps
graphExplorer = R.createElement graphExplorerCpt
graphExplorerCpt :: R.Component SessionNodeProps
graphExplorerCpt = here.component "graphExplorer" cpt where
cpt props@{ nodeId } _ = do
let
sessionProps = (RE.pick props :: Record SessionProps)
authedProps =
Record.merge
{ content:
\_ -> Graph.node
{ graphId: nodeId
, key: "graphId-" <> show nodeId
}
}
sessionProps
pure $ authed authedProps []
--------------------------------------------------------------
phyloExplorer :: R2.Component SessionNodeProps
phyloExplorer = R.createElement phyloExplorerCpt
phyloExplorerCpt :: R.Component SessionNodeProps
phyloExplorerCpt = here.component "phylo" cpt where
cpt props@{ nodeId } _ = do
let
sessionProps = (RE.pick props :: Record SessionProps)
authedProps =
Record.merge
{ content:
\_ -> Phylo.node
{ nodeId
}
}
sessionProps
pure $ authed authedProps []
--------------------------------------------------------------
home :: R2.Component Props
home = R.createElement homeCpt
homeCpt :: R.Component Props
homeCpt = here.component "home" cpt where
cpt { boxes } _ = do
pure $ homeLayout { boxes }
--------------------------------------------------------------
lists :: R2.Component SessionNodeProps
lists = R.createElement listsCpt
listsCpt :: R.Component SessionNodeProps
listsCpt = here.component "lists" cpt where
cpt props@{ boxes
, nodeId } _ = do
let sessionProps = RE.pick props :: Record SessionProps
pure $ authed (Record.merge { content: \session ->
Lists.listsLayout { boxes
, nodeId
, session
, sessionUpdate: \_ -> pure unit } [] } sessionProps) []
--------------------------------------------------------------
login' :: Boxes -> R.Element
login' { backend, sessions, showLogin: visible } =
login
{ backend
, backends: A.fromFoldable defaultBackends
, sessions
, visible
}
--------------------------------------------------------------
routeFile :: R2.Component SessionNodeProps
routeFile = R.createElement routeFileCpt
routeFileCpt :: R.Component SessionNodeProps
routeFileCpt = here.component "routeFile" cpt where
cpt props@{ nodeId } _ = do
let sessionProps = RE.pick props :: Record SessionProps
pure $ authed (Record.merge { content: \session ->
fileLayout { nodeId, session } } sessionProps) []
--------------------------------------------------------------
type RouteFrameProps =
( nodeType :: NodeType
| SessionNodeProps
)
routeFrame :: R2.Component RouteFrameProps
routeFrame = R.createElement routeFrameCpt
routeFrameCpt :: R.Component RouteFrameProps
routeFrameCpt = here.component "routeFrame" cpt where
cpt props@{ nodeId, nodeType } _ = do
let
sessionProps = (RE.pick props :: Record SessionProps)
authedProps =
Record.merge
{ content:
\session ->
Frame.node
{ nodeId
, nodeType
, key: show (sessionId session) <> "-" <> show nodeId
}
}
sessionProps
pure $ authed authedProps []
--------------------------------------------------------------
team :: R2.Component SessionNodeProps
team = R.createElement teamCpt
teamCpt :: R.Component SessionNodeProps
teamCpt = here.component "team" cpt where
cpt props@{ nodeId } _ = do
let
sessionProps = RE.pick props :: Record SessionProps
authedProps =
Record.merge
{ content:
\session -> Corpus.node
{ nodeId
, key: show (sessionId session) <> "-" <> show nodeId
}
}
sessionProps
pure $ authed authedProps []
--------------------------------------------------------------
texts :: R2.Component SessionNodeProps
texts = R.createElement textsCpt
textsCpt :: R.Component SessionNodeProps
textsCpt = here.component "texts" cpt where
cpt props@{ nodeId } _ = do
let
sessionProps = (RE.pick props :: Record SessionProps)
authedProps =
Record.merge
{ content:
\_ -> Texts.textsLayout
{ frontends: defaultFrontends
, nodeId
}
}
sessionProps
pure $ authed authedProps []
--------------------------------------------------------------
user :: R2.Component SessionNodeProps
user = R.createElement userCpt
userCpt :: R.Component SessionNodeProps
userCpt = here.component "user" cpt where
cpt props@{ boxes
, nodeId } _ = do
let sessionProps = RE.pick props :: Record SessionProps
pure $ authed (Record.merge { content: \session ->
userLayout { boxes
, frontends: defaultFrontends
, nodeId
, session } [] } sessionProps) []
--------------------------------------------------------------
type ContactProps = ( annuaireId :: NodeID | SessionNodeProps )
contact :: R2.Component ContactProps
contact = R.createElement contactCpt
contactCpt :: R.Component ContactProps
contactCpt = here.component "contact" cpt where
cpt props@{ annuaireId
, nodeId
} _ = do
let
sessionProps = (RE.pick props :: Record SessionProps)
authedProps =
{ content:
\_ -> contactLayout
{ nodeId
, annuaireId
, key: "annuaireId-" <> show annuaireId
}
} `Record.merge` sessionProps
pure $ authed authedProps []
--------------------------------------------------------------
type ForgotPasswordProps = ( params :: (M.Map String String) | Props)
forgotPassword :: R2.Component ForgotPasswordProps
forgotPassword = R.createElement forgotPasswordCpt
forgotPasswordCpt :: R.Component ForgotPasswordProps
forgotPasswordCpt = here.component "forgotPassword" cpt where
cpt { params } _ = do
let server = fromMaybe "" $ M.lookup "server" params
let uuid = fromMaybe "" $ M.lookup "uuid" params
pure $ forgotPasswordLayout { server, uuid } []