@teambit/ui-foundation.ui.side-bar 0.0.874 → 0.0.875
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/.bit-capsule-ready +0 -0
- package/component-tree/component-view/component-view.tsx +5 -4
- package/dist/component-tree/component-view/component-view.d.ts +1 -2
- package/dist/component-tree/component-view/component-view.js +3 -3
- package/dist/component-tree/component-view/component-view.js.map +1 -1
- package/package-tar/teambit-ui-foundation.ui.side-bar-0.0.875.tgz +0 -0
- package/package.json +13 -15
- package/schema.json +1373 -0
- package/static/css/teambit.ui-foundation/ui/side-bar.78ecddd4.css +1 -0
- package/teambit_ui_foundation_ui_side_bar-component.js +977 -0
- package/teambit_ui_foundation_ui_side_bar-preview.js +1 -0
- package/dist/preview-1705406853442.js +0 -7
- package/tsconfig.json +0 -32
- package/types/asset.d.ts +0 -29
- package/types/style.d.ts +0 -42
|
File without changes
|
|
@@ -14,7 +14,6 @@ import { indentClass } from '@teambit/base-ui.graph.tree.indent';
|
|
|
14
14
|
import { TreeNodeProps } from '@teambit/base-ui.graph.tree.recursive-tree';
|
|
15
15
|
import { useLanes } from '@teambit/lanes.hooks.use-lanes';
|
|
16
16
|
import { LanesModel } from '@teambit/lanes.ui.models.lanes-model';
|
|
17
|
-
import { PayloadType } from '../payload-type';
|
|
18
17
|
import { getName } from '../utils/get-name';
|
|
19
18
|
|
|
20
19
|
import styles from './component-view.module.scss';
|
|
@@ -25,9 +24,9 @@ export type ComponentViewProps<Payload = any> = {
|
|
|
25
24
|
scopeName?: string;
|
|
26
25
|
} & TreeNodeProps<Payload>;
|
|
27
26
|
|
|
28
|
-
export function ComponentView(props: ComponentViewProps
|
|
27
|
+
export function ComponentView(props: ComponentViewProps) {
|
|
29
28
|
const { node, scopeName } = props;
|
|
30
|
-
|
|
29
|
+
let component = node.payload;
|
|
31
30
|
|
|
32
31
|
const { onSelect } = useContext(TreeContext);
|
|
33
32
|
const { lanesModel } = (props.useLanes || useLanes)();
|
|
@@ -42,7 +41,9 @@ export function ComponentView(props: ComponentViewProps<PayloadType>) {
|
|
|
42
41
|
const location = useLocation();
|
|
43
42
|
const scope = { name: scopeName };
|
|
44
43
|
|
|
45
|
-
if (!
|
|
44
|
+
if (!component.id || !component.environment.id) return null;
|
|
45
|
+
|
|
46
|
+
component = component as ComponentModel;
|
|
46
47
|
|
|
47
48
|
const envId = ComponentID.fromString(component.environment?.id as string);
|
|
48
49
|
|
|
@@ -2,7 +2,6 @@ import { ComponentTreeSlot } from '@teambit/component-tree';
|
|
|
2
2
|
import React from 'react';
|
|
3
3
|
import { TreeNodeProps } from '@teambit/base-ui.graph.tree.recursive-tree';
|
|
4
4
|
import { LanesModel } from '@teambit/lanes.ui.models.lanes-model';
|
|
5
|
-
import { PayloadType } from '../payload-type';
|
|
6
5
|
export declare type ComponentViewProps<Payload = any> = {
|
|
7
6
|
treeNodeSlot?: ComponentTreeSlot;
|
|
8
7
|
useLanes?: () => {
|
|
@@ -10,4 +9,4 @@ export declare type ComponentViewProps<Payload = any> = {
|
|
|
10
9
|
};
|
|
11
10
|
scopeName?: string;
|
|
12
11
|
} & TreeNodeProps<Payload>;
|
|
13
|
-
export declare function ComponentView(props: ComponentViewProps
|
|
12
|
+
export declare function ComponentView(props: ComponentViewProps): React.JSX.Element;
|
|
@@ -32,7 +32,6 @@ const envs_ui_env_icon_1 = require("@teambit/envs.ui.env-icon");
|
|
|
32
32
|
const component_ui_deprecation_icon_1 = require("@teambit/component.ui.deprecation-icon");
|
|
33
33
|
const classnames_1 = __importDefault(require("classnames"));
|
|
34
34
|
const component_id_1 = require("@teambit/component-id");
|
|
35
|
-
const component_1 = require("@teambit/component");
|
|
36
35
|
const component_modules_component_url_1 = require("@teambit/component.modules.component-url");
|
|
37
36
|
const react_1 = __importStar(require("react"));
|
|
38
37
|
const design_ui_tooltip_1 = require("@teambit/design.ui.tooltip");
|
|
@@ -45,7 +44,7 @@ const component_view_module_scss_1 = __importDefault(require("./component-view.m
|
|
|
45
44
|
function ComponentView(props) {
|
|
46
45
|
var _a, _b, _c, _d;
|
|
47
46
|
const { node, scopeName } = props;
|
|
48
|
-
|
|
47
|
+
let component = node.payload;
|
|
49
48
|
const { onSelect } = (0, react_1.useContext)(base_ui_graph_tree_tree_context_1.TreeContext);
|
|
50
49
|
const { lanesModel } = (props.useLanes || lanes_hooks_use_lanes_1.useLanes)();
|
|
51
50
|
const handleClick = (0, react_1.useCallback)((event) => {
|
|
@@ -53,8 +52,9 @@ function ComponentView(props) {
|
|
|
53
52
|
}, [onSelect, node.id]);
|
|
54
53
|
const location = (0, base_react_navigation_link_1.useLocation)();
|
|
55
54
|
const scope = { name: scopeName };
|
|
56
|
-
if (!
|
|
55
|
+
if (!component.id || !component.environment.id)
|
|
57
56
|
return null;
|
|
57
|
+
component = component;
|
|
58
58
|
const envId = component_id_1.ComponentID.fromString((_a = component.environment) === null || _a === void 0 ? void 0 : _a.id);
|
|
59
59
|
const envTooltip = (react_1.default.createElement(base_react_navigation_link_1.Link, { className: component_view_module_scss_1.default.envLink, href: component_modules_component_url_1.ComponentUrl.toUrl(envId, {
|
|
60
60
|
includeVersion: true,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"component-view.js","sourceRoot":"","sources":["../../../component-tree/component-view/component-view.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEA,oFAAwE;AACxE,gEAAoD;AACpD,0FAAyE;AACzE,4DAAoC;AACpC,wDAAoD;
|
|
1
|
+
{"version":3,"file":"component-view.js","sourceRoot":"","sources":["../../../component-tree/component-view/component-view.tsx"],"names":[],"mappings":"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"}
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,41 +1,41 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teambit/ui-foundation.ui.side-bar",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.875",
|
|
4
4
|
"homepage": "https://bit.cloud/teambit/ui-foundation/ui/side-bar",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"componentId": {
|
|
7
7
|
"scope": "teambit.ui-foundation",
|
|
8
8
|
"name": "ui/side-bar",
|
|
9
|
-
"version": "0.0.
|
|
9
|
+
"version": "0.0.875"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"classnames": "2.2.6",
|
|
13
|
-
"react-animate-height": "2.0.23",
|
|
14
13
|
"core-js": "^3.0.0",
|
|
14
|
+
"react-animate-height": "2.0.23",
|
|
15
15
|
"@teambit/base-react.navigation.link": "2.0.27",
|
|
16
16
|
"@teambit/base-ui.graph.tree.indent": "1.0.0",
|
|
17
17
|
"@teambit/base-ui.graph.tree.inflate-paths": "1.0.0",
|
|
18
|
+
"@teambit/base-ui.graph.tree.recursive-tree": "1.0.0",
|
|
18
19
|
"@teambit/base-ui.graph.tree.tree-context": "1.0.0",
|
|
19
|
-
"@teambit/design.ui.tree": "0.0.15",
|
|
20
20
|
"@teambit/base-ui.theme.colors": "1.0.0",
|
|
21
|
-
"@teambit/base-ui.graph.tree.recursive-tree": "1.0.0",
|
|
22
21
|
"@teambit/component-id": "1.2.0",
|
|
22
|
+
"@teambit/component.modules.component-url": "0.0.167",
|
|
23
23
|
"@teambit/component.ui.deprecation-icon": "0.0.509",
|
|
24
24
|
"@teambit/design.ui.tooltip": "0.0.361",
|
|
25
|
-
"@teambit/
|
|
26
|
-
"@teambit/lanes.ui.models.lanes-model": "0.0.212",
|
|
27
|
-
"@teambit/component.modules.component-url": "0.0.167",
|
|
25
|
+
"@teambit/design.ui.tree": "0.0.15",
|
|
28
26
|
"@teambit/envs.ui.env-icon": "0.0.505",
|
|
29
|
-
"@teambit/
|
|
27
|
+
"@teambit/evangelist.elements.icon": "1.0.2",
|
|
28
|
+
"@teambit/lanes.hooks.use-lanes": "0.0.258",
|
|
29
|
+
"@teambit/lanes.ui.models.lanes-model": "0.0.212"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@
|
|
32
|
+
"@babel/runtime": "7.20.0",
|
|
33
33
|
"@types/classnames": "2.2.11",
|
|
34
|
+
"@types/jest": "^26.0.0",
|
|
34
35
|
"@types/mocha": "9.1.0",
|
|
35
36
|
"@types/node": "12.20.4",
|
|
37
|
+
"@types/react": "^17.0.8",
|
|
36
38
|
"@types/react-dom": "^17.0.5",
|
|
37
|
-
"@types/jest": "^26.0.0",
|
|
38
|
-
"@babel/runtime": "7.20.0",
|
|
39
39
|
"@types/testing-library__jest-dom": "5.9.5"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
@@ -43,8 +43,6 @@
|
|
|
43
43
|
"react-dom": "^16.8.0 || ^17.0.0"
|
|
44
44
|
},
|
|
45
45
|
"license": "Apache-2.0",
|
|
46
|
-
"optionalDependencies": {},
|
|
47
|
-
"peerDependenciesMeta": {},
|
|
48
46
|
"private": false,
|
|
49
47
|
"engines": {
|
|
50
48
|
"node": ">=12.22.0"
|
|
@@ -63,4 +61,4 @@
|
|
|
63
61
|
"angular",
|
|
64
62
|
"angular-components"
|
|
65
63
|
]
|
|
66
|
-
}
|
|
64
|
+
}
|