mirror of
https://github.com/fluencelabs/dashboard
synced 2025-04-03 13:21:07 +00:00
list of actual modules with instance number
This commit is contained in:
parent
75b2a7b5fb
commit
b13fca0b4f
6
package-lock.json
generated
6
package-lock.json
generated
@ -5927,9 +5927,9 @@
|
|||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"fluence": {
|
"fluence": {
|
||||||
"version": "0.7.85",
|
"version": "0.7.86",
|
||||||
"resolved": "https://registry.npmjs.org/fluence/-/fluence-0.7.85.tgz",
|
"resolved": "https://registry.npmjs.org/fluence/-/fluence-0.7.86.tgz",
|
||||||
"integrity": "sha512-qN0mBYgF6Y09Z+qhxnfXyTqmgY++eyWYOUHsRtsmzdTWQuFhlgenLg3861tG9sGCaOUJTfSrrTcdYluC1bgrAw==",
|
"integrity": "sha512-h0RYWwSf56bxQpW+z3o0tHH7UCwYy3khhZGwkGyrP6rxD5YM55r/Xc+8n+OAgxVpBBcPxFUWuxblm+UH65cZvw==",
|
||||||
"requires": {
|
"requires": {
|
||||||
"@fluencelabs/aquamarine-stepper": "0.0.13",
|
"@fluencelabs/aquamarine-stepper": "0.0.13",
|
||||||
"async": "3.2.0",
|
"async": "3.2.0",
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
},
|
},
|
||||||
"homepage": "https://github.com/fluencelabs/fluence-admin#readme",
|
"homepage": "https://github.com/fluencelabs/fluence-admin#readme",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"fluence": "0.7.85",
|
"fluence": "0.7.86",
|
||||||
"tachyons": "^4.12.0"
|
"tachyons": "^4.12.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
@ -1,5 +0,0 @@
|
|||||||
module HubPage.Model exposing (..)
|
|
||||||
|
|
||||||
|
|
||||||
type alias Model =
|
|
||||||
{}
|
|
@ -1,9 +1,8 @@
|
|||||||
module HubPage.View exposing (..)
|
module HubPage.View exposing (..)
|
||||||
|
|
||||||
import Html exposing (Html)
|
import Html exposing (Html)
|
||||||
import HubPage.Model exposing (Model)
|
import Model exposing (Model)
|
||||||
import HubPage.Msg exposing (Msg)
|
import Modules.Model exposing (ModuleShortInfo, getModuleShortInfo)
|
||||||
import Modules.Model exposing (ModuleShortInfo)
|
|
||||||
import Modules.View
|
import Modules.View
|
||||||
import Services.Model exposing (ServiceInfo)
|
import Services.Model exposing (ServiceInfo)
|
||||||
import Services.View
|
import Services.View
|
||||||
@ -18,20 +17,9 @@ servicesExample =
|
|||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
modulesExample : List ModuleShortInfo
|
|
||||||
modulesExample =
|
|
||||||
[ { name = "sqlite3", instanceNumber = 2 }
|
|
||||||
, { name = "ipfs_adapter", instanceNumber = 3 }
|
|
||||||
, { name = "mariadb_adapter", instanceNumber = 5 }
|
|
||||||
, { name = "chat_history", instanceNumber = 1 }
|
|
||||||
, { name = "user_list", instanceNumber = 1 }
|
|
||||||
, { name = "basic_auth", instanceNumber = 0 }
|
|
||||||
]
|
|
||||||
|
|
||||||
|
|
||||||
view : Model -> Html msg
|
view : Model -> Html msg
|
||||||
view model =
|
view model =
|
||||||
Html.div []
|
Html.div []
|
||||||
[ Services.View.view { services = servicesExample }
|
[ Services.View.view { services = servicesExample }
|
||||||
, Modules.View.view { modules = modulesExample }
|
, Modules.View.view (getModuleShortInfo model)
|
||||||
]
|
]
|
||||||
|
@ -1,12 +1,26 @@
|
|||||||
module Modules.Model exposing (..)
|
module Modules.Model exposing (..)
|
||||||
|
|
||||||
|
|
||||||
|
import Dict exposing (Dict)
|
||||||
|
import Model exposing (Model, PeerData)
|
||||||
type alias ModuleShortInfo =
|
type alias ModuleShortInfo =
|
||||||
{ name : String
|
{ name : String
|
||||||
, instanceNumber : Int
|
, instanceNumber : Int
|
||||||
}
|
}
|
||||||
|
|
||||||
|
getModuleShortInfo : Model -> List ModuleShortInfo
|
||||||
|
getModuleShortInfo model =
|
||||||
|
getAllModules model.discoveredPeers |> Dict.toList |> List.map (\(moduleName, peers) -> {name = moduleName, instanceNumber = List.length peers})
|
||||||
|
|
||||||
type alias Model =
|
getAllModules : Dict String PeerData -> Dict String (List String)
|
||||||
{ modules : List ModuleShortInfo
|
getAllModules peerData =
|
||||||
}
|
let
|
||||||
|
peerDatas = Dict.toList peerData
|
||||||
|
allModules = peerDatas |> List.map (\(peer, pd) -> pd.modules |> List.map (\ms -> (peer, ms))) |> List.concat
|
||||||
|
peersByModuleName = allModules |> List.foldr updateDict Dict.empty
|
||||||
|
in
|
||||||
|
peersByModuleName
|
||||||
|
|
||||||
|
updateDict : (String, String) -> Dict String (List String) -> Dict String (List String)
|
||||||
|
updateDict (peer, moduleName) dict =
|
||||||
|
dict |> Dict.update moduleName (\oldM -> oldM |> Maybe.map (List.append [peer]) |> Maybe.withDefault [peer] |> Just)
|
||||||
|
@ -1,16 +1,16 @@
|
|||||||
module Modules.View exposing (..)
|
module Modules.View exposing (..)
|
||||||
|
|
||||||
import Html exposing (Html)
|
import Html exposing (Html)
|
||||||
import Modules.Model exposing (Model, ModuleShortInfo)
|
import Modules.Model exposing (ModuleShortInfo)
|
||||||
import Palette exposing (classes)
|
import Palette exposing (classes)
|
||||||
import Utils.Utils exposing (instancesText)
|
import Utils.Utils exposing (instancesText)
|
||||||
|
|
||||||
|
|
||||||
view : Model -> Html msg
|
view : List ModuleShortInfo -> Html msg
|
||||||
view model =
|
view modules =
|
||||||
let
|
let
|
||||||
modulesView =
|
modulesView =
|
||||||
List.map viewService model.modules
|
List.map viewService modules
|
||||||
in
|
in
|
||||||
Html.div [ classes "cf ph2-ns" ] modulesView
|
Html.div [ classes "cf ph2-ns" ] modulesView
|
||||||
|
|
||||||
|
@ -29,9 +29,9 @@ routeView model route =
|
|||||||
Page page ->
|
Page page ->
|
||||||
case page of
|
case page of
|
||||||
"" ->
|
"" ->
|
||||||
HubPage.view {}
|
HubPage.view model
|
||||||
"hub" ->
|
"hub" ->
|
||||||
HubPage.view {}
|
HubPage.view model
|
||||||
|
|
||||||
"module" ->
|
"module" ->
|
||||||
let
|
let
|
||||||
|
@ -20,7 +20,7 @@ import AirScripts.GetAll
|
|||||||
import Blueprints.Model exposing (Blueprint)
|
import Blueprints.Model exposing (Blueprint)
|
||||||
import Browser
|
import Browser
|
||||||
import Browser.Navigation as Nav
|
import Browser.Navigation as Nav
|
||||||
import Dict
|
import Dict exposing (Dict)
|
||||||
import Json.Decode exposing (decodeValue, list, string)
|
import Json.Decode exposing (decodeValue, list, string)
|
||||||
import Json.Encode exposing (Value)
|
import Json.Encode exposing (Value)
|
||||||
import List.Unique exposing (filterDuplicates)
|
import List.Unique exposing (filterDuplicates)
|
||||||
@ -123,8 +123,12 @@ update msg model =
|
|||||||
"all_info" ->
|
"all_info" ->
|
||||||
let
|
let
|
||||||
updated = Maybe.map4 (updateModel model peer) identify services modules blueprints
|
updated = Maybe.map4 (updateModel model peer) identify services modules blueprints
|
||||||
|
updatedModel = withDefault model updated
|
||||||
|
|
||||||
|
byBp = peersByBlueprintId model.discoveredPeers "623c6d14-2204-43c4-84d5-a237bcd19874"
|
||||||
|
_ = Debug.log "by blueprint id" byBp
|
||||||
in
|
in
|
||||||
( withDefault model updated, Cmd.none )
|
( updatedModel, Cmd.none )
|
||||||
|
|
||||||
"modules_discovered" ->
|
"modules_discovered" ->
|
||||||
let
|
let
|
||||||
@ -171,21 +175,36 @@ updateModel model peer identify services modules blueprints =
|
|||||||
in
|
in
|
||||||
{ model | discoveredPeers = updated }
|
{ model | discoveredPeers = updated }
|
||||||
|
|
||||||
getAllModules : Model -> List String
|
getServicesByBlueprintId : Dict String PeerData -> String -> List (String, Service)
|
||||||
getAllModules model =
|
getServicesByBlueprintId peerData bpId =
|
||||||
let
|
let
|
||||||
peerDatas = Dict.values model.discoveredPeers
|
list = Dict.toList peerData
|
||||||
allModules = peerDatas |> List.map (\pd -> pd.modules)
|
found = list |> List.map (\(peer, pd) -> (peer, (filterServicesByBlueprintId bpId pd)))
|
||||||
flatten = List.foldr (++) [] (allModules)
|
filtered = found |> List.filter (\(peer, services) -> not (List.isEmpty services)) |> List.map (\(peer, services) -> services |> List.map (\s -> (peer, s)))
|
||||||
modulesUnique = filterDuplicates (flatten)
|
in
|
||||||
in
|
List.concat filtered
|
||||||
modulesUnique
|
|
||||||
|
|
||||||
peersByBlueprintId : Model -> String -> List String
|
filterServicesByBlueprintId : String -> PeerData -> List Service
|
||||||
peersByBlueprintId model blueprintId =
|
filterServicesByBlueprintId blueprintId peerData =
|
||||||
|
peerData.services |> List.filter (\s -> s.blueprint_id == blueprintId)
|
||||||
|
|
||||||
|
peersByModule : Dict String PeerData -> String -> List String
|
||||||
|
peersByModule peerData moduleId =
|
||||||
let
|
let
|
||||||
list = Dict.toList model.discoveredPeers
|
list = Dict.toList peerData
|
||||||
found = list |> List.filter (\(peer, pd) -> existsByBlueprintId blueprintId pd.blueprints) |> List.map (\(peer, _) -> peer)
|
found = list |> List.filter (\(_, pd) -> existsByModule moduleId pd.modules) |> List.map (\(peer, _) -> peer)
|
||||||
|
in
|
||||||
|
found
|
||||||
|
|
||||||
|
existsByModule : String -> List String -> Bool
|
||||||
|
existsByModule moduleId modules =
|
||||||
|
modules |> List.any (\m -> m == moduleId)
|
||||||
|
|
||||||
|
peersByBlueprintId : Dict String PeerData -> String -> List String
|
||||||
|
peersByBlueprintId peerData blueprintId =
|
||||||
|
let
|
||||||
|
list = Dict.toList peerData
|
||||||
|
found = list |> List.filter (\(_, pd) -> existsByBlueprintId blueprintId pd.blueprints) |> List.map (\(peer, _) -> peer)
|
||||||
in
|
in
|
||||||
found
|
found
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user