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
b86e78b4
Commit
b86e78b4
authored
Jul 30, 2019
by
Przemyslaw Kaminski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Login] rewrite from thermite to reactix
This uses useEffect to handle state glue between thermite and reactix.
parent
cd949147
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
129 additions
and
61 deletions
+129
-61
Login.purs
src/Gargantext/Components/Login.purs
+128
-60
Specs.purs
src/Gargantext/Pages/Layout/Specs.purs
+1
-1
No files found.
src/Gargantext/Components/Login.purs
View file @
b86e78b4
...
@@ -2,14 +2,16 @@ module Gargantext.Components.Login where
...
@@ -2,14 +2,16 @@ module Gargantext.Components.Login where
import Control.Monad.Cont.Trans (lift)
import Control.Monad.Cont.Trans (lift)
import Data.Int as Int
import Data.Int as Int
import Data.Lens (over
, view
)
import Data.Lens (over)
import Data.Maybe (Maybe(..))
import Data.Maybe (Maybe(..))
import Data.T
raversable (traverse_
)
import Data.T
uple.Nested((/\)
)
import Effect.Class (liftEffect)
import Effect.Class (liftEffect)
import Effect (Effect)
import Effect (Effect)
import Effect.Aff (Aff)
import Effect.Aff (Aff)
import React.DOM (a, button, div, h2, h4, h5, i, input, label, p, span, text)
import Reactix as R
import React.DOM.Props (_data, _id, _type, aria, className, href, maxLength, name, onClick, onInput, placeholder, role, target, value)
import Reactix.DOM.HTML as H
import React.DOM (button, div, h5, span, text)
import React.DOM.Props (_data, _id, _type, aria, className, role)
import Thermite (PerformAction, Render, Spec, _render, modifyState_, simpleSpec)
import Thermite (PerformAction, Render, Spec, _render, modifyState_, simpleSpec)
import Web.HTML (window)
import Web.HTML (window)
import Web.HTML.Window (localStorage)
import Web.HTML.Window (localStorage)
...
@@ -46,8 +48,7 @@ initialState = do
...
@@ -46,8 +48,7 @@ initialState = do
data Action
data Action
= PostAuth
= PostAuth
| SetUserName String
| SetCredentials String String
| SetPassword String
modalSpec :: forall props. Boolean -> String -> Spec State props Action -> Spec State props Action
modalSpec :: forall props. Boolean -> String -> Spec State props Action -> Spec State props Action
...
@@ -80,77 +81,144 @@ modalSpec sm t = over _render \render d p s c ->
...
@@ -80,77 +81,144 @@ modalSpec sm t = over _render \render d p s c ->
spec' :: Spec State {} Action
spec' :: Spec State {} Action
spec' = modalSpec true "Login" renderSpec
spec' = modalSpec true "Login" renderSpec
performAction :: PerformAction State {} Action
performAction (SetCredentials usr pwd) _ _ = do
modifyState_ $ _ { username = usr, password = pwd }
performAction PostAuth _ {username, password} = do
res <- lift $ postAuthRequest $ AuthRequest {username, password}
case res of
AuthResponse {inval: Just (AuthInvalid {message})} ->
modifyState_ $ _ { errorMessage = message }
AuthResponse {valid} -> do
liftEffect $ setAuthData valid
modifyState_ $ _ {authData = valid, errorMessage = ""}
liftEffect $ modalHide "loginModal"
renderSpec :: Spec State {} Action
renderSpec :: Spec State {} Action
renderSpec = simpleSpec performAction render
renderSpec = simpleSpec performAction render
where
where
performAction :: PerformAction State {} Action
render :: Render State {} Action
render dispatch _ state _ =
[R2.scuff $ renderCpt dispatch state]
performAction (SetUserName usr) _ _ =
modifyState_ $ _ { username = usr }
performAction (SetPassword pwd) _ _ =
renderCpt :: (Action -> Effect Unit) -> State -> R.Element
modifyState_ $ _ { password = pwd }
renderCpt d s = R.createElement el {} []
where
el = R.hooksComponent "RenderComponent" cpt
cpt {} _children = do
(state /\ setState) <- R.useState' s
performAction PostAuth _ {username, password} = do
R.useEffect $
res <- lift $ postAuthRequest $ AuthRequest {username, password}
if (state.username /= s.username && state.password /= s.password) then do
case res of
_ <- d $ SetCredentials state.username state.password
AuthResponse {inval: Just (AuthInvalid {message})} ->
pure $ d $ PostAuth
modifyState_ $ _ { errorMessage = message }
else
AuthResponse {valid} -> do
pure $ pure $ unit
liftEffect $ setAuthData valid
modifyState_ $ _ {authData = valid, errorMessage = ""}
liftEffect $ modalHide "loginModal"
render :: Render State {} Action
pure $ renderLogin (state /\ setState)
render dispatch _ state _ =
[ div [className "row"]
renderLogin :: R.State State -> R.Element
[ div [className "col-md-10 col-md-push-1"]
renderLogin (state /\ setState) = R.createElement el {} []
[ h2 [className "text-primary center m-a-2"]
where
[ i [className "material-icons md-36"] [text "control_point"]
el = R.hooksComponent "RenderLogin" cpt
, span [className "icon-text"] [text "Gargantext"]
cpt {} _children = do
]
username <- R.useState' state.username
, div [className "card-group"]
password <- R.useState' state.password
[ div [className "card"]
[ div [className "card-block"]
pure $ H.div {className: "row"}
[ div [className "center"]
[ gargLogo
[ h4 [className "m-b-0"]
, H.div {className: "card-group"}
[ span [className "icon-text"] [ text "Welcome :)"] ]
[ H.div {className: "card"}
, p [className "text-muted"]
[ H.div {className: "card-block"}
[ text $ "Login to your account or",
[ H.div {className: "center"}
a [ target "blank",href "https://iscpif.fr/services/applyforourservices/"] [text " ask to get an access"]
[ H.h4 {className: "m-b-0"}
]
[ H.span {className: "icon-text"}
[ H.text "Welcome :)"]
]
]
, div []
, H.p {className: "text-muted"}
[ input [_type "hidden",
[ H.text $ "Login to your account or",
name "csrfmiddlewaretoken",
H.a { target: "blank"
-- TODO hard-coded CSRF token
, href: "https://iscpif.fr/services/applyforourservices/"
value "Wy52D2nor8kC1r1Y4GrsrSIxQ2eqW8UwkdiQQshMoRwobzU4uldknRUhP0j4WcEM" ]
}
[H.text " ask to get an access"]
, div [className "form-group"]
]
[ p [] [text state.errorMessage]
]
, input [className "form-control", _id "id_username",maxLength "254", name "username", placeholder "username", _type "text",value state.username, onInput \e -> dispatch (SetUserName $ R2.unsafeEventValue e)]
, H.div {}
]
[ H.input { type: "hidden"
, div [className "form-group"]
, name: "csrfmiddlewaretoken"
[ input [className "form-control", _id "id_password", name "password", placeholder "password", _type "password",value state.password,onInput \e -> dispatch (SetPassword $ R2.unsafeEventValue e)]
-- TODO hard-coded CSRF token
, div [className "clearfix"] []
, value: "Wy52D2nor8kC1r1Y4GrsrSIxQ2eqW8UwkdiQQshMoRwobzU4uldknRUhP0j4WcEM"
]
}
, div [className "center"]
[ label []
, H.div {className: "form-group"}
[ div [className "checkbox"]
[ H.p {} [H.text state.errorMessage]
[ input [_id "terms-accept", _type "checkbox", value "", className "checkbox"]
, usernameInput username
, text "I accept the terms of uses ",
]
a [href "http://gitlab.iscpif.fr/humanities/tofu/tree/master"] [text " [ Read the terms of use ] "]
, H.div {className: "form-group"}
]
[ passwordInput password
, button [_id "login-button",className "btn btn-primary btn-rounded", _type "submit", onClick \_ -> dispatch $ PostAuth] [text "Login"]
, H.div {className: "clearfix"} []
]
, H.div {className: "center"}
[ H.label {}
[ H.div {className: "checkbox"}
[ H.input { id: "terms-accept"
, type: "checkbox"
, value: ""
, className: "checkbox"
}
, H.text "I accept the terms of uses "
, H.a {href: "http://gitlab.iscpif.fr/humanities/tofu/tree/master"}
[ H.text " [ Read the terms of use ] "]
]
]
]
]
, H.button { id: "login-button"
, className: "btn btn-primary btn-rounded"
, type: "submit"
-- TODO
--, on: {click: \_ -> dispatch $ PostAuth}
, on: {click: onClick username password}
}
[H.text "Login"]
]
]
]
]
]
]
]
]
]
]
]
]
gargLogo =
H.div {className: "col-md-10 col-md-push-1"}
[ H.h2 {className: "text-primary center m-a-2"}
[ H.i {className: "material-icons md-36"}
[H.text "control_point"]
, H.span {className: "icon-text"}
[H.text "Gargantext"]
]
]
]
usernameInput (username /\ setUsername) =
H.input { className: "form-control"
, id: "id_username"
, maxLength: "254"
, name: "username"
, placeholder: "username"
, type: "text"
, defaultValue: username
--, on: {input: \e -> dispatch (SetUserName $ R2.unsafeEventValue e)}
, on: {change: \e -> setUsername $ const $ R2.unsafeEventValue e}
}
passwordInput (password /\ setPassword) =
H.input { className: "form-control"
, id: "id_password"
, name: "password"
, placeholder: "password"
, type: "password"
, defaultValue: password
--, on: {input: \e -> dispatch (SetPassword $ R2.unsafeEventValue e)}
, on: {change: \e -> setPassword $ const $ R2.unsafeEventValue e}
}
onClick (username /\ _) (password /\ _) = \e -> do
setState $ \st -> st {username = username, password = password}
getAuthData :: Effect (Maybe AuthData)
getAuthData :: Effect (Maybe AuthData)
...
...
src/Gargantext/Pages/Layout/Specs.purs
View file @
b86e78b4
...
@@ -53,7 +53,7 @@ pagesComponent s = case s.currentRoute of
...
@@ -53,7 +53,7 @@ pagesComponent s = case s.currentRoute of
Nothing -> selectSpec Home -- TODO add Error page here: url requested does not exist (with funny Garg image)
Nothing -> selectSpec Home -- TODO add Error page here: url requested does not exist (with funny Garg image)
where
where
selectSpec :: Routes -> Spec AppState {} Action
selectSpec :: Routes -> Spec AppState {} Action
selectSpec Home = layout0 $ noState
(L.layoutLanding EN)
selectSpec Home = layout0 $ noState
$ L.layoutLanding EN
selectSpec Login = focus _loginState _loginAction LN.renderSpec
selectSpec Login = focus _loginState _loginAction LN.renderSpec
selectSpec (Folder i) = layout0 $ noState F.layoutFolder
selectSpec (Folder i) = layout0 $ noState F.layoutFolder
...
...
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