UI
The UI API lets you interact with the Qatium UI.
sendMessage()
Allows the plugin to communicate with its UI panel.
Method signature
sendMessage<T>(message: T): void
send_message(message: Any)
Parameters
message: T
: an arbitrary message to be sent to the UI. Check the documentation of structuredClone to verify what can be sent.
Example
Send a message to the UI panel
const numOfValves = sdk.network.getValves().lengthsdk.ui.sendMessage(numOfValves)
num_of_valves = len(sdk.network.get_valves())sdk.ui.send_message(num_of_valves)
isMapView()
Returns true
if map view mode is active, or false
if it isn’t.
Method signature
isMapView(): boolean
is_map_view() -> bool
isSynopticView()
Returns true
if synoptic view mode is active, or false
if it isn’t.
Method signature
isSynopticView(): boolean
is_synoptic_view() -> bool
isPanelOpen()
Returns true
is the plugin’s panel is open, or false
if it isn’t.
Method signature
isPanelOpen(): boolean
is_panel_open() -> bool
openPanel()
Opens the plugin’s panel.
Method signature
openPanel()
open_panel()
closePanel()
Closes the plugin’s panel.
Method signature
closePanel()
close_panel()
isPluginVisible()
Returns true
if the plugin’s overlay is visible, or false
if it isn’t.
Method signature
isPluginVisible(): boolean
is_plugin_visible() -> bool
isMapLayerVisible()
Returns true
if the layer for the AssetType
is visible in the map.
Method signature
isMapLayerVisible: ( type: AssetType, layer?: ValveGroup | JunctionGroup | PipeGroup): boolean
is_map_layer_visible( type: Literal['Pipe', 'Junction', 'Valve', 'Pump', 'SupplySource', 'Tank'], layer: Optional[Literal['regulating', 'shutOff', 'hydrant', 'junction', 'supplySource', 'main', 'lateral']]) -> bool
getLanguage()
Returns a string representing the ISO 639 language code of the user’s preferred language in the browser. Currently supports Spanish and English.
Method signature
getLanguage(): "es" | "en"
get_language() -> Literal['es', 'en']