Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commita94802e

Browse files
fixed icons auto/fixed size for asset library icon
1 parentb4de9e8 commita94802e

File tree

1 file changed

+30
-8
lines changed

1 file changed

+30
-8
lines changed

‎client/packages/lowcoder/src/comps/comps/iconComp.tsx‎

Lines changed: 30 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import{useEffect,useRef,useState}from"react";
1+
import{useEffect,useMemo,useRef,useState}from"react";
22
importstyled,{css}from"styled-components";
33
import{RecordConstructorToView}from"lowcoder-core";
44
import{styleControl}from"comps/controls/styleControl";
@@ -34,8 +34,10 @@ import { AssetType, IconscoutControl } from "@lowcoder-ee/comps/controls/iconsco
3434
import{dropdownControl}from"../controls/dropdownControl";
3535

3636
constContainer=styled.div<{
37+
$sourceMode:string;
3738
$style:IconStyleType|undefined;
38-
$animationStyle:AnimationStyleType}>`
39+
$animationStyle:AnimationStyleType;
40+
}>`
3941
display: flex;
4042
align-items: center;
4143
justify-content: center;
@@ -59,6 +61,15 @@ const Container = styled.div<{
5961
pointer-events: auto;
6062
}
6163
`}
64+
${(props)=>props.$sourceMode==='asset-library'&&`
65+
img {
66+
max-width: 100%;
67+
max-height: 100%;
68+
width: 100%;
69+
height: 100%;
70+
object-fit: contain;
71+
}
72+
`}
6273
`;
6374

6475
constEventOptions=[clickEvent]asconst;
@@ -101,17 +112,28 @@ const IconView = (props: RecordConstructorToView<typeof childrenMap>) => {
101112
onResize,
102113
});
103114

115+
conststyle=useMemo(()=>{
116+
if(props.sourceMode==='standard'){
117+
return{
118+
fontSize:props.autoHeight
119+
?`${height<width ?height :width}px`
120+
:props.iconSize,
121+
background:props.style.background,
122+
}
123+
}
124+
return{
125+
width:props.autoHeight ?'' :props.iconSize,
126+
background:props.style.background,
127+
}
128+
},[width,height,props.autoHeight,props.iconSize,props.sourceMode,props.style.background]);
129+
104130
return(
105131
<Container
106132
ref={conRef}
107133
$style={props.style}
134+
$sourceMode={props.sourceMode}
108135
$animationStyle={props.animationStyle}
109-
style={{
110-
fontSize:props.autoHeight
111-
?`${height<width ?height :width}px`
112-
:props.iconSize,
113-
background:props.style.background,
114-
}}
136+
style={style}
115137
onClick={()=>props.onEvent("click")}
116138
>
117139
{props.sourceMode==='standard'

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp