ydb-embedded-ui 6.2.0 → 6.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/EntityStatus/EntityStatus.d.ts +3 -1
- package/dist/components/EntityStatus/EntityStatus.js +4 -4
- package/dist/components/EntityStatus/EntityStatus.scss +6 -13
- package/dist/components/NodeHostWrapper/NodeHostWrapper.js +3 -2
- package/dist/components/NodeHostWrapper/NodeHostWrapper.scss +1 -4
- package/dist/containers/App/App.scss +2 -3
- package/dist/containers/Tenant/Query/Preview/Preview.js +3 -2
- package/dist/containers/Tenants/Tenants.js +4 -4
- package/dist/containers/Tenants/Tenants.scss +2 -4
- package/package.json +1 -1
@@ -1,3 +1,4 @@
|
|
1
|
+
/// <reference types="react" />
|
1
2
|
import { EFlag } from '../../types/api/enums';
|
2
3
|
import type { StatusIconMode, StatusIconSize } from '../StatusIcon/StatusIcon';
|
3
4
|
import './EntityStatus.scss';
|
@@ -15,6 +16,7 @@ interface EntityStatusProps {
|
|
15
16
|
hasClipboardButton?: boolean;
|
16
17
|
clipboardButtonAlwaysVisible?: boolean;
|
17
18
|
className?: string;
|
19
|
+
additionalControls?: React.ReactNode;
|
18
20
|
}
|
19
|
-
export declare function EntityStatus({ status, name, label, path, iconPath, size, mode, showStatus, externalLink, withLeftTrim, hasClipboardButton, clipboardButtonAlwaysVisible, className, }: EntityStatusProps): import("react/jsx-runtime").JSX.Element;
|
21
|
+
export declare function EntityStatus({ status, name, label, path, iconPath, size, mode, showStatus, externalLink, withLeftTrim, hasClipboardButton, clipboardButtonAlwaysVisible, className, additionalControls, }: EntityStatusProps): import("react/jsx-runtime").JSX.Element;
|
20
22
|
export {};
|
@@ -1,13 +1,13 @@
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
2
2
|
import { Link as UIKitLink } from '@gravity-ui/uikit';
|
3
|
-
import { Link } from 'react-router-dom';
|
4
3
|
import { EFlag } from '../../types/api/enums';
|
5
4
|
import { cn } from '../../utils/cn';
|
6
5
|
import { ClipboardButton } from '../ClipboardButton';
|
6
|
+
import { InternalLink } from '../InternalLink/InternalLink';
|
7
7
|
import { StatusIcon } from '../StatusIcon/StatusIcon';
|
8
8
|
import './EntityStatus.scss';
|
9
9
|
const b = cn('entity-status');
|
10
|
-
export function EntityStatus({ status = EFlag.Grey, name = '', label, path, iconPath, size = 's', mode = 'color', showStatus = true, externalLink = false, withLeftTrim = false, hasClipboardButton, clipboardButtonAlwaysVisible = false, className, }) {
|
10
|
+
export function EntityStatus({ status = EFlag.Grey, name = '', label, path, iconPath, size = 's', mode = 'color', showStatus = true, externalLink = false, withLeftTrim = false, hasClipboardButton, clipboardButtonAlwaysVisible = false, className, additionalControls, }) {
|
11
11
|
const renderIcon = () => {
|
12
12
|
if (!showStatus) {
|
13
13
|
return null;
|
@@ -22,11 +22,11 @@ export function EntityStatus({ status = EFlag.Grey, name = '', label, path, icon
|
|
22
22
|
if (externalLink) {
|
23
23
|
return (_jsx(UIKitLink, { className: b('name'), href: path, children: name }));
|
24
24
|
}
|
25
|
-
return (_jsx(
|
25
|
+
return (_jsx(InternalLink, { className: b('name'), to: path, children: name }));
|
26
26
|
}
|
27
27
|
return name && _jsx("span", { className: b('name'), children: name });
|
28
28
|
};
|
29
29
|
return (_jsxs("div", { className: b(null, className), title: name, children: [iconPath ? renderStatusLink(iconPath) : renderIcon(), label && (_jsx("span", { title: label, className: b('label', { size, state: status.toLowerCase() }), children: label })), _jsx("span", { className: b('link', { 'with-left-trim': withLeftTrim }), children: renderLink() }), hasClipboardButton && (_jsx(ClipboardButton, { text: name, size: "s", className: b('clipboard-button', {
|
30
30
|
visible: clipboardButtonAlwaysVisible,
|
31
|
-
}) }))] }));
|
31
|
+
}) })), additionalControls] }));
|
32
32
|
}
|
@@ -14,27 +14,20 @@
|
|
14
14
|
}
|
15
15
|
|
16
16
|
&__clipboard-button {
|
17
|
-
|
17
|
+
display: flex;
|
18
|
+
flex-shrink: 0;
|
18
19
|
|
19
20
|
margin-left: 8px;
|
20
21
|
|
22
|
+
opacity: 0;
|
21
23
|
color: var(--g-color-text-secondary);
|
22
24
|
|
23
|
-
&_visible
|
24
|
-
|
25
|
+
&_visible,
|
26
|
+
&:focus-visible {
|
27
|
+
opacity: 1;
|
25
28
|
}
|
26
29
|
}
|
27
30
|
|
28
|
-
a {
|
29
|
-
text-decoration: none;
|
30
|
-
|
31
|
-
color: var(--g-color-text-link);
|
32
|
-
}
|
33
|
-
|
34
|
-
a:hover {
|
35
|
-
color: var(--g-color-text-link-hover);
|
36
|
-
}
|
37
|
-
|
38
31
|
&__label {
|
39
32
|
margin-right: 2px;
|
40
33
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { jsx as _jsx
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
2
2
|
import { Button, PopoverBehavior } from '@gravity-ui/uikit';
|
3
3
|
import { getDefaultNodePath } from '../../containers/Node/NodePages';
|
4
4
|
import { cn } from '../../utils/cn';
|
@@ -20,5 +20,6 @@ export const NodeHostWrapper = ({ node, getNodeRef }) => {
|
|
20
20
|
tenantName: node.TenantName,
|
21
21
|
})
|
22
22
|
: undefined;
|
23
|
-
|
23
|
+
const additionalControls = nodeRef ? (_jsx(Button, { size: "s", href: nodeRef, className: b('external-button'), target: "_blank", children: _jsx(Icon, { name: "external" }) })) : null;
|
24
|
+
return (_jsx(CellWithPopover, { disabled: !isNodeAvailable, content: _jsx(NodeEndpointsTooltipContent, { data: node }), placement: ['top', 'bottom'], behavior: PopoverBehavior.Immediate, children: _jsx(EntityStatus, { name: node.Host, status: node.SystemState, path: nodePath, hasClipboardButton: true, additionalControls: additionalControls }) }));
|
24
25
|
};
|
@@ -15,10 +15,11 @@ import './Preview.scss';
|
|
15
15
|
const b = cn('kv-preview');
|
16
16
|
export const Preview = ({ database, type }) => {
|
17
17
|
const dispatch = useTypedDispatch();
|
18
|
+
const isPreviewAvailable = isTableType(type);
|
18
19
|
const { autorefresh, currentSchemaPath } = useTypedSelector((state) => state.schema);
|
19
20
|
const isFullscreen = useTypedSelector((state) => state.fullscreen);
|
20
21
|
const query = `--!syntax_v1\nselect * from \`${currentSchemaPath}\` limit 32`;
|
21
|
-
const { currentData, isFetching, error } = previewApi.useSendQueryQuery({ database, query, action: isExternalTable(type) ? 'execute-query' : 'execute-scan' }, { pollingInterval: autorefresh });
|
22
|
+
const { currentData, isFetching, error } = previewApi.useSendQueryQuery({ database, query, action: isExternalTable(type) ? 'execute-query' : 'execute-scan' }, { pollingInterval: autorefresh, skip: !isPreviewAvailable });
|
22
23
|
const loading = isFetching && currentData === undefined;
|
23
24
|
const data = currentData !== null && currentData !== void 0 ? currentData : {};
|
24
25
|
const handleClosePreview = () => {
|
@@ -31,7 +32,7 @@ export const Preview = ({ database, type }) => {
|
|
31
32
|
return (_jsx("div", { className: b('loader-container'), children: _jsx(Loader, { size: "m" }) }));
|
32
33
|
}
|
33
34
|
let message;
|
34
|
-
if (!
|
35
|
+
if (!isPreviewAvailable) {
|
35
36
|
message = _jsx("div", { className: b('message-container'), children: i18n('preview.not-available') });
|
36
37
|
}
|
37
38
|
else if (error) {
|
@@ -55,10 +55,10 @@ export const Tenants = ({ additionalTenantsProps }) => {
|
|
55
55
|
var _a;
|
56
56
|
const backend = getTenantBackend(row);
|
57
57
|
const isExternalLink = Boolean(backend);
|
58
|
-
return (
|
59
|
-
|
60
|
-
|
61
|
-
|
58
|
+
return (_jsx(EntityStatus, { externalLink: isExternalLink, className: b('name'), name: row.Name || 'unknown database', withLeftTrim: true, status: row.Overall, hasClipboardButton: true, path: getTenantPath({
|
59
|
+
name: row.Name,
|
60
|
+
backend,
|
61
|
+
}), additionalControls: _jsx("span", { className: b('monitoring-button'), children: (_a = additionalTenantsProps === null || additionalTenantsProps === void 0 ? void 0 : additionalTenantsProps.getMonitoringLink) === null || _a === void 0 ? void 0 : _a.call(additionalTenantsProps, row.Name, row.Type) }) }));
|
62
62
|
},
|
63
63
|
width: 440,
|
64
64
|
sortable: true,
|