@@ -119,6 +119,8 @@ import {
119
119
import { makeEndInstruction } from "project-editor/flow/expression/instructions" ;
120
120
import { ProjectEditor } from "project-editor/project-editor-interface" ;
121
121
import {
122
+ CALL_ACTION_ICON ,
123
+ CALL_NATIVE_ACTION_ICON ,
122
124
CLIPBOARD_WRITE_ICON ,
123
125
LANGUAGE_ICON ,
124
126
LOG_ICON ,
@@ -2096,20 +2098,29 @@ export class CallActionActionComponent extends ActionComponent {
2096
2098
}
2097
2099
return component . action ;
2098
2100
} ,
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
+ } ,
2113
2124
componentHeaderColor : (
2114
2125
object ?: CallActionActionComponent ,
2115
2126
componentClass ?: IObjectClassInfo ,
0 commit comments