Scylla/src/Scylla/Model.elm

79 lines
3.3 KiB
Elm
Raw Normal View History

2018-12-08 13:49:30 -08:00
module Scylla.Model exposing (..)
import Scylla.Api exposing (..)
2018-12-19 21:52:07 -08:00
import Scylla.Sync exposing (SyncResponse, HistoryResponse, JoinedRoom, senderName)
2018-12-08 15:06:14 -08:00
import Scylla.Login exposing (LoginResponse, Username, Password)
2018-12-13 02:15:14 -08:00
import Scylla.UserData exposing (UserData)
import Scylla.Route exposing (Route(..), RoomId)
import Scylla.Storage exposing (..)
2018-12-08 13:49:30 -08:00
import Browser.Navigation as Nav
import Browser.Dom exposing (Viewport)
2018-12-13 14:06:15 -08:00
import Url.Builder
2018-12-08 17:15:35 -08:00
import Dict exposing (Dict)
2018-12-17 19:56:50 -08:00
import Time exposing (Posix)
import Json.Decode
2018-12-08 13:49:30 -08:00
import Browser
import Http
import Url exposing (Url)
type alias Model =
{ key : Nav.Key
2018-12-08 19:09:20 -08:00
, route : Route
2018-12-08 13:49:30 -08:00
, token : Maybe ApiToken
2018-12-08 15:06:14 -08:00
, loginUsername : Username
, loginPassword : Password
2018-12-08 13:49:30 -08:00
, apiUrl : ApiUrl
2018-12-08 17:15:35 -08:00
, sync : SyncResponse
, errors : List String
2018-12-09 23:38:43 -08:00
, roomText : Dict String String
, transactionId : Int
, userData : Dict Username UserData
2018-12-08 13:49:30 -08:00
}
type Msg =
2018-12-08 15:06:14 -08:00
ChangeApiUrl ApiUrl -- During login screen: the API URL (homeserver)
| ChangeLoginUsername Username -- During login screen: the username
| ChangeLoginPassword Password -- During login screen: the password
| AttemptLogin -- During login screen, login button presed
| TryUrl Browser.UrlRequest -- User attempts to change URL
2018-12-13 14:06:15 -08:00
| OpenRoom String -- We try open a room
2018-12-08 19:09:20 -08:00
| ChangeRoute Route -- URL changes
2018-12-09 23:38:43 -08:00
| ChangeRoomText String String -- Change to a room's input text
| SendRoomText String -- Sends a message typed into a given room's input
| SendRoomTextResponse (Result Http.Error ()) -- A send message response finished
| ViewportAfterMessage (Result Browser.Dom.Error Viewport) -- A message has been received, try scroll (maybe)
| ViewportChangeComplete (Result Browser.Dom.Error ()) -- We're done changing the viewport.
| ReceiveFirstSyncResponse (Result Http.Error SyncResponse) -- HTTP, Sync has finished
2018-12-08 15:06:14 -08:00
| ReceiveSyncResponse (Result Http.Error SyncResponse) -- HTTP, Sync has finished
| ReceiveLoginResponse ApiUrl (Result Http.Error LoginResponse) -- HTTP, Login has finished
2018-12-17 19:56:50 -08:00
| ReceiveUserData Username (Result Http.Error UserData) -- HTTP, receive user data
| ReceiveCompletedReadMarker (Result Http.Error ()) -- HTTP, read marker request completed
| ReceiveCompletedTypingIndicator (Result Http.Error ()) -- HTTP, typing indicator request completed
2018-12-17 19:56:50 -08:00
| ReceiveStoreData Json.Decode.Value -- We are send back a value on request from localStorage.
| TypingTick Posix -- Tick for updating the typing status
2018-12-19 21:52:07 -08:00
| History RoomId -- Load history for a room
| ReceiveHistoryResponse RoomId (Result Http.Error HistoryResponse) -- HTTP, receive history
2018-12-08 13:49:30 -08:00
2018-12-13 13:42:23 -08:00
displayName : Model -> Username -> String
displayName m s = Maybe.withDefault (senderName s) <| Maybe.andThen .displayName <| Dict.get s m.userData
2018-12-13 14:06:15 -08:00
roomUrl : String -> String
roomUrl s = Url.Builder.absolute [ "room", s ] []
loginUrl : String
loginUrl = Url.Builder.absolute [ "login" ] []
2018-12-20 16:39:10 -08:00
newUsers : Model -> List Username -> List Username
newUsers m lus = List.filter (\u -> not <| Dict.member u m.userData) lus
currentRoom : Model -> Maybe JoinedRoom
currentRoom m =
let
roomDict = Maybe.withDefault Dict.empty <| Maybe.andThen .join <| m.sync.rooms
in
Maybe.andThen (\s -> Dict.get s roomDict) <| currentRoomId m
currentRoomId : Model -> Maybe RoomId
currentRoomId m = case m.route of
Room r -> Just r
_ -> Nothing