ydb-embedded-ui 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +8 -0
- package/README.md +28 -0
- package/dist/HOCS/WithSearch/WithSearch.js +26 -0
- package/dist/HOCS/index.js +1 -0
- package/dist/assets/icons/bug.svg +1 -0
- package/dist/assets/icons/close.svg +1 -0
- package/dist/assets/icons/control-menu-button.svg +1 -0
- package/dist/assets/icons/databases.svg +3 -0
- package/dist/assets/icons/dots.svg +1 -0
- package/dist/assets/icons/server.svg +1 -0
- package/dist/assets/icons/settings-with-dot.svg +1 -0
- package/dist/assets/icons/settings.svg +1 -0
- package/dist/assets/icons/signIn.svg +1 -0
- package/dist/assets/icons/signOut.svg +1 -0
- package/dist/assets/icons/star.svg +1 -0
- package/dist/assets/icons/storage.svg +1 -0
- package/dist/assets/icons/support.svg +1 -0
- package/dist/assets/icons/user-check.svg +1 -0
- package/dist/assets/icons/user-secret.svg +1 -0
- package/dist/assets/icons/ydb.svg +4 -0
- package/dist/components/AsideNavigation/AsideHeader.scss +148 -0
- package/dist/components/AsideNavigation/AsideHeader.tsx +388 -0
- package/dist/components/AsideNavigation/AsideHeaderFooterItem/AsideHeaderFooterItem.scss +82 -0
- package/dist/components/AsideNavigation/AsideHeaderFooterItem/AsideHeaderFooterItem.tsx +138 -0
- package/dist/components/AsideNavigation/AsideHeaderFooterSlot/AsideHeaderFooterSlot.tsx +33 -0
- package/dist/components/AsideNavigation/AsideHeaderFooterSlot/SlotsContext.tsx +49 -0
- package/dist/components/AsideNavigation/AsideHeaderTooltip/AsideHeaderTooltip.scss +16 -0
- package/dist/components/AsideNavigation/AsideHeaderTooltip/AsideHeaderTooltip.tsx +37 -0
- package/dist/components/AsideNavigation/CompositeBar/CompositeBar.scss +108 -0
- package/dist/components/AsideNavigation/CompositeBar/CompositeBar.tsx +282 -0
- package/dist/components/AsideNavigation/Content/Content.tsx +35 -0
- package/dist/components/AsideNavigation/Drawer/Drawer.scss +76 -0
- package/dist/components/AsideNavigation/Drawer/Drawer.tsx +134 -0
- package/dist/components/AsideNavigation/Drawer/index.ts +1 -0
- package/dist/components/AsideNavigation/Logo/Logo.scss +44 -0
- package/dist/components/AsideNavigation/Logo/Logo.tsx +82 -0
- package/dist/components/AsideNavigation/Settings/README.md +92 -0
- package/dist/components/AsideNavigation/Settings/Settings.scss +113 -0
- package/dist/components/AsideNavigation/Settings/Settings.tsx +270 -0
- package/dist/components/AsideNavigation/Settings/SettingsMenu/SettingsMenu.scss +70 -0
- package/dist/components/AsideNavigation/Settings/SettingsMenu/SettingsMenu.tsx +141 -0
- package/dist/components/AsideNavigation/Settings/SettingsSearch/SettingsSearch.tsx +57 -0
- package/dist/components/AsideNavigation/Settings/collect-settings.ts +156 -0
- package/dist/components/AsideNavigation/Settings/filter-settings.ts +38 -0
- package/dist/components/AsideNavigation/Settings/helpers.ts +39 -0
- package/dist/components/AsideNavigation/Settings/i18n/en.json +5 -0
- package/dist/components/AsideNavigation/Settings/i18n/index.ts +11 -0
- package/dist/components/AsideNavigation/Settings/i18n/ru.json +5 -0
- package/dist/components/AsideNavigation/Settings/index.ts +1 -0
- package/dist/components/AsideNavigation/constants.ts +28 -0
- package/dist/components/AsideNavigation/helpers.ts +34 -0
- package/dist/components/AsideNavigation/i18n/en.json +4 -0
- package/dist/components/AsideNavigation/i18n/index.ts +11 -0
- package/dist/components/AsideNavigation/i18n/ru.json +4 -0
- package/dist/components/AsideNavigation/icons.ts +32 -0
- package/dist/components/AsideNavigation/types.ts +23 -0
- package/dist/components/Breadcrumbs/Breadcrumbs.js +25 -0
- package/dist/components/Breadcrumbs/Breadcrumbs.scss +4 -0
- package/dist/components/ClusterInfo/ClusterInfo.scss +65 -0
- package/dist/components/ClusterInfo/ClusterInfo.tsx +157 -0
- package/dist/components/Collapse/Collapse.js +84 -0
- package/dist/components/Collapse/Collapse.scss +70 -0
- package/dist/components/CriticalActionDialog/CriticalActionDialog.js +53 -0
- package/dist/components/CriticalActionDialog/CriticalActionDialog.scss +31 -0
- package/dist/components/EmptyState/EmptyState.js +48 -0
- package/dist/components/EmptyState/EmptyState.scss +70 -0
- package/dist/components/EntityStatus/EntityStatus.js +96 -0
- package/dist/components/EntityStatus/EntityStatus.scss +81 -0
- package/dist/components/FullGroupViewer/FullGroupViewer.js +149 -0
- package/dist/components/FullGroupViewer/FullGroupViewer.scss +32 -0
- package/dist/components/FullNodeViewer/FullNodeViewer.js +108 -0
- package/dist/components/FullNodeViewer/FullNodeViewer.scss +78 -0
- package/dist/components/GroupTreeViewer/GroupTreeViewer.js +86 -0
- package/dist/components/GroupTreeViewer/GroupTreeViewer.scss +17 -0
- package/dist/components/GroupViewer/GroupViewer.js +100 -0
- package/dist/components/GroupViewer/GroupViewer.scss +41 -0
- package/dist/components/Hotkey/Hotkey.js +102 -0
- package/dist/components/Icon/Icon.js +26 -0
- package/dist/components/InfoViewer/InfoViewer.js +47 -0
- package/dist/components/InfoViewer/InfoViewer.scss +48 -0
- package/dist/components/InternalLink/InternalLink.js +15 -0
- package/dist/components/NodesViewer/NodesViewer.js +183 -0
- package/dist/components/NodesViewer/NodesViewer.scss +66 -0
- package/dist/components/PDiskViewer/PDiskViewer.js +80 -0
- package/dist/components/PDiskViewer/PDiskViewer.scss +40 -0
- package/dist/components/Pagination/Pagination.js +63 -0
- package/dist/components/Pagination/Pagination.scss +25 -0
- package/dist/components/PoolBar/PoolBar.js +52 -0
- package/dist/components/PoolBar/PoolBar.scss +40 -0
- package/dist/components/PoolUsage/PoolUsage.js +54 -0
- package/dist/components/PoolUsage/PoolUsage.scss +65 -0
- package/dist/components/PoolsGraph/PoolsGraph.js +33 -0
- package/dist/components/PoolsGraph/PoolsGraph.scss +3 -0
- package/dist/components/ProblemFilter/ProblemFilter.js +24 -0
- package/dist/components/ProgressViewer/ProgressViewer.js +92 -0
- package/dist/components/ProgressViewer/ProgressViewer.scss +84 -0
- package/dist/components/SplitPane/SplitPane.js +368 -0
- package/dist/components/SplitPane/SplitPane.scss +107 -0
- package/dist/components/SplitPane/index.js +3 -0
- package/dist/components/Tablet/Tablet.js +61 -0
- package/dist/components/Tablet/Tablet.scss +49 -0
- package/dist/components/TabletsStatistic/TabletsStatistic.js +58 -0
- package/dist/components/TabletsStatistic/TabletsStatistic.scss +41 -0
- package/dist/components/TabletsViewer/TabletsViewer.js +44 -0
- package/dist/components/TabletsViewer/TabletsViewer.scss +37 -0
- package/dist/components/Tag/Tag.js +14 -0
- package/dist/components/Tag/Tag.scss +17 -0
- package/dist/components/Tags/Tags.js +36 -0
- package/dist/components/Tags/Tags.scss +5 -0
- package/dist/components/TenantOverview/TenantOverview.js +148 -0
- package/dist/components/TenantOverview/TenantOverview.scss +75 -0
- package/dist/components/TreeView/TreeView.js +60 -0
- package/dist/components/TreeView/TreeView.scss +30 -0
- package/dist/components/TruncatedQuery/TruncatedQuery.js +26 -0
- package/dist/components/TruncatedQuery/TruncatedQuery.scss +12 -0
- package/dist/containers/App/App.js +67 -0
- package/dist/containers/App/App.scss +154 -0
- package/dist/containers/App/Content.js +109 -0
- package/dist/containers/App/TipPopup/TipPopup.js +66 -0
- package/dist/containers/App/TipPopup/TipPopup.scss +42 -0
- package/dist/containers/AppIcons/AppIcons.js +477 -0
- package/dist/containers/AsideNavigation/AsideNavigation.scss +43 -0
- package/dist/containers/AsideNavigation/AsideNavigation.tsx +228 -0
- package/dist/containers/Authentication/Authentication.scss +37 -0
- package/dist/containers/Authentication/Authentication.tsx +89 -0
- package/dist/containers/Cluster/Cluster.js +168 -0
- package/dist/containers/Cluster/Cluster.scss +52 -0
- package/dist/containers/Group/Group.js +97 -0
- package/dist/containers/Group/Group.scss +6 -0
- package/dist/containers/Header/Header.js +88 -0
- package/dist/containers/Header/Header.scss +72 -0
- package/dist/containers/Header/Host/Host.js +66 -0
- package/dist/containers/Header/Host/Host.scss +43 -0
- package/dist/containers/Heatmap/Heatmap.js +246 -0
- package/dist/containers/Heatmap/Heatmap.scss +94 -0
- package/dist/containers/Heatmap/HeatmapCanvas/HeatmapCanvas.js +167 -0
- package/dist/containers/Heatmap/Histogram/Histogram.js +108 -0
- package/dist/containers/Heatmap/Histogram/Histogram.scss +49 -0
- package/dist/containers/Heatmap/util.js +110 -0
- package/dist/containers/Node/Node.js +184 -0
- package/dist/containers/Node/Node.scss +34 -0
- package/dist/containers/Node/NodePages.js +13 -0
- package/dist/containers/Nodes/Nodes.js +193 -0
- package/dist/containers/Nodes/Nodes.scss +50 -0
- package/dist/containers/Pdisk/Pdisk.js +159 -0
- package/dist/containers/Pdisk/Pdisk.scss +40 -0
- package/dist/containers/Pool/Pool.js +169 -0
- package/dist/containers/Pool/Pool.scss +32 -0
- package/dist/containers/ReduxTooltip/ReduxTooltip.js +108 -0
- package/dist/containers/ReduxTooltip/ReduxTooltip.scss +67 -0
- package/dist/containers/StorageV2/DiskStateProgressBar/DiskStateProgressBar.scss +81 -0
- package/dist/containers/StorageV2/DiskStateProgressBar/DiskStateProgressBar.tsx +56 -0
- package/dist/containers/StorageV2/Pdisk/Pdisk.scss +32 -0
- package/dist/containers/StorageV2/Pdisk/Pdisk.tsx +167 -0
- package/dist/containers/StorageV2/Storage.js +249 -0
- package/dist/containers/StorageV2/Storage.scss +57 -0
- package/dist/containers/StorageV2/StorageFilter/StorageFilter.js +39 -0
- package/dist/containers/StorageV2/StorageGroups/StorageGroups.scss +26 -0
- package/dist/containers/StorageV2/StorageGroups/StorageGroups.tsx +234 -0
- package/dist/containers/StorageV2/StorageNodes/StorageNodes.scss +30 -0
- package/dist/containers/StorageV2/StorageNodes/StorageNodes.tsx +135 -0
- package/dist/containers/StorageV2/Vdisk/Vdisk.js +250 -0
- package/dist/containers/StorageV2/Vdisk/Vdisk.scss +32 -0
- package/dist/containers/Tablet/Tablet.js +453 -0
- package/dist/containers/Tablet/Tablet.scss +88 -0
- package/dist/containers/Tablets/Tablets.js +306 -0
- package/dist/containers/Tablets/Tablets.scss +77 -0
- package/dist/containers/TabletsFilters/TabletsFilters.js +412 -0
- package/dist/containers/TabletsFilters/TabletsFilters.scss +104 -0
- package/dist/containers/Tenant/Acl/Acl.js +149 -0
- package/dist/containers/Tenant/Acl/Acl.scss +34 -0
- package/dist/containers/Tenant/Compute/Compute.js +110 -0
- package/dist/containers/Tenant/Compute/Compute.scss +6 -0
- package/dist/containers/Tenant/Describe/Describe.js +81 -0
- package/dist/containers/Tenant/Describe/Describe.scss +25 -0
- package/dist/containers/Tenant/Healthcheck/Healthcheck.js +116 -0
- package/dist/containers/Tenant/Healthcheck/Healthcheck.scss +64 -0
- package/dist/containers/Tenant/Healthcheck/IssuesViewer/IssueViewer.scss +164 -0
- package/dist/containers/Tenant/Healthcheck/IssuesViewer/IssuesViewer.js +185 -0
- package/dist/containers/Tenant/Network/Network.js +341 -0
- package/dist/containers/Tenant/Network/Network.scss +145 -0
- package/dist/containers/Tenant/Network/NodeNetwork/NodeNetwork.js +71 -0
- package/dist/containers/Tenant/Network/NodeNetwork/NodeNetwork.scss +52 -0
- package/dist/containers/Tenant/Preview/Preview.js +169 -0
- package/dist/containers/Tenant/Preview/Preview.scss +20 -0
- package/dist/containers/Tenant/QueryEditor/QueryEditor.js +649 -0
- package/dist/containers/Tenant/QueryEditor/QueryEditor.scss +71 -0
- package/dist/containers/Tenant/QueryEditor/QueryExplain/QueryExplain.js +168 -0
- package/dist/containers/Tenant/QueryEditor/QueryExplain/QueryExplain.scss +42 -0
- package/dist/containers/Tenant/QueryEditor/QueryResult/QueryResult.js +58 -0
- package/dist/containers/Tenant/QueryEditor/QueryResult/QueryResult.scss +24 -0
- package/dist/containers/Tenant/QueryEditor/SaveQuery/SaveQuery.js +171 -0
- package/dist/containers/Tenant/QueryEditor/SaveQuery/SaveQuery.scss +51 -0
- package/dist/containers/Tenant/QueryEditor/SavedQueries/SavedQueries.js +156 -0
- package/dist/containers/Tenant/QueryEditor/SavedQueries/SavedQueries.scss +82 -0
- package/dist/containers/Tenant/Schema/HotKeys/HotKeys.js +149 -0
- package/dist/containers/Tenant/Schema/HotKeys/HotKeys.scss +48 -0
- package/dist/containers/Tenant/Schema/Info/Info.js +84 -0
- package/dist/containers/Tenant/Schema/Info/Info.scss +3 -0
- package/dist/containers/Tenant/Schema/SchemaInfoViewer/SchemaInfoViewer.js +67 -0
- package/dist/containers/Tenant/Schema/SchemaInfoViewer/SchemaInfoViewer.scss +21 -0
- package/dist/containers/Tenant/Schema/SchemaMain/SchemaMain.js +439 -0
- package/dist/containers/Tenant/Schema/SchemaMain/SchemaMain.scss +90 -0
- package/dist/containers/Tenant/Schema/SchemaNode/SchemaNode.js +150 -0
- package/dist/containers/Tenant/Schema/SchemaNode/SchemaNode.scss +41 -0
- package/dist/containers/Tenant/Schema/SchemaPages.js +56 -0
- package/dist/containers/Tenant/Schema/SchemaTree/SchemaTree.js +115 -0
- package/dist/containers/Tenant/Schema/SchemaTree/SchemaTree.scss +13 -0
- package/dist/containers/Tenant/Schema/SchemaViewer/SchemaViewer.js +63 -0
- package/dist/containers/Tenant/Schema/SchemaViewer/SchemaViewer.scss +28 -0
- package/dist/containers/Tenant/Tenant.js +199 -0
- package/dist/containers/Tenant/Tenant.scss +94 -0
- package/dist/containers/Tenant/TenantPages.js +35 -0
- package/dist/containers/Tenant/TopQueries/TopQueries.js +184 -0
- package/dist/containers/Tenant/TopQueries/TopQueries.scss +53 -0
- package/dist/containers/Tenant/TopShards/TopShards.js +171 -0
- package/dist/containers/Tenant/TopShards/TopShards.scss +23 -0
- package/dist/containers/Tenants/Tenants.js +375 -0
- package/dist/containers/Tenants/Tenants.scss +73 -0
- package/dist/containers/UserSettings/UserSettings.tsx +57 -0
- package/dist/containers/Vdisk/Vdisk.js +160 -0
- package/dist/containers/Vdisk/Vdisk.scss +40 -0
- package/dist/containers/VdiskPdiskNode/VdiskPdiskNode.js +528 -0
- package/dist/containers/VdiskPdiskNode/VdiskPdiskNode.scss +60 -0
- package/dist/contexts/HistoryContext.ts +6 -0
- package/dist/index.css +11 -0
- package/dist/index.js +28 -0
- package/dist/index.test.js +5 -0
- package/dist/react-app-env.d.ts +1 -0
- package/dist/reportWebVitals.js +13 -0
- package/dist/routes.js +40 -0
- package/dist/services/api.js +224 -0
- package/dist/setupTests.js +5 -0
- package/dist/store/index.js +61 -0
- package/dist/store/reducers/authentication.js +77 -0
- package/dist/store/reducers/cluster.js +52 -0
- package/dist/store/reducers/clusterInfo.js +48 -0
- package/dist/store/reducers/clusterNodes.js +70 -0
- package/dist/store/reducers/describe.js +45 -0
- package/dist/store/reducers/executeQuery.js +158 -0
- package/dist/store/reducers/executeTopQueries.js +69 -0
- package/dist/store/reducers/explainQuery.js +174 -0
- package/dist/store/reducers/group.js +49 -0
- package/dist/store/reducers/healthcheckInfo.js +45 -0
- package/dist/store/reducers/heatmap.js +105 -0
- package/dist/store/reducers/host.js +44 -0
- package/dist/store/reducers/hotKeys.js +57 -0
- package/dist/store/reducers/index.js +78 -0
- package/dist/store/reducers/network.js +45 -0
- package/dist/store/reducers/node.js +42 -0
- package/dist/store/reducers/nodes.js +58 -0
- package/dist/store/reducers/olapStats.js +74 -0
- package/dist/store/reducers/pdisk.js +51 -0
- package/dist/store/reducers/pool.js +42 -0
- package/dist/store/reducers/preview.js +73 -0
- package/dist/store/reducers/schema.js +95 -0
- package/dist/store/reducers/schemaAcl.js +44 -0
- package/dist/store/reducers/settings.js +76 -0
- package/dist/store/reducers/shardsWorkload.js +75 -0
- package/dist/store/reducers/storage.js +280 -0
- package/dist/store/reducers/tablet.js +94 -0
- package/dist/store/reducers/tablets.js +90 -0
- package/dist/store/reducers/tabletsFilters.js +126 -0
- package/dist/store/reducers/tenant.js +76 -0
- package/dist/store/reducers/tenants.js +61 -0
- package/dist/store/reducers/tooltip.js +64 -0
- package/dist/store/reducers/vdisk.js +49 -0
- package/dist/store/state-url-mapping.js +133 -0
- package/dist/store/utils.js +55 -0
- package/dist/styles/mixins.scss +254 -0
- package/dist/styles/react-treeview.scss +45 -0
- package/dist/types/assets.d.ts +12 -0
- package/dist/types/react-list.d.ts +4 -0
- package/dist/types/window.d.ts +33 -0
- package/dist/utils/actionsConstants.js +4 -0
- package/dist/utils/constants.js +126 -0
- package/dist/utils/getNodesColumns.js +156 -0
- package/dist/utils/i18n/i18n.ts +7 -0
- package/dist/utils/i18n/index.ts +1 -0
- package/dist/utils/index.js +136 -0
- package/dist/utils/monaco.js +69 -0
- package/dist/utils/prepareQueryExplain.ts +101 -0
- package/dist/utils/tooltip.js +197 -0
- package/dist/utils/utils.js +75 -0
- package/package.json +89 -0
@@ -0,0 +1,110 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import cn from 'bem-cn-lite';
|
3
|
+
import PropTypes from 'prop-types';
|
4
|
+
import {connect} from 'react-redux';
|
5
|
+
import {withRouter} from 'react-router-dom';
|
6
|
+
import qs from 'qs';
|
7
|
+
|
8
|
+
import {Loader} from '@yandex-cloud/uikit';
|
9
|
+
|
10
|
+
import NodesViewer from '../../../components/NodesViewer/NodesViewer';
|
11
|
+
|
12
|
+
import {backend} from '../../../store';
|
13
|
+
import {hideTooltip, showTooltip} from '../../../store/reducers/tooltip';
|
14
|
+
import {getNodes, clearNodes} from '../../../store/reducers/nodes';
|
15
|
+
import {AUTO_RELOAD_INTERVAL} from '../../../utils/constants';
|
16
|
+
|
17
|
+
import './Compute.scss';
|
18
|
+
|
19
|
+
const b = cn('compute');
|
20
|
+
|
21
|
+
class Compute extends React.Component {
|
22
|
+
static propTypes = {
|
23
|
+
className: PropTypes.string,
|
24
|
+
clearNodes: PropTypes.func,
|
25
|
+
tenantName: PropTypes.string,
|
26
|
+
nodes: PropTypes.object,
|
27
|
+
loading: PropTypes.bool,
|
28
|
+
error: PropTypes.object,
|
29
|
+
wasLoaded: PropTypes.bool,
|
30
|
+
getNodes: PropTypes.func,
|
31
|
+
hideTooltip: PropTypes.func,
|
32
|
+
showTooltip: PropTypes.func,
|
33
|
+
timeoutForRequest: PropTypes.number,
|
34
|
+
};
|
35
|
+
|
36
|
+
componentDidMount() {
|
37
|
+
const {getNodes, tenantName} = this.props;
|
38
|
+
|
39
|
+
if (tenantName) {
|
40
|
+
getNodes(tenantName);
|
41
|
+
this.reloadDescriptor = setInterval(() => getNodes(tenantName), AUTO_RELOAD_INTERVAL);
|
42
|
+
}
|
43
|
+
}
|
44
|
+
|
45
|
+
componentWillUnmount() {
|
46
|
+
this.props.clearNodes();
|
47
|
+
clearInterval(this.reloadDescriptor);
|
48
|
+
}
|
49
|
+
|
50
|
+
renderLoader() {
|
51
|
+
return (
|
52
|
+
<div className="loader">
|
53
|
+
<Loader size="l" />
|
54
|
+
</div>
|
55
|
+
);
|
56
|
+
}
|
57
|
+
|
58
|
+
render() {
|
59
|
+
const {nodes, loading, wasLoaded, error, tenantName} = this.props;
|
60
|
+
if (!tenantName) {
|
61
|
+
return <div className="error">no tenant name in the query string</div>;
|
62
|
+
} else if (loading && !wasLoaded) {
|
63
|
+
return this.renderLoader();
|
64
|
+
} else if (error) {
|
65
|
+
return <div>{error.statusText}</div>;
|
66
|
+
} else {
|
67
|
+
return (
|
68
|
+
<div className={b()}>
|
69
|
+
<NodesViewer
|
70
|
+
backend={backend}
|
71
|
+
nodes={nodes}
|
72
|
+
path={tenantName}
|
73
|
+
hideTooltip={this.props.hideTooltip}
|
74
|
+
showTooltip={this.props.showTooltip}
|
75
|
+
additionalNodesInfo={this.props.additionalNodesInfo}
|
76
|
+
/>
|
77
|
+
</div>
|
78
|
+
);
|
79
|
+
}
|
80
|
+
}
|
81
|
+
}
|
82
|
+
|
83
|
+
function mapStateToProps(state, ownProps) {
|
84
|
+
const {data, loading, wasLoaded, error, timeoutForRequest} = state.nodes;
|
85
|
+
const {search} = ownProps.location;
|
86
|
+
const queryParams = qs.parse(search, {
|
87
|
+
ignoreQueryPrefix: true,
|
88
|
+
});
|
89
|
+
const {name: tenantName} = queryParams;
|
90
|
+
const nodes = (data && data.Tenants && data.Tenants[0] && data.Tenants[0].Nodes) || {};
|
91
|
+
return {
|
92
|
+
nodes,
|
93
|
+
tenantName,
|
94
|
+
timeoutForRequest,
|
95
|
+
loading,
|
96
|
+
wasLoaded,
|
97
|
+
error,
|
98
|
+
};
|
99
|
+
}
|
100
|
+
|
101
|
+
const mapDispatchToProps = {
|
102
|
+
getNodes,
|
103
|
+
clearNodes,
|
104
|
+
hideTooltip,
|
105
|
+
showTooltip,
|
106
|
+
};
|
107
|
+
|
108
|
+
const ConnectedCompute = connect(mapStateToProps, mapDispatchToProps)(Compute);
|
109
|
+
|
110
|
+
export default withRouter(ConnectedCompute);
|
@@ -0,0 +1,81 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import PropTypes from 'prop-types';
|
3
|
+
import cn from 'bem-cn-lite';
|
4
|
+
import {connect} from 'react-redux';
|
5
|
+
import {Loader} from '@yandex-cloud/uikit';
|
6
|
+
import JSONTree from 'react-json-inspector';
|
7
|
+
|
8
|
+
import './Describe.scss';
|
9
|
+
import 'react-json-inspector/json-inspector.css';
|
10
|
+
|
11
|
+
const b = cn('kv-describe');
|
12
|
+
|
13
|
+
const expandMap = new Map();
|
14
|
+
|
15
|
+
class Describe extends React.Component {
|
16
|
+
static propTypes = {
|
17
|
+
error: PropTypes.string,
|
18
|
+
data: PropTypes.array,
|
19
|
+
loading: PropTypes.bool,
|
20
|
+
};
|
21
|
+
|
22
|
+
renderDescribeJson = () => {
|
23
|
+
const {data} = this.props;
|
24
|
+
|
25
|
+
return (
|
26
|
+
<JSONTree
|
27
|
+
data={data}
|
28
|
+
className={b('tree')}
|
29
|
+
onClick={({path}) => {
|
30
|
+
const newValue = !(expandMap.get(path) || false);
|
31
|
+
expandMap.set(path, newValue);
|
32
|
+
}}
|
33
|
+
searchOptions={{
|
34
|
+
debounceTime: 300,
|
35
|
+
}}
|
36
|
+
isExpanded={(keypath) => {
|
37
|
+
return expandMap.get(keypath) || false;
|
38
|
+
}}
|
39
|
+
/>
|
40
|
+
);
|
41
|
+
};
|
42
|
+
|
43
|
+
render() {
|
44
|
+
const {error, loading, data, wasLoaded} = this.props;
|
45
|
+
|
46
|
+
if (loading && !wasLoaded) {
|
47
|
+
return (
|
48
|
+
<div className={b('loader-container')}>
|
49
|
+
<Loader size="m" />
|
50
|
+
</div>
|
51
|
+
);
|
52
|
+
}
|
53
|
+
|
54
|
+
if (error) {
|
55
|
+
return <div className={b('message-container')}>{error.data || error}</div>;
|
56
|
+
}
|
57
|
+
|
58
|
+
if (!loading && !data) {
|
59
|
+
return <div className={b('message-container')}>Empty</div>;
|
60
|
+
}
|
61
|
+
|
62
|
+
return (
|
63
|
+
<div className={b()}>
|
64
|
+
<div className={b('result')}>{this.renderDescribeJson()}</div>
|
65
|
+
</div>
|
66
|
+
);
|
67
|
+
}
|
68
|
+
}
|
69
|
+
|
70
|
+
const mapStateToProps = (state) => {
|
71
|
+
const {loading, error, currentDescribe, wasLoaded} = state.describe;
|
72
|
+
|
73
|
+
return {
|
74
|
+
data: currentDescribe,
|
75
|
+
loading,
|
76
|
+
error,
|
77
|
+
wasLoaded,
|
78
|
+
};
|
79
|
+
};
|
80
|
+
|
81
|
+
export default connect(mapStateToProps)(Describe);
|
@@ -0,0 +1,25 @@
|
|
1
|
+
@import '../../../styles/mixins.scss';
|
2
|
+
|
3
|
+
.kv-describe {
|
4
|
+
&__message-container {
|
5
|
+
padding: 15px 0;
|
6
|
+
}
|
7
|
+
|
8
|
+
&__result {
|
9
|
+
padding: 10px 20px 20px 0;
|
10
|
+
display: flex;
|
11
|
+
flex: 0 0 auto;
|
12
|
+
overflow: auto;
|
13
|
+
}
|
14
|
+
|
15
|
+
&__loader-container {
|
16
|
+
display: flex;
|
17
|
+
justify-content: center;
|
18
|
+
align-items: center;
|
19
|
+
height: 100%;
|
20
|
+
}
|
21
|
+
|
22
|
+
&__tree {
|
23
|
+
@include json-tree-styles();
|
24
|
+
}
|
25
|
+
}
|
@@ -0,0 +1,116 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import PropTypes from 'prop-types';
|
3
|
+
import {connect} from 'react-redux';
|
4
|
+
import cn from 'bem-cn-lite';
|
5
|
+
|
6
|
+
import {Loader, Button} from '@yandex-cloud/uikit';
|
7
|
+
|
8
|
+
import IssuesViewer from './IssuesViewer/IssuesViewer';
|
9
|
+
|
10
|
+
import {getHealthcheckInfo} from '../../../store/reducers/healthcheckInfo';
|
11
|
+
|
12
|
+
import './Healthcheck.scss';
|
13
|
+
|
14
|
+
const b = cn('healthcheck');
|
15
|
+
|
16
|
+
class Healthcheck extends React.Component {
|
17
|
+
static propTypes = {
|
18
|
+
data: PropTypes.object,
|
19
|
+
loading: PropTypes.bool,
|
20
|
+
error: PropTypes.object,
|
21
|
+
getHealthcheckInfo: PropTypes.func,
|
22
|
+
tenant: PropTypes.string,
|
23
|
+
};
|
24
|
+
|
25
|
+
componentDidMount() {
|
26
|
+
this.fetchHealthcheck();
|
27
|
+
}
|
28
|
+
|
29
|
+
fetchHealthcheck = () => {
|
30
|
+
const {tenant} = this.props;
|
31
|
+
this.props.getHealthcheckInfo(tenant);
|
32
|
+
};
|
33
|
+
|
34
|
+
renderLoader() {
|
35
|
+
return (
|
36
|
+
<div className="loader">
|
37
|
+
<Loader size="l" />
|
38
|
+
</div>
|
39
|
+
);
|
40
|
+
}
|
41
|
+
|
42
|
+
renderOverviewStatus = () => {
|
43
|
+
const {data} = this.props;
|
44
|
+
const {self_check_result: selfCheckResult} = data;
|
45
|
+
const modifier = selfCheckResult.toLowerCase();
|
46
|
+
|
47
|
+
return (
|
48
|
+
<div className={b('self-check-status')}>
|
49
|
+
<h3 className={b('self-check-status-label')}>Self check status</h3>
|
50
|
+
<div className={b('self-check-status-indicator', {[modifier]: true})} />
|
51
|
+
{selfCheckResult}
|
52
|
+
<div className={b('self-check-update')}>
|
53
|
+
<Button size="s" onClick={this.fetchHealthcheck}>
|
54
|
+
Update
|
55
|
+
</Button>
|
56
|
+
</div>
|
57
|
+
</div>
|
58
|
+
);
|
59
|
+
};
|
60
|
+
|
61
|
+
renderHealthcheckIssues() {
|
62
|
+
const {data, showTooltip, hideTooltip} = this.props;
|
63
|
+
const {issue_log: issueLog} = data;
|
64
|
+
|
65
|
+
if (!issueLog) {
|
66
|
+
return null;
|
67
|
+
}
|
68
|
+
|
69
|
+
return (
|
70
|
+
<div className={b('issues')}>
|
71
|
+
<h3>Issues</h3>
|
72
|
+
<IssuesViewer
|
73
|
+
issues={issueLog}
|
74
|
+
showTooltip={showTooltip}
|
75
|
+
hideTooltip={hideTooltip}
|
76
|
+
/>
|
77
|
+
</div>
|
78
|
+
);
|
79
|
+
}
|
80
|
+
|
81
|
+
render() {
|
82
|
+
const {loading, error, data} = this.props;
|
83
|
+
|
84
|
+
if (loading) {
|
85
|
+
return this.renderLoader();
|
86
|
+
} else if (error) {
|
87
|
+
return <div>{error.statusText}</div>;
|
88
|
+
} else if (data && data['self_check_result']) {
|
89
|
+
return (
|
90
|
+
<div className={b()}>
|
91
|
+
{this.renderOverviewStatus()}
|
92
|
+
{this.renderHealthcheckIssues()}
|
93
|
+
</div>
|
94
|
+
);
|
95
|
+
} else {
|
96
|
+
return <div className="error">no healthcheck data</div>;
|
97
|
+
}
|
98
|
+
}
|
99
|
+
}
|
100
|
+
|
101
|
+
function mapStateToProps(state) {
|
102
|
+
const {data, loading, wasLoaded, error} = state.healthcheckInfo;
|
103
|
+
|
104
|
+
return {
|
105
|
+
data,
|
106
|
+
loading,
|
107
|
+
wasLoaded,
|
108
|
+
error,
|
109
|
+
};
|
110
|
+
}
|
111
|
+
|
112
|
+
const mapDispatchToProps = {
|
113
|
+
getHealthcheckInfo,
|
114
|
+
};
|
115
|
+
|
116
|
+
export default connect(mapStateToProps, mapDispatchToProps)(Healthcheck);
|
@@ -0,0 +1,64 @@
|
|
1
|
+
@import '../../../styles/mixins.scss';
|
2
|
+
|
3
|
+
.healthcheck {
|
4
|
+
padding: 25px 20px 20px 20px;
|
5
|
+
|
6
|
+
&__message-container {
|
7
|
+
padding: 15px 0;
|
8
|
+
}
|
9
|
+
|
10
|
+
&__loader-container {
|
11
|
+
display: flex;
|
12
|
+
justify-content: center;
|
13
|
+
align-items: center;
|
14
|
+
height: 100%;
|
15
|
+
}
|
16
|
+
|
17
|
+
&__self-check-status {
|
18
|
+
display: flex;
|
19
|
+
align-items: center;
|
20
|
+
margin-bottom: 20px;
|
21
|
+
}
|
22
|
+
|
23
|
+
&__self-check-status-label {
|
24
|
+
margin: 0 10px 0 0;
|
25
|
+
}
|
26
|
+
|
27
|
+
&__self-check-update {
|
28
|
+
margin-left: 20px;
|
29
|
+
}
|
30
|
+
|
31
|
+
&__self-check-status-indicator {
|
32
|
+
width: 16px;
|
33
|
+
height: 16px;
|
34
|
+
border-radius: 4px;
|
35
|
+
margin-right: 4px;
|
36
|
+
|
37
|
+
&_good,
|
38
|
+
&_green {
|
39
|
+
background-color: var(--yc-color-base-positive-heavy);
|
40
|
+
}
|
41
|
+
&_degraded,
|
42
|
+
&_yellow {
|
43
|
+
background-color: var(--yc-color-base-warning-heavy);
|
44
|
+
}
|
45
|
+
|
46
|
+
&_blue {
|
47
|
+
background-color: var(--yc-color-base-info-heavy);
|
48
|
+
}
|
49
|
+
|
50
|
+
&_emergency,
|
51
|
+
&_red {
|
52
|
+
background: var(--yc-color-base-danger-heavy);
|
53
|
+
}
|
54
|
+
&_unspecified,
|
55
|
+
&_gray,
|
56
|
+
&_grey {
|
57
|
+
background: var(--yc-color-text-complementary);
|
58
|
+
}
|
59
|
+
&_maintenance_required,
|
60
|
+
&_orange {
|
61
|
+
background: var(--yc-color-text-warning-heavy);
|
62
|
+
}
|
63
|
+
}
|
64
|
+
}
|
@@ -0,0 +1,164 @@
|
|
1
|
+
@import '../../../../styles/mixins.scss';
|
2
|
+
|
3
|
+
.issue {
|
4
|
+
display: flex;
|
5
|
+
align-items: center;
|
6
|
+
height: 40px;
|
7
|
+
cursor: pointer;
|
8
|
+
|
9
|
+
margin-left: 36px;
|
10
|
+
.km-tree-view__arrow-icon + & {
|
11
|
+
margin-left: 0;
|
12
|
+
}
|
13
|
+
|
14
|
+
&_active {
|
15
|
+
background: var(--yc-color-base-info);
|
16
|
+
border-radius: 4px;
|
17
|
+
}
|
18
|
+
|
19
|
+
&__wpapper {
|
20
|
+
& .km-tree-view__node-wrapper {
|
21
|
+
height: 40px;
|
22
|
+
|
23
|
+
& .km-tree-view__arrow-icon {
|
24
|
+
display: flex;
|
25
|
+
align-items: center;
|
26
|
+
margin: 0;
|
27
|
+
width: 36px;
|
28
|
+
height: 36px;
|
29
|
+
}
|
30
|
+
}
|
31
|
+
|
32
|
+
& .tree-view_item {
|
33
|
+
margin: 0;
|
34
|
+
}
|
35
|
+
}
|
36
|
+
|
37
|
+
&__field {
|
38
|
+
padding: 0 10px;
|
39
|
+
|
40
|
+
&_status {
|
41
|
+
display: flex;
|
42
|
+
white-space: nowrap;
|
43
|
+
min-width: 470px;
|
44
|
+
}
|
45
|
+
&_type {
|
46
|
+
min-width: 160px;
|
47
|
+
}
|
48
|
+
&_additional {
|
49
|
+
color: var(--yc-color-text-link);
|
50
|
+
width: max-content;
|
51
|
+
cursor: pointer;
|
52
|
+
|
53
|
+
&:hover {
|
54
|
+
color: var(--yc-color-text-link-hover);
|
55
|
+
}
|
56
|
+
}
|
57
|
+
&_message {
|
58
|
+
width: 300px;
|
59
|
+
overflow: hidden;
|
60
|
+
white-space: normal;
|
61
|
+
}
|
62
|
+
}
|
63
|
+
|
64
|
+
&__field-tooltip {
|
65
|
+
&#{&} {
|
66
|
+
min-width: 500px;
|
67
|
+
max-width: 500px;
|
68
|
+
}
|
69
|
+
}
|
70
|
+
|
71
|
+
&__field-label {
|
72
|
+
color: var(--yc-color-text-secondary);
|
73
|
+
}
|
74
|
+
}
|
75
|
+
|
76
|
+
.indicator {
|
77
|
+
width: 12px;
|
78
|
+
height: 12px;
|
79
|
+
border-radius: 4px;
|
80
|
+
margin-right: 4px;
|
81
|
+
|
82
|
+
&_good,
|
83
|
+
&_green {
|
84
|
+
background-color: var(--yc-color-base-positive-heavy);
|
85
|
+
}
|
86
|
+
&_degraded,
|
87
|
+
&_yellow {
|
88
|
+
background-color: var(--yc-color-base-warning-heavy);
|
89
|
+
}
|
90
|
+
|
91
|
+
&_blue {
|
92
|
+
background-color: var(--yc-color-base-info-heavy);
|
93
|
+
}
|
94
|
+
|
95
|
+
&_emergency,
|
96
|
+
&_red {
|
97
|
+
background: var(--yc-color-base-danger-heavy);
|
98
|
+
}
|
99
|
+
&_unspecified,
|
100
|
+
&_gray,
|
101
|
+
&_grey {
|
102
|
+
background: var(--yc-color-text-complementary);
|
103
|
+
}
|
104
|
+
&_maintenance_required,
|
105
|
+
&_orange {
|
106
|
+
background: var(--yc-color-text-warning-heavy);
|
107
|
+
}
|
108
|
+
}
|
109
|
+
|
110
|
+
.issue-viewer {
|
111
|
+
display: flex;
|
112
|
+
|
113
|
+
&__tree {
|
114
|
+
padding-right: 20px;
|
115
|
+
}
|
116
|
+
|
117
|
+
&__checkbox {
|
118
|
+
margin: 5px 0 10px 0;
|
119
|
+
}
|
120
|
+
|
121
|
+
&__info-panel {
|
122
|
+
position: sticky;
|
123
|
+
top: 20px;
|
124
|
+
padding: 5px 20px 20px;
|
125
|
+
height: 100%;
|
126
|
+
width: 500px;
|
127
|
+
background: var(--yc-color-base-generic);
|
128
|
+
border-radius: 4px;
|
129
|
+
}
|
130
|
+
|
131
|
+
&__inspector {
|
132
|
+
@include json-tree-styles();
|
133
|
+
|
134
|
+
:not(.json-inspector__leaf_expanded).json-inspector__leaf_composite:before {
|
135
|
+
content: '';
|
136
|
+
}
|
137
|
+
.json-inspector__leaf_expanded.json-inspector__leaf_composite:before {
|
138
|
+
content: '';
|
139
|
+
}
|
140
|
+
|
141
|
+
& .json-inspector {
|
142
|
+
&__line:hover:after {
|
143
|
+
background: transparent;
|
144
|
+
}
|
145
|
+
&__show-original:hover:after,
|
146
|
+
&__show-original:hover:before {
|
147
|
+
color: transparent;
|
148
|
+
}
|
149
|
+
|
150
|
+
&__value_helper {
|
151
|
+
display: none;
|
152
|
+
}
|
153
|
+
|
154
|
+
&__value {
|
155
|
+
overflow: hidden;
|
156
|
+
word-break: break-all;
|
157
|
+
|
158
|
+
& > span {
|
159
|
+
user-select: all;
|
160
|
+
}
|
161
|
+
}
|
162
|
+
}
|
163
|
+
}
|
164
|
+
}
|