Store the transaction ID locally, too.

This commit is contained in:
Danila Fedorin 2018-12-17 20:30:11 -08:00
parent 7de91104b0
commit 36ad2cc93c
2 changed files with 38 additions and 13 deletions

View File

@ -92,6 +92,7 @@ updateChangeRoomText m roomId text =
typingIndicator = case (text, Dict.get roomId m.roomText) of typingIndicator = case (text, Dict.get roomId m.roomText) of
("", _) -> Just False ("", _) -> Just False
(_, Just "") -> Just True (_, Just "") -> Just True
(_, Nothing) -> Just True
_ -> Nothing _ -> Nothing
command = case typingIndicator of command = case typingIndicator of
Just b -> sendTypingIndicator m.apiUrl (Maybe.withDefault "" m.token) roomId m.loginUsername b typingTimeout Just b -> sendTypingIndicator m.apiUrl (Maybe.withDefault "" m.token) roomId m.loginUsername b typingTimeout
@ -118,7 +119,15 @@ updateStoreData m d = case (Json.Decode.decodeValue storeDataDecoder d) of
updateLoginInfo : Model -> Json.Encode.Value -> (Model, Cmd Msg) updateLoginInfo : Model -> Json.Encode.Value -> (Model, Cmd Msg)
updateLoginInfo m s = case Json.Decode.decodeValue (Json.Decode.map decodeLoginInfo Json.Decode.string) s of updateLoginInfo m s = case Json.Decode.decodeValue (Json.Decode.map decodeLoginInfo Json.Decode.string) s of
Ok (Just (t,a,u)) -> ({ m | token = Just t, apiUrl = a, loginUsername = u}, firstSync a t) Ok (Just { token, apiUrl, username, transactionId }) ->
(
{ m | token = Just token
, apiUrl = apiUrl
, loginUsername = username
, transactionId = transactionId
}
, firstSync apiUrl token
)
_ -> (m, Nav.pushUrl m.key <| Url.Builder.absolute [ "login" ] []) _ -> (m, Nav.pushUrl m.key <| Url.Builder.absolute [ "login" ] [])
updateChangeRoute : Model -> Route -> (Model, Cmd Msg) updateChangeRoute : Model -> Route -> (Model, Cmd Msg)
@ -148,16 +157,23 @@ updateUserData m s r = case r of
Ok ud -> ({ m | userData = Dict.insert s ud m.userData }, Cmd.none) Ok ud -> ({ m | userData = Dict.insert s ud m.userData }, Cmd.none)
Err e -> (m, userData m.apiUrl (Maybe.withDefault "" m.token) s) Err e -> (m, userData m.apiUrl (Maybe.withDefault "" m.token) s)
updateSendRoomText : Model -> String -> (Model, Cmd Msg) updateSendRoomText : Model -> RoomId -> (Model, Cmd Msg)
updateSendRoomText m r = updateSendRoomText m r =
let let
token = Maybe.withDefault "" m.token token = Maybe.withDefault "" m.token
message = Maybe.andThen (\s -> if s == "" then Nothing else Just s) message = Maybe.andThen (\s -> if s == "" then Nothing else Just s)
<| Dict.get r m.roomText <| Dict.get r m.roomText
command = Maybe.withDefault Cmd.none combinedCmd = case message of
<| Maybe.map (sendTextMessage m.apiUrl token m.transactionId r) message Nothing -> Cmd.none
Just s -> Cmd.batch
[ sendTextMessage m.apiUrl token m.transactionId r s
, sendTypingIndicator m.apiUrl token r m.loginUsername False typingTimeout
, setStoreValuePort ("scylla.loginInfo", Json.Encode.string
<| encodeLoginInfo
<| LoginInfo (Maybe.withDefault "" m.token) m.apiUrl m.loginUsername (m.transactionId + 1))
]
in in
({ m | roomText = Dict.insert r "" m.roomText, transactionId = m.transactionId + 1 }, command) ({ m | roomText = Dict.insert r "" m.roomText, transactionId = m.transactionId + 1 }, combinedCmd)
updateTryUrl : Model -> Browser.UrlRequest -> (Model, Cmd Msg) updateTryUrl : Model -> Browser.UrlRequest -> (Model, Cmd Msg)
updateTryUrl m ur = case ur of updateTryUrl m ur = case ur of
@ -228,7 +244,10 @@ updateSyncResponse model r notify =
subscriptions : Model -> Sub Msg subscriptions : Model -> Sub Msg
subscriptions m = subscriptions m =
let let
typingTimer = case Maybe.withDefault "" <| Maybe.andThen (\rid -> Dict.get rid m.roomText) <| currentRoomId m of currentText = Maybe.withDefault ""
<| Maybe.andThen (\rid -> Dict.get rid m.roomText)
<| currentRoomId m
typingTimer = case currentText of
"" -> Sub.none "" -> Sub.none
_ -> every typingTimeout TypingTick _ -> every typingTimeout TypingTick
in in

View File

@ -7,18 +7,24 @@ import Json.Encode as Encode
type alias Username = String type alias Username = String
type alias Password = String type alias Password = String
type alias LoginInfo = (ApiToken, ApiUrl, Username) type alias LoginInfo =
{ token : ApiToken
, apiUrl : ApiUrl
, username : Username
, transactionId : Int
}
encodeLoginInfo : LoginInfo -> String encodeLoginInfo : LoginInfo -> String
encodeLoginInfo (t,a,u) = t ++ "," ++ a ++ "," ++ u encodeLoginInfo {token, apiUrl, username, transactionId} =
token ++ "," ++ apiUrl ++ "," ++ username ++ "," ++ (String.fromInt transactionId)
decodeLoginInfo : String -> Maybe LoginInfo decodeLoginInfo : String -> Maybe LoginInfo
decodeLoginInfo s = case String.indexes "," s of decodeLoginInfo s = case String.indexes "," s of
[ fst, snd ] -> Just [ fst, snd, thd ] -> Just <| LoginInfo
( (String.slice 0 fst s) (String.slice 0 fst s)
, (String.slice (fst + 1) snd s) (String.slice (fst + 1) snd s)
, (String.dropLeft (snd + 1) s) (String.slice (snd + 1) thd s)
) (Maybe.withDefault 0 <| String.toInt <| String.dropLeft (thd + 1) s)
_ -> Nothing _ -> Nothing
type alias LoginResponse = type alias LoginResponse =