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,193 @@
|
|
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
|
+
|
6
|
+
import DataTable from '@yandex-cloud/react-data-table';
|
7
|
+
import {Loader, TextInput, Label} from '@yandex-cloud/uikit';
|
8
|
+
|
9
|
+
import ProblemFilter, {problemFilterType} from '../../components/ProblemFilter/ProblemFilter';
|
10
|
+
|
11
|
+
import {hideTooltip, showTooltip} from '../../store/reducers/tooltip';
|
12
|
+
import {withSearch} from '../../HOCS';
|
13
|
+
import {AUTO_RELOAD_INTERVAL, ALL} from '../../utils/constants';
|
14
|
+
import {getFilteredNodes} from '../../store/reducers/clusterNodes';
|
15
|
+
import {getNodes} from '../../store/reducers/nodes';
|
16
|
+
import {changeFilter} from '../../store/reducers/settings';
|
17
|
+
import {calcUptime} from '../../utils';
|
18
|
+
import {getNodesColumns} from '../../utils/getNodesColumns';
|
19
|
+
|
20
|
+
import './Nodes.scss';
|
21
|
+
|
22
|
+
const b = cn('cluster-nodes');
|
23
|
+
|
24
|
+
const tableSettings = {
|
25
|
+
displayIndices: false,
|
26
|
+
stickyHead: DataTable.MOVING,
|
27
|
+
syncHeadOnResize: true,
|
28
|
+
dynamicRender: true,
|
29
|
+
};
|
30
|
+
|
31
|
+
class Nodes extends React.Component {
|
32
|
+
static renderLoader() {
|
33
|
+
return (
|
34
|
+
<div className={'loader'}>
|
35
|
+
<Loader size="l" />
|
36
|
+
</div>
|
37
|
+
);
|
38
|
+
}
|
39
|
+
|
40
|
+
static propTypes = {
|
41
|
+
loading: PropTypes.bool,
|
42
|
+
wasLoaded: PropTypes.bool,
|
43
|
+
error: PropTypes.bool,
|
44
|
+
getNodesList: PropTypes.func,
|
45
|
+
nodes: PropTypes.array,
|
46
|
+
showTooltip: PropTypes.func,
|
47
|
+
hideTooltip: PropTypes.func,
|
48
|
+
searchQuery: PropTypes.string,
|
49
|
+
handleSearchQuery: PropTypes.func,
|
50
|
+
filter: problemFilterType,
|
51
|
+
changeFilter: PropTypes.func,
|
52
|
+
className: PropTypes.string,
|
53
|
+
singleClusterMode: PropTypes.bool,
|
54
|
+
additionalNodesInfo: PropTypes.object,
|
55
|
+
};
|
56
|
+
|
57
|
+
componentDidMount() {
|
58
|
+
this.props.getNodesList();
|
59
|
+
this.reloadDescriptor = setInterval(() => this.props.getNodesList(), AUTO_RELOAD_INTERVAL);
|
60
|
+
}
|
61
|
+
|
62
|
+
componentWillUnmount() {
|
63
|
+
clearInterval(this.reloadDescriptor);
|
64
|
+
}
|
65
|
+
|
66
|
+
handleSearchQueryChange = (search) => {
|
67
|
+
this.props.handleSearchQuery(search);
|
68
|
+
};
|
69
|
+
|
70
|
+
handleFilterChange = (filter) => {
|
71
|
+
this.props.changeFilter(filter);
|
72
|
+
};
|
73
|
+
|
74
|
+
renderControls() {
|
75
|
+
const {searchQuery, filter, nodes} = this.props;
|
76
|
+
|
77
|
+
return (
|
78
|
+
<div className={b('controls')}>
|
79
|
+
<div className={b('controls-left')}>
|
80
|
+
<TextInput
|
81
|
+
className={b('search')}
|
82
|
+
size="s"
|
83
|
+
placeholder="Host name…"
|
84
|
+
text={searchQuery}
|
85
|
+
onUpdate={this.handleSearchQueryChange}
|
86
|
+
hasClear
|
87
|
+
/>
|
88
|
+
<ProblemFilter value={filter} onChange={this.handleFilterChange} />
|
89
|
+
<Label theme="info" size="m">{`Nodes: ${nodes.length}`}</Label>
|
90
|
+
</div>
|
91
|
+
</div>
|
92
|
+
);
|
93
|
+
}
|
94
|
+
|
95
|
+
renderTable = () => {
|
96
|
+
const {
|
97
|
+
nodes = [],
|
98
|
+
filter,
|
99
|
+
searchQuery,
|
100
|
+
showTooltip,
|
101
|
+
hideTooltip,
|
102
|
+
singleClusterMode,
|
103
|
+
additionalNodesInfo = {},
|
104
|
+
} = this.props;
|
105
|
+
|
106
|
+
const columns = getNodesColumns({
|
107
|
+
showTooltip,
|
108
|
+
hideTooltip,
|
109
|
+
singleClusterMode,
|
110
|
+
getNodeRef: additionalNodesInfo.getNodeRef,
|
111
|
+
});
|
112
|
+
|
113
|
+
let preparedNodes = searchQuery
|
114
|
+
? nodes.filter((node) =>
|
115
|
+
node.Host
|
116
|
+
? node.Host.includes(searchQuery) || String(node.NodeId).includes(searchQuery)
|
117
|
+
: true,
|
118
|
+
)
|
119
|
+
: nodes;
|
120
|
+
preparedNodes = preparedNodes.map((node) => ({
|
121
|
+
...node,
|
122
|
+
uptime: calcUptime(node.StartTime),
|
123
|
+
}));
|
124
|
+
|
125
|
+
if (preparedNodes.length === 0) {
|
126
|
+
if (filter === ALL) {
|
127
|
+
return <div className="error">no nodes data</div>;
|
128
|
+
}
|
129
|
+
return <div className="no-problem" />;
|
130
|
+
}
|
131
|
+
|
132
|
+
return (
|
133
|
+
<div className={b('table-wrapper')}>
|
134
|
+
<div className={b('table-content')}>
|
135
|
+
<DataTable
|
136
|
+
theme="internal"
|
137
|
+
data={preparedNodes}
|
138
|
+
columns={columns}
|
139
|
+
settings={tableSettings}
|
140
|
+
initialSortOrder={{
|
141
|
+
columnId: 'NodeId',
|
142
|
+
order: DataTable.ASCENDING,
|
143
|
+
}}
|
144
|
+
/>
|
145
|
+
</div>
|
146
|
+
</div>
|
147
|
+
);
|
148
|
+
};
|
149
|
+
|
150
|
+
renderContent = () => {
|
151
|
+
return (
|
152
|
+
<div className={b(null, this.props.className)}>
|
153
|
+
{this.renderControls()}
|
154
|
+
{this.renderTable()}
|
155
|
+
</div>
|
156
|
+
);
|
157
|
+
};
|
158
|
+
|
159
|
+
render() {
|
160
|
+
const {loading, wasLoaded, error} = this.props;
|
161
|
+
|
162
|
+
if (loading && !wasLoaded) {
|
163
|
+
return Nodes.renderLoader();
|
164
|
+
} else if (error) {
|
165
|
+
return <div>{error.statusText}</div>;
|
166
|
+
} else {
|
167
|
+
return this.renderContent();
|
168
|
+
}
|
169
|
+
}
|
170
|
+
}
|
171
|
+
|
172
|
+
const mapStateToProps = (state) => {
|
173
|
+
const {wasLoaded, loading, error} = state.nodes;
|
174
|
+
|
175
|
+
const nodes = getFilteredNodes(state);
|
176
|
+
return {
|
177
|
+
singleClusterMode: state.singleClusterMode,
|
178
|
+
nodes,
|
179
|
+
wasLoaded,
|
180
|
+
loading,
|
181
|
+
error,
|
182
|
+
filter: state.settings.problemFilter,
|
183
|
+
};
|
184
|
+
};
|
185
|
+
|
186
|
+
const mapDispatchToProps = {
|
187
|
+
getNodesList: getNodes,
|
188
|
+
hideTooltip,
|
189
|
+
showTooltip,
|
190
|
+
changeFilter,
|
191
|
+
};
|
192
|
+
|
193
|
+
export default withSearch(connect(mapStateToProps, mapDispatchToProps)(Nodes));
|
@@ -0,0 +1,50 @@
|
|
1
|
+
@import '../../styles/mixins.scss';
|
2
|
+
|
3
|
+
.cluster-nodes {
|
4
|
+
overflow: auto;
|
5
|
+
|
6
|
+
&__search {
|
7
|
+
width: 255px;
|
8
|
+
margin: 0 15px 0 0;
|
9
|
+
}
|
10
|
+
|
11
|
+
&__controls {
|
12
|
+
display: flex;
|
13
|
+
justify-content: space-between;
|
14
|
+
|
15
|
+
margin: 17px 0;
|
16
|
+
}
|
17
|
+
|
18
|
+
&__controls-left {
|
19
|
+
display: flex;
|
20
|
+
align-items: center;
|
21
|
+
|
22
|
+
& > * {
|
23
|
+
margin-right: 25px;
|
24
|
+
}
|
25
|
+
}
|
26
|
+
|
27
|
+
&__show-all-wrapper {
|
28
|
+
position: sticky;
|
29
|
+
left: 0;
|
30
|
+
|
31
|
+
margin-bottom: 15px;
|
32
|
+
}
|
33
|
+
|
34
|
+
&__table-wrapper {
|
35
|
+
overflow: auto;
|
36
|
+
@include flex-container();
|
37
|
+
}
|
38
|
+
|
39
|
+
&__table-content {
|
40
|
+
overflow: auto;
|
41
|
+
|
42
|
+
@include freeze-nth-column(1);
|
43
|
+
@include freeze-nth-column(2, 80px);
|
44
|
+
@include freeze-nth-column(3, 120px);
|
45
|
+
|
46
|
+
@include table-styles;
|
47
|
+
@include table-sticky-styles;
|
48
|
+
}
|
49
|
+
@include flex-container();
|
50
|
+
}
|
@@ -0,0 +1,159 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import PropTypes from 'prop-types';
|
3
|
+
import cn from 'bem-cn-lite';
|
4
|
+
import qs from 'qs';
|
5
|
+
import {connect} from 'react-redux';
|
6
|
+
|
7
|
+
import {Link} from 'react-router-dom';
|
8
|
+
import {Loader} from '@yandex-cloud/uikit';
|
9
|
+
|
10
|
+
import InfoViewer from '../../components/InfoViewer/InfoViewer';
|
11
|
+
import EntityStatus from '../../components/EntityStatus/EntityStatus';
|
12
|
+
import ProgressViewer from '../../components/ProgressViewer/ProgressViewer';
|
13
|
+
|
14
|
+
import {getPdiskInfo, clearStore} from '../../store/reducers/pdisk';
|
15
|
+
import {PDISK_AUTO_RELOAD_INTERVAL} from '../../utils/constants';
|
16
|
+
import {formatStorageValues, calcUptime} from '../../utils';
|
17
|
+
import routes, {createHref} from '../../routes';
|
18
|
+
|
19
|
+
import './Pdisk.scss';
|
20
|
+
|
21
|
+
const b = cn('pdisk');
|
22
|
+
|
23
|
+
class Pdisk extends React.Component {
|
24
|
+
static renderLoader() {
|
25
|
+
return (
|
26
|
+
<div className={'loader'}>
|
27
|
+
<Loader size="l" />
|
28
|
+
</div>
|
29
|
+
);
|
30
|
+
}
|
31
|
+
|
32
|
+
static propTypes = {
|
33
|
+
className: PropTypes.string,
|
34
|
+
loading: PropTypes.bool,
|
35
|
+
wasLoaded: PropTypes.bool,
|
36
|
+
error: PropTypes.bool,
|
37
|
+
getPdiskInfo: PropTypes.func,
|
38
|
+
clearStore: PropTypes.func,
|
39
|
+
pdisk: PropTypes.object,
|
40
|
+
location: PropTypes.object,
|
41
|
+
};
|
42
|
+
|
43
|
+
static defaultProps = {
|
44
|
+
className: '',
|
45
|
+
};
|
46
|
+
|
47
|
+
componentDidMount() {
|
48
|
+
const queryParams = qs.parse(this.props.location.search, {
|
49
|
+
ignoreQueryPrefix: true,
|
50
|
+
});
|
51
|
+
const nodeId = queryParams.node_id;
|
52
|
+
this.props.getPdiskInfo(nodeId);
|
53
|
+
this.reloadDescriptor = setInterval(
|
54
|
+
() => this.props.getPdiskInfo(nodeId),
|
55
|
+
PDISK_AUTO_RELOAD_INTERVAL,
|
56
|
+
);
|
57
|
+
}
|
58
|
+
|
59
|
+
componentWillUnmount() {
|
60
|
+
this.props.clearStore();
|
61
|
+
clearInterval(this.reloadDescriptor);
|
62
|
+
}
|
63
|
+
|
64
|
+
renderContent = () => {
|
65
|
+
const {
|
66
|
+
TotalSize,
|
67
|
+
AvailableSize,
|
68
|
+
ChangeTime,
|
69
|
+
Device,
|
70
|
+
Guid,
|
71
|
+
NodeId,
|
72
|
+
PDiskId,
|
73
|
+
Path,
|
74
|
+
Realtime,
|
75
|
+
State,
|
76
|
+
} = this.props.pdisk;
|
77
|
+
|
78
|
+
const pdiskInfo = [
|
79
|
+
{label: 'Device', value: <EntityStatus status={Device} />},
|
80
|
+
{label: 'Realtime', value: <EntityStatus status={Realtime} />},
|
81
|
+
{label: 'State', value: State},
|
82
|
+
{
|
83
|
+
label: 'Size',
|
84
|
+
value: (
|
85
|
+
<ProgressViewer
|
86
|
+
value={TotalSize - AvailableSize || 0}
|
87
|
+
capacity={TotalSize || 0}
|
88
|
+
formatValues={formatStorageValues}
|
89
|
+
colorizeProgress={true}
|
90
|
+
className={b('size')}
|
91
|
+
/>
|
92
|
+
),
|
93
|
+
},
|
94
|
+
{label: 'ChangeTime', value: calcUptime(ChangeTime)},
|
95
|
+
{label: 'Path', value: Path},
|
96
|
+
{label: 'Guid', value: Guid},
|
97
|
+
{
|
98
|
+
label: 'NodeId',
|
99
|
+
value: (
|
100
|
+
<Link
|
101
|
+
className={b('link')}
|
102
|
+
to={createHref(routes.node, {id: NodeId, activeTab: 'storage'})}
|
103
|
+
>
|
104
|
+
{NodeId}
|
105
|
+
</Link>
|
106
|
+
),
|
107
|
+
},
|
108
|
+
];
|
109
|
+
|
110
|
+
return (
|
111
|
+
<div className={b()}>
|
112
|
+
<div className={b('row')}>
|
113
|
+
<span className={b('title')}>PDisk </span>
|
114
|
+
<EntityStatus status={Device} name={PDiskId} />
|
115
|
+
</div>
|
116
|
+
|
117
|
+
<div className={b('column')}>
|
118
|
+
<InfoViewer className={b('section')} info={pdiskInfo} />
|
119
|
+
</div>
|
120
|
+
</div>
|
121
|
+
);
|
122
|
+
};
|
123
|
+
|
124
|
+
render() {
|
125
|
+
const {loading, wasLoaded, error} = this.props;
|
126
|
+
|
127
|
+
if (loading && !wasLoaded) {
|
128
|
+
return Pdisk.renderLoader();
|
129
|
+
} else if (error) {
|
130
|
+
return <div>{error.statusText}</div>;
|
131
|
+
} else {
|
132
|
+
return this.renderContent();
|
133
|
+
}
|
134
|
+
}
|
135
|
+
}
|
136
|
+
|
137
|
+
const mapStateToProps = (state, ownProps) => {
|
138
|
+
const {data, wasLoaded, loading, error} = state.pdisk;
|
139
|
+
|
140
|
+
const {id} = ownProps.match.params;
|
141
|
+
let pdisk;
|
142
|
+
if (data) {
|
143
|
+
pdisk = data.PDiskStateInfo.filter((disk) => disk.PDiskId === Number(id))[0];
|
144
|
+
}
|
145
|
+
|
146
|
+
return {
|
147
|
+
pdisk,
|
148
|
+
wasLoaded,
|
149
|
+
loading,
|
150
|
+
error,
|
151
|
+
};
|
152
|
+
};
|
153
|
+
|
154
|
+
const mapDispatchToProps = {
|
155
|
+
getPdiskInfo,
|
156
|
+
clearStore,
|
157
|
+
};
|
158
|
+
|
159
|
+
export default connect(mapStateToProps, mapDispatchToProps)(Pdisk);
|
@@ -0,0 +1,40 @@
|
|
1
|
+
@import '../../styles/mixins.scss';
|
2
|
+
|
3
|
+
.pdisk {
|
4
|
+
@include container-fluid();
|
5
|
+
padding: 20px;
|
6
|
+
|
7
|
+
.info-viewer__items {
|
8
|
+
grid-template-columns: auto;
|
9
|
+
}
|
10
|
+
|
11
|
+
&__row {
|
12
|
+
display: flex;
|
13
|
+
}
|
14
|
+
|
15
|
+
&__column {
|
16
|
+
display: flex;
|
17
|
+
flex-direction: column;
|
18
|
+
}
|
19
|
+
|
20
|
+
&__title {
|
21
|
+
font-size: var(--yc-text-body2-font-size);
|
22
|
+
line-height: var(--yc-text-body2-line-height);
|
23
|
+
font-weight: 500;
|
24
|
+
text-transform: uppercase;
|
25
|
+
margin-right: 16px;
|
26
|
+
}
|
27
|
+
|
28
|
+
&__section {
|
29
|
+
padding: 15px 0;
|
30
|
+
}
|
31
|
+
|
32
|
+
&__size {
|
33
|
+
margin-top: -8px;
|
34
|
+
}
|
35
|
+
|
36
|
+
&__link {
|
37
|
+
color: var(--yc-color-base-special);
|
38
|
+
text-decoration: none;
|
39
|
+
}
|
40
|
+
}
|
@@ -0,0 +1,169 @@
|
|
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 _ from 'lodash';
|
6
|
+
|
7
|
+
import {Loader} from '@yandex-cloud/uikit';
|
8
|
+
import ReactList from 'react-list';
|
9
|
+
|
10
|
+
import EntityStatus from '../../components/EntityStatus/EntityStatus';
|
11
|
+
import GroupTreeViewer from '../../components/GroupTreeViewer/GroupTreeViewer';
|
12
|
+
import Breadcrumbs from '../../components/Breadcrumbs/Breadcrumbs';
|
13
|
+
import ProblemFilter, {problemFilterType} from '../../components/ProblemFilter/ProblemFilter';
|
14
|
+
|
15
|
+
import {getPoolInfo} from '../../store/reducers/pool';
|
16
|
+
import {AUTO_RELOAD_INTERVAL, ALL} from '../../utils/constants';
|
17
|
+
import {changeFilter} from '../../store/reducers/settings';
|
18
|
+
|
19
|
+
import './Pool.scss';
|
20
|
+
|
21
|
+
const b = cn('pool');
|
22
|
+
|
23
|
+
class Pool extends React.Component {
|
24
|
+
static renderLoader() {
|
25
|
+
return (
|
26
|
+
<div className={'loader'}>
|
27
|
+
<Loader size="l" />
|
28
|
+
</div>
|
29
|
+
);
|
30
|
+
}
|
31
|
+
|
32
|
+
static propTypes = {
|
33
|
+
loading: PropTypes.bool,
|
34
|
+
wasLoaded: PropTypes.bool,
|
35
|
+
error: PropTypes.bool,
|
36
|
+
getPoolInfo: PropTypes.func,
|
37
|
+
pool: PropTypes.object,
|
38
|
+
poolName: PropTypes.string,
|
39
|
+
match: PropTypes.object,
|
40
|
+
filter: problemFilterType,
|
41
|
+
changeFilter: PropTypes.func,
|
42
|
+
};
|
43
|
+
|
44
|
+
static defaultProps = {
|
45
|
+
pool: {},
|
46
|
+
};
|
47
|
+
|
48
|
+
static filterGroups(groups, filter) {
|
49
|
+
return _.filter(groups, (item) => {
|
50
|
+
return filter === ALL || (item.Overall && item.Overall !== 'Green');
|
51
|
+
});
|
52
|
+
}
|
53
|
+
|
54
|
+
componentDidMount() {
|
55
|
+
const {poolName} = this.props.match.params;
|
56
|
+
this.props.getPoolInfo(decodeURIComponent(poolName));
|
57
|
+
this.reloadDescriptor = setInterval(
|
58
|
+
() => this.props.getPoolInfo(decodeURIComponent(poolName)),
|
59
|
+
AUTO_RELOAD_INTERVAL,
|
60
|
+
);
|
61
|
+
}
|
62
|
+
|
63
|
+
componentWillUnmount() {
|
64
|
+
clearInterval(this.reloadDescriptor);
|
65
|
+
}
|
66
|
+
|
67
|
+
state = {
|
68
|
+
extendedGroups: new Set(),
|
69
|
+
};
|
70
|
+
|
71
|
+
makeHandleGroupClick = (groupIndex) => () => {
|
72
|
+
const {extendedGroups} = this.state;
|
73
|
+
const newExtendedGroups = new Set([...extendedGroups]);
|
74
|
+
|
75
|
+
if (newExtendedGroups.has(groupIndex)) {
|
76
|
+
newExtendedGroups.delete(groupIndex);
|
77
|
+
} else {
|
78
|
+
newExtendedGroups.add(groupIndex);
|
79
|
+
}
|
80
|
+
|
81
|
+
this.setState({extendedGroups: newExtendedGroups});
|
82
|
+
};
|
83
|
+
|
84
|
+
makeRenderGroups = (groups) => (index, key) => {
|
85
|
+
const group = groups[index];
|
86
|
+
const {extendedGroups} = this.state;
|
87
|
+
|
88
|
+
return (
|
89
|
+
<GroupTreeViewer
|
90
|
+
key={key}
|
91
|
+
group={group}
|
92
|
+
collapsed={!extendedGroups.has(index)}
|
93
|
+
onClick={this.makeHandleGroupClick(index)}
|
94
|
+
/>
|
95
|
+
);
|
96
|
+
};
|
97
|
+
|
98
|
+
renderContent = () => {
|
99
|
+
const {pool, filter, changeFilter} = this.props;
|
100
|
+
const {extendedGroups} = this.state;
|
101
|
+
|
102
|
+
const breadcrumbsItems = [{text: 'Database'}, {text: 'Storage Pool'}];
|
103
|
+
|
104
|
+
if (pool && pool.StoragePools) {
|
105
|
+
const poolInfo = pool.StoragePools[0];
|
106
|
+
const filteredGroups = Pool.filterGroups(poolInfo.Groups, filter);
|
107
|
+
|
108
|
+
return (
|
109
|
+
<div className={b()}>
|
110
|
+
<Breadcrumbs items={breadcrumbsItems} />
|
111
|
+
<div className={b('row')}>
|
112
|
+
<span className={b('title')}>Pool </span>
|
113
|
+
<EntityStatus status={poolInfo.Overall} name={poolInfo.Name}></EntityStatus>
|
114
|
+
</div>
|
115
|
+
|
116
|
+
<div className={b('controls')}>
|
117
|
+
<div className={b('title', {groups: true})}>Groups</div>
|
118
|
+
<ProblemFilter value={filter} onChange={changeFilter} />
|
119
|
+
</div>
|
120
|
+
|
121
|
+
{filteredGroups.length === 0 ? (
|
122
|
+
<div className="no-problem" />
|
123
|
+
) : (
|
124
|
+
<ReactList
|
125
|
+
itemRenderer={this.makeRenderGroups(filteredGroups)}
|
126
|
+
length={filteredGroups.length}
|
127
|
+
itemSizeGetter={GroupTreeViewer.makeGetHeight(
|
128
|
+
filteredGroups,
|
129
|
+
extendedGroups,
|
130
|
+
)}
|
131
|
+
type="variable"
|
132
|
+
/>
|
133
|
+
)}
|
134
|
+
</div>
|
135
|
+
);
|
136
|
+
}
|
137
|
+
};
|
138
|
+
|
139
|
+
render() {
|
140
|
+
const {loading, wasLoaded, error} = this.props;
|
141
|
+
|
142
|
+
if (loading && !wasLoaded) {
|
143
|
+
return Pool.renderLoader();
|
144
|
+
} else if (error) {
|
145
|
+
return <div>{error.statusText}</div>;
|
146
|
+
} else {
|
147
|
+
return this.renderContent();
|
148
|
+
}
|
149
|
+
}
|
150
|
+
}
|
151
|
+
|
152
|
+
const mapStateToProps = (state) => {
|
153
|
+
const {data: pool, wasLoaded, loading, error} = state.pool;
|
154
|
+
|
155
|
+
return {
|
156
|
+
pool,
|
157
|
+
wasLoaded,
|
158
|
+
loading,
|
159
|
+
error,
|
160
|
+
filter: state.settings.problemFilter,
|
161
|
+
};
|
162
|
+
};
|
163
|
+
|
164
|
+
const mapDispatchToProps = {
|
165
|
+
getPoolInfo,
|
166
|
+
changeFilter,
|
167
|
+
};
|
168
|
+
|
169
|
+
export default connect(mapStateToProps, mapDispatchToProps)(Pool);
|
@@ -0,0 +1,32 @@
|
|
1
|
+
@import '../../styles/mixins.scss';
|
2
|
+
|
3
|
+
.pool {
|
4
|
+
@include container-fluid();
|
5
|
+
|
6
|
+
&__row {
|
7
|
+
display: flex;
|
8
|
+
}
|
9
|
+
|
10
|
+
&__title {
|
11
|
+
font-size: var(--yc-text-body2-font-size);
|
12
|
+
line-height: var(--yc-text-body2-line-height);
|
13
|
+
font-weight: 500;
|
14
|
+
text-transform: uppercase;
|
15
|
+
margin-right: 16px;
|
16
|
+
|
17
|
+
&_groups {
|
18
|
+
margin-right: 32px;
|
19
|
+
}
|
20
|
+
}
|
21
|
+
|
22
|
+
&__controls {
|
23
|
+
display: flex;
|
24
|
+
align-items: center;
|
25
|
+
margin: 25px 0 10px 0;
|
26
|
+
}
|
27
|
+
|
28
|
+
&__breadcrumbs {
|
29
|
+
font-size: var(--yc-text-body2-font-size);
|
30
|
+
padding: 20px 0;
|
31
|
+
}
|
32
|
+
}
|