aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/apps/connectApp/src/handlers/connectionStatusLogHandler.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'sdnr/wt/odlux/apps/connectApp/src/handlers/connectionStatusLogHandler.tsx')
-rw-r--r--sdnr/wt/odlux/apps/connectApp/src/handlers/connectionStatusLogHandler.tsx14
1 files changed, 9 insertions, 5 deletions
diff --git a/sdnr/wt/odlux/apps/connectApp/src/handlers/connectionStatusLogHandler.tsx b/sdnr/wt/odlux/apps/connectApp/src/handlers/connectionStatusLogHandler.tsx
index 140020eaa..a3b1f1a2f 100644
--- a/sdnr/wt/odlux/apps/connectApp/src/handlers/connectionStatusLogHandler.tsx
+++ b/sdnr/wt/odlux/apps/connectApp/src/handlers/connectionStatusLogHandler.tsx
@@ -12,10 +12,14 @@ const connectionStatusLogSearchHandler = createSearchDataHandler<{ event: Connec
objectId: event._source.event.objectId,
type: event._source.event.type,
elementStatus: event._source.event.type === 'ObjectCreationNotificationXml'
- ? 'connected'
+ ? 'mounted'
: event._source.event.type === 'ObjectDeletionNotificationXml'
- ? 'disconnected'
- : 'unknown'
+ ? 'unmounted'
+ : event._source.event.type === 'AttributeValueChangedNotificationXml'
+ ? event._source.event.newValue
+ : 'unknown',
+ newValue: ''
+
}),
(name) => `event.${ name }`);
@@ -25,6 +29,6 @@ export const {
createProperties: createConnectionStatusLogProperties,
reloadAction: connectionStatusLogReloadAction,
- // set value action, to change a value
-} = createExternal<ConnectionStatusLogType>(connectionStatusLogSearchHandler, appState => appState.connectApp.connectionStatusLog);
+ // set value action, to change a value
+} = createExternal<ConnectionStatusLogType>(connectionStatusLogSearchHandler, appState => appState.connect.connectionStatusLog);