Skip to content

Commit f95735e

Browse files
committed
1 parent d8ae7ff commit f95735e

File tree

7 files changed

+83
-20
lines changed

7 files changed

+83
-20
lines changed

packages/eez-studio-ui/_stylesheets/project-editor.less

+8
Original file line numberDiff line numberDiff line change
@@ -502,6 +502,14 @@
502502
overflow: hidden;
503503
white-space: nowrap;
504504
text-overflow: ellipsis;
505+
506+
& > img,
507+
& > svg {
508+
flex-shrink: 0;
509+
height: 20px;
510+
object-fit: contain;
511+
margin-right: 4px;
512+
}
505513
}
506514

507515
.EezStudio_PropertiesPanel_Body {

packages/project-editor/core/object.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,11 @@ export interface ClassInfo {
381381
) => IEezObject | PropertyInfo | undefined;
382382

383383
icon?: React.ReactNode;
384-
getIcon?: (object: IEezObject) => React.ReactNode;
384+
getIcon?: (
385+
object?: IEezObject,
386+
componentClass?: IObjectClassInfo,
387+
projectStore?: ProjectStore
388+
) => React.ReactNode | undefined;
385389

386390
componentHeaderColor?:
387391
| ((

packages/project-editor/flow/components/actions/index.tsx

+25-14
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,8 @@ import {
119119
import { makeEndInstruction } from "project-editor/flow/expression/instructions";
120120
import { ProjectEditor } from "project-editor/project-editor-interface";
121121
import {
122+
CALL_ACTION_ICON,
123+
CALL_NATIVE_ACTION_ICON,
122124
CLIPBOARD_WRITE_ICON,
123125
LANGUAGE_ICON,
124126
LOG_ICON,
@@ -2096,20 +2098,29 @@ export class CallActionActionComponent extends ActionComponent {
20962098
}
20972099
return component.action;
20982100
},
2099-
icon: (
2100-
<svg
2101-
viewBox="0 0 24 24"
2102-
strokeWidth="2"
2103-
stroke="currentColor"
2104-
fill="none"
2105-
strokeLinecap="round"
2106-
strokeLinejoin="round"
2107-
>
2108-
<path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
2109-
<path d="M7 4a12.25 12.25 0 0 0 0 16"></path>
2110-
<path d="M17 4a12.25 12.25 0 0 1 0 16"></path>
2111-
</svg>
2112-
),
2101+
icon: CALL_ACTION_ICON,
2102+
getIcon: (
2103+
object?: CallActionActionComponent,
2104+
componentClass?: IObjectClassInfo,
2105+
projectStore?: ProjectStore
2106+
) => {
2107+
let actionName;
2108+
if (object) {
2109+
actionName = object.action;
2110+
projectStore = ProjectEditor.getProjectStore(object);
2111+
} else if (componentClass) {
2112+
actionName = componentClass.props?.action;
2113+
}
2114+
2115+
if (projectStore && actionName) {
2116+
const action = findAction(projectStore.project, actionName);
2117+
if (action && action.implementationType == "native") {
2118+
return CALL_NATIVE_ACTION_ICON;
2119+
}
2120+
}
2121+
2122+
return undefined;
2123+
},
21132124
componentHeaderColor: (
21142125
object?: CallActionActionComponent,
21152126
componentClass?: IObjectClassInfo,

packages/project-editor/flow/components/components-registry.ts

+11-1
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,17 @@ export function getComponentVisualData(
227227
projectStore: ProjectStore | undefined
228228
) {
229229
const classInfo = componentClass.objectClass.classInfo;
230-
let icon = classInfo.icon as any;
230+
231+
let icon;
232+
233+
if (classInfo.getIcon) {
234+
icon = classInfo.getIcon(undefined, componentClass, projectStore);
235+
}
236+
237+
if (icon == undefined) {
238+
icon = classInfo.icon as any;
239+
}
240+
231241
let label = componentClass.displayName
232242
? componentClass.displayName
233243
: classInfo.componentPaletteLabel ||

packages/project-editor/project/ui/PropertiesPanel.tsx

+5
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import { getParent } from "project-editor/core/object";
77
import {
88
EezValueObject,
99
getAncestorOfType,
10+
getObjectIcon,
1011
getPropertiesPanelLabel,
1112
isObjectExists
1213
} from "project-editor/store";
@@ -44,6 +45,8 @@ export const PropertiesPanel = observer(
4445
)
4546
.filter(object => isObjectExists(object));
4647

48+
let icon = null;
49+
4750
if (objects.length == 0) {
4851
title = "Nothing selected";
4952
} else if (objects.length == 1) {
@@ -52,6 +55,7 @@ export const PropertiesPanel = observer(
5255
object = getParent(object);
5356
}
5457

58+
icon = getObjectIcon(object);
5559
title = getPropertiesPanelLabel(object);
5660
} else {
5761
title = "Multiple objects selected";
@@ -70,6 +74,7 @@ export const PropertiesPanel = observer(
7074
return (
7175
<div className="EezStudio_PropertiesPanel">
7276
<div className="EezStudio_PropertiesPanel_Header">
77+
{typeof icon === "string" ? <img src={icon} /> : icon}
7378
{title}
7479
</div>
7580
<div className="EezStudio_PropertiesPanel_Body">

packages/project-editor/store/helper.ts

+7-4
Original file line numberDiff line numberDiff line change
@@ -323,12 +323,15 @@ export function getClassInfo(object: IEezObject): ClassInfo {
323323
export function getObjectIcon(object: IEezObject) {
324324
const classInfo = getClassInfo(object);
325325

326-
if (classInfo.icon) {
327-
return classInfo.icon;
326+
if (classInfo.getIcon) {
327+
const icon = classInfo.getIcon(object);
328+
if (icon) {
329+
return icon;
330+
}
328331
}
329332

330-
if (classInfo.getIcon) {
331-
return classInfo.getIcon(object);
333+
if (classInfo.icon) {
334+
return classInfo.icon;
332335
}
333336

334337
return undefined;

packages/project-editor/ui-components/icons.tsx

+22
Original file line numberDiff line numberDiff line change
@@ -3527,3 +3527,25 @@ export const RECORD_VIDEO_ICON: any = (
35273527
<path d="m13.846 9.692c2.293.004 4.15 1.862 4.154 4.154v.004c0 2.294-1.86 4.154-4.154 4.154s-4.154-1.86-4.154-4.154c0-1.148.466-2.187 1.218-2.939.728-.753 1.747-1.22 2.876-1.22h.063-.003zm10.154-6h.055c1.002 0 1.908.414 2.554 1.081l.001.001c.668.647 1.082 1.553 1.082 2.555v.058-.003 12.924c-.001 2.039-1.653 3.691-3.692 3.692h-20.308c-2.039-.001-3.691-1.653-3.692-3.692v-12.923c0-.016 0-.036 0-.055 0-1.002.414-1.908 1.081-2.554l.001-.001c.647-.668 1.553-1.082 2.555-1.082h.058-.003 3.23l.735-1.962c.212-.507.557-.922.993-1.213l.01-.006c.411-.311.929-.501 1.49-.512h.002 7.385c.564.011 1.081.201 1.499.517l-.006-.005c.445.297.791.712.996 1.201l.007.018.735 1.962zm-10.154 16.616c.027 0 .059.001.091.001 1.755 0 3.341-.727 4.472-1.896l.002-.002c1.171-1.133 1.897-2.719 1.897-4.474 0-.032 0-.064-.001-.096v.005c0-.027.001-.06.001-.092 0-1.755-.727-3.341-1.896-4.472l-.002-.002c-1.167-1.172-2.781-1.897-4.565-1.897s-3.398.725-4.565 1.896c-1.171 1.133-1.897 2.719-1.897 4.474 0 .032 0 .064.001.096v-.005c0 .028-.001.061-.001.094 0 1.755.726 3.34 1.894 4.471l.002.002c1.133 1.171 2.719 1.897 4.474 1.897.033 0 .065 0 .097-.001h-.005z" />
35283528
</svg>
35293529
);
3530+
3531+
export const CALL_ACTION_ICON: any = (
3532+
<svg
3533+
viewBox="0 0 24 24"
3534+
strokeWidth="2"
3535+
stroke="currentColor"
3536+
fill="none"
3537+
strokeLinecap="round"
3538+
strokeLinejoin="round"
3539+
>
3540+
<path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
3541+
<path d="M7 4a12.25 12.25 0 0 0 0 16"></path>
3542+
<path d="M17 4a12.25 12.25 0 0 1 0 16"></path>
3543+
</svg>
3544+
);
3545+
3546+
export const CALL_NATIVE_ACTION_ICON: any = (
3547+
<svg viewBox="0 0 24 24">
3548+
<path fill="none" d="M0 0h24v24H0z" />
3549+
<path d="M4 18v-3.7a1.5 1.5 0 0 0-1.5-1.5H2v-1.6h.5A1.5 1.5 0 0 0 4 9.7V6a3 3 0 0 1 3-3h1v2H7a1 1 0 0 0-1 1v4.1A2 2 0 0 1 4.626 12 2 2 0 0 1 6 13.9V18a1 1 0 0 0 1 1h1v2H7a3 3 0 0 1-3-3m16-3.7V18a3 3 0 0 1-3 3h-1v-2h1a1 1 0 0 0 1-1v-4.1a2 2 0 0 1 1.374-1.9A2 2 0 0 1 18 10.1V6a1 1 0 0 0-1-1h-1V3h1a3 3 0 0 1 3 3v3.7a1.5 1.5 0 0 0 1.5 1.5h.5v1.6h-.5a1.5 1.5 0 0 0-1.5 1.5" />
3550+
</svg>
3551+
);

0 commit comments

Comments
 (0)