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
131
Issues
131
List
Board
Labels
Milestones
Merge Requests
3
Merge Requests
3
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
53c5217f
Verified
Commit
53c5217f
authored
Jun 11, 2024
by
Przemyslaw Kaminski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[websocket] use Ref for better state management
parent
ecdeeed1
Pipeline
#6219
failed with stages
in 6 minutes and 10 seconds
Changes
5
Pipelines
1
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
146 additions
and
65 deletions
+146
-65
spago.lock
spago.lock
+1
-0
spago.yaml
spago.yaml
+1
-0
App.purs
src/Gargantext/Components/App/App.purs
+7
-4
Store.purs
src/Gargantext/Components/App/Store.purs
+4
-3
Notifications.purs
src/Gargantext/Components/Notifications.purs
+133
-58
No files found.
spago.lock
View file @
53c5217f
...
@@ -62,6 +62,7 @@ workspace:
...
@@ -62,6 +62,7 @@ workspace:
- reactix: ">=0.6.1 <0.7.0"
- reactix: ">=0.6.1 <0.7.0"
- record: ">=4.0.0 <5.0.0"
- record: ">=4.0.0 <5.0.0"
- record-extra: ">=5.0.1 <6.0.0"
- record-extra: ">=5.0.1 <6.0.0"
- refs
- routing: ">=11.0.0 <12.0.0"
- routing: ">=11.0.0 <12.0.0"
- sequences: "*"
- sequences: "*"
- simple-json: ">=9.0.0 <10.0.0"
- simple-json: ">=9.0.0 <10.0.0"
...
...
spago.yaml
View file @
53c5217f
...
@@ -105,6 +105,7 @@ package:
...
@@ -105,6 +105,7 @@ package:
-
reactix
:
"
>=0.6.1
<0.7.0"
-
reactix
:
"
>=0.6.1
<0.7.0"
-
record
:
"
>=4.0.0
<5.0.0"
-
record
:
"
>=4.0.0
<5.0.0"
-
record-extra
:
"
>=5.0.1
<6.0.0"
-
record-extra
:
"
>=5.0.1
<6.0.0"
-
refs
-
routing
:
"
>=11.0.0
<12.0.0"
-
routing
:
"
>=11.0.0
<12.0.0"
-
sequences
:
"
*"
-
sequences
:
"
*"
-
simple-json
:
"
>=9.0.0
<10.0.0"
-
simple-json
:
"
>=9.0.0
<10.0.0"
...
...
src/Gargantext/Components/App/App.purs
View file @
53c5217f
...
@@ -16,6 +16,7 @@ import Gargantext.Types (CacheParams, defaultCacheParams)
...
@@ -16,6 +16,7 @@ import Gargantext.Types (CacheParams, defaultCacheParams)
import Gargantext.Utils (getter)
import Gargantext.Utils (getter)
import Gargantext.Utils.Reactix as R2
import Gargantext.Utils.Reactix as R2
import Reactix as R
import Reactix as R
import Reactix.Utils as RU
import Record as Record
import Record as Record
import Toestand as T
import Toestand as T
...
@@ -62,12 +63,14 @@ hydrateStoreCpt = here.component "hydrateStore" cpt where
...
@@ -62,12 +63,14 @@ hydrateStoreCpt = here.component "hydrateStore" cpt where
} _ = do
} _ = do
-- | Computed
-- | Computed
-- |
-- |
wsNotification <- RU.hook $ \_ -> Notifications.emptyWSNotification
(state :: Record AppStore.State) <- pure $
(state :: Record AppStore.State) <- pure $
-- (cache options)
-- (cache options)
{ expandTableEdition: getter _.expandTableEdition cacheParams
{ expandTableEdition: getter _.expandTableEdition cacheParams
, showTree: getter _.showTree cacheParams
, showTree: getter _.showTree cacheParams
-- (default options)
-- (default options)
} `Record.merge`
AppStore.options
} `Record.merge`
(AppStore.options wsNotification)
-- | Render
-- | Render
-- |
-- |
...
@@ -102,13 +105,13 @@ mainAppCpt = here.component "main" cpt where
...
@@ -102,13 +105,13 @@ mainAppCpt = here.component "main" cpt where
R2.loadLocalStorageState R2.openNodesKey boxes.forestOpen
R2.loadLocalStorageState R2.openNodesKey boxes.forestOpen
T.listen (R2.listenLocalStorageState R2.openNodesKey) boxes.forestOpen
T.listen (R2.listenLocalStorageState R2.openNodesKey) boxes.forestOpen
R.useEffectOnce' $ do
R.useEffectOnce' $ do
ws
'
<- T.read boxes.wsNotification
ws <- T.read boxes.wsNotification
-- TODO See G.C.Forest: we need a WS connection for every backend we're connected to
-- TODO See G.C.Forest: we need a WS connection for every backend we're connected to
(Sessions.Sessions { sessions }) <- T.read boxes.sessions
(Sessions.Sessions { sessions }) <- T.read boxes.sessions
let session = Seq.head sessions
let session = Seq.head sessions
-- here.log2 "[mainApp] sessions" sessions'
-- here.log2 "[mainApp] sessions" sessions'
ws <- Notifications.connect ws'
"ws://localhost:8008/ws" session
Notifications.connect ws
"ws://localhost:8008/ws" session
T.write_ ws boxes.wsNotification
--
T.write_ ws boxes.wsNotification
let action = Notifications.InsertCallback (Notifications.UpdateTree (-1)) "some-uuid" (\_ -> here.log "callback!")
let action = Notifications.InsertCallback (Notifications.UpdateTree (-1)) "some-uuid" (\_ -> here.log "callback!")
Notifications.performAction ws action
Notifications.performAction ws action
useHashRouter Router.router boxes.route -- Install router to window
useHashRouter Router.router boxes.route -- Install router to window
...
...
src/Gargantext/Components/App/Store.purs
View file @
53c5217f
...
@@ -33,6 +33,7 @@ import Gargantext.Utils.Reactix as R2
...
@@ -33,6 +33,7 @@ import Gargantext.Utils.Reactix as R2
import Gargantext.Utils.Stores as Stores
import Gargantext.Utils.Stores as Stores
import Gargantext.Utils.Toestand as T2
import Gargantext.Utils.Toestand as T2
import Reactix as R
import Reactix as R
import Record as Record
import Toestand as T
import Toestand as T
import Unsafe.Coerce (unsafeCoerce)
import Unsafe.Coerce (unsafeCoerce)
...
@@ -100,8 +101,9 @@ type State =
...
@@ -100,8 +101,9 @@ type State =
, wsNotification :: Notifications.WSNotification
, wsNotification :: Notifications.WSNotification
)
)
options :: Record State
options :: Notifications.WSNotification -> Record State
options =
options wsNotification =
{ wsNotification } `Record.merge`
{ backend : Nothing
{ backend : Nothing
, errors : []
, errors : []
, expandTableEdition : false
, expandTableEdition : false
...
@@ -128,7 +130,6 @@ options =
...
@@ -128,7 +130,6 @@ options =
, theme : Themes.defaultTheme
, theme : Themes.defaultTheme
, tileAxisXList : mempty
, tileAxisXList : mempty
, tileAxisYList : mempty
, tileAxisYList : mempty
, wsNotification : Notifications.emptyWSNotification
}
}
context :: R.Context (Record Store)
context :: R.Context (Record Store)
...
...
src/Gargantext/Components/Notifications.purs
View file @
53c5217f
This diff is collapsed.
Click to expand it.
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