mirror of
https://github.com/fluencelabs/dashboard
synced 2025-06-02 01:21:27 +00:00
35 lines
884 B
Elm
35 lines
884 B
Elm
port module Port exposing (..)
|
|
|
|
import Air exposing (Air(..))
|
|
import Blueprints.Model exposing (Blueprint)
|
|
import Dict exposing (Dict)
|
|
import Json.Encode exposing (Value)
|
|
import Nodes.Model exposing (Identify)
|
|
import Services.Model exposing (Service)
|
|
|
|
|
|
type alias SendParticle =
|
|
{ script : String, data : Value }
|
|
|
|
|
|
type alias ReceiveEvent =
|
|
{ name : String, peer : String, peers : Maybe (List String), identify : Maybe Identify, services : Maybe (List Service), modules : Maybe (List String), blueprints : Maybe (List Blueprint) }
|
|
|
|
|
|
port sendParticle : SendParticle -> Cmd msg
|
|
|
|
|
|
port eventReceiver : (ReceiveEvent -> msg) -> Sub msg
|
|
|
|
|
|
port relayChanged : (String -> msg) -> Sub msg
|
|
|
|
|
|
sendAir : Air -> Cmd msg
|
|
sendAir (Air dataDict script) =
|
|
let
|
|
data =
|
|
Json.Encode.object <| Dict.toList dataDict
|
|
in
|
|
sendParticle { script = script, data = data }
|