Add progress indicator for services
[arvados-workbench2.git] / src / store / progress-indicator / with-progress.ts
index b91c05df25a582b2d2422724f508115fee68dfd3..976f7575a65ba890a84d764861fc94042fe387b8 100644 (file)
@@ -1,20 +1,20 @@
-// Copyright (C) The Arvados Authors. All rights reserved.
+// // Copyright (C) The Arvados Authors. All rights reserved.
+// //
+// // SPDX-License-Identifier: AGPL-3.0
 //
-// SPDX-License-Identifier: AGPL-3.0
-
-import * as React from 'react';
-import { connect } from 'react-redux';
-import { RootState } from '~/store/store';
-
-export type WithProgressStateProps = {
-    started: boolean;
-};
-
-export const withProgress = (id: string) =>
-    (component: React.ComponentType<WithProgressStateProps>) =>
-        connect(mapStateToProps(id))(component);
-
-export const mapStateToProps = (id: string) => (state: RootState): WithProgressStateProps => {
-    const progress = state.progressIndicator[id];
-    return progress;
-};
\ No newline at end of file
+// import * as React from 'react';
+// import { connect } from 'react-redux';
+// import { RootState } from '~/store/store';
+//
+// export type WithProgressStateProps = {
+//     started: boolean;
+// };
+//
+// export const withProgress = (id: string) =>
+//     (component: React.ComponentType<WithProgressStateProps>) =>
+//         connect(mapStateToProps(id))(component);
+//
+// export const mapStateToProps = (id: string) => (state: RootState): WithProgressStateProps => {
+//     const progress = state.progressIndicator[id];
+//     return progress;
+// };