Merge branch '18195-Refresh-Button-does-not-seem-to-refresh-the-sidebar-tree' into...
[arvados-workbench2.git] / src / store / process-logs-panel / process-logs-panel.ts
index 9575c4e5d07c35aa88f4bb610c2f56180b1c7697..deaaab6a85515b5e4464f361c958ab5894ec06b1 100644 (file)
@@ -1,4 +1,5 @@
-import { LogEventType } from '../../models/log';
+import { RootState } from '../store';
+import { matchProcessLogRoute } from 'routes/routes';
 // Copyright (C) The Arvados Authors. All rights reserved.
 //
 // SPDX-License-Identifier: AGPL-3.0
@@ -13,6 +14,12 @@ export interface ProcessLogs {
     [logType: string]: string[];
 }
 
-export const getProcessLogs = ({ selectedFilter, logs }: ProcessLogsPanel) => {
+export const getProcessPanelLogs = ({ selectedFilter, logs }: ProcessLogsPanel) => {
     return logs[selectedFilter];
 };
+
+export const getProcessLogsPanelCurrentUuid = ({ router }: RootState) => {
+    const pathname = router.location ? router.location.pathname : '';
+    const match = matchProcessLogRoute(pathname);
+    return match ? match.params.id : undefined;
+};