mirror of
https://gitee.com/baidu/amis.git
synced 2024-12-02 20:18:03 +08:00
amis-saas-6892 [Feature] 编辑器fx 交互优化
Change-Id: I8024b4c76232cc8c2429fc83838cd9bef6bf01f0
This commit is contained in:
parent
6bc663f2c3
commit
ce760b299e
@ -13,7 +13,14 @@ import isString from 'lodash/isString';
|
|||||||
import isEqual from 'lodash/isEqual';
|
import isEqual from 'lodash/isEqual';
|
||||||
import omit from 'lodash/omit';
|
import omit from 'lodash/omit';
|
||||||
import cx from 'classnames';
|
import cx from 'classnames';
|
||||||
import {FormItem, Button, InputBox, Icon, ResultBox} from 'amis';
|
import {
|
||||||
|
FormItem,
|
||||||
|
Button,
|
||||||
|
InputBox,
|
||||||
|
Icon,
|
||||||
|
ResultBox,
|
||||||
|
TooltipWrapper
|
||||||
|
} from 'amis';
|
||||||
import {FormulaExec, isExpression} from 'amis';
|
import {FormulaExec, isExpression} from 'amis';
|
||||||
import {PickerContainer, relativeValueRe} from 'amis';
|
import {PickerContainer, relativeValueRe} from 'amis';
|
||||||
import {FormulaEditor} from 'amis-ui/lib/components/formula/Editor';
|
import {FormulaEditor} from 'amis-ui/lib/components/formula/Editor';
|
||||||
@ -571,21 +578,34 @@ export default class FormulaControl extends React.Component<
|
|||||||
)}
|
)}
|
||||||
{/* 非简单模式 &(表达式 或 日期快捷)*/}
|
{/* 非简单模式 &(表达式 或 日期快捷)*/}
|
||||||
{!simple && (isExpr || this.hasDateShortcutkey(value)) && (
|
{!simple && (isExpr || this.hasDateShortcutkey(value)) && (
|
||||||
<ResultBox
|
<TooltipWrapper
|
||||||
className={cx(
|
trigger="hover"
|
||||||
'ae-editor-FormulaControl-ResultBox',
|
placement="top"
|
||||||
isError ? 'is-error' : ''
|
style={{fontSize: '12px'}}
|
||||||
)}
|
tooltip={{
|
||||||
allowInput={false}
|
tooltipTheme: 'dark',
|
||||||
clearable={true}
|
mouseLeaveDelay: 20,
|
||||||
value={value}
|
content: value
|
||||||
result={{html: '已配置'}}
|
|
||||||
itemRender={this.renderFormulaValue}
|
|
||||||
onChange={this.handleInputChange}
|
|
||||||
onResultChange={() => {
|
|
||||||
this.handleInputChange(undefined);
|
|
||||||
}}
|
}}
|
||||||
/>
|
>
|
||||||
|
<div className="ae-editor-FormulaControl-tooltipBox">
|
||||||
|
<ResultBox
|
||||||
|
className={cx(
|
||||||
|
'ae-editor-FormulaControl-ResultBox',
|
||||||
|
isError ? 'is-error' : ''
|
||||||
|
)}
|
||||||
|
allowInput={false}
|
||||||
|
clearable={true}
|
||||||
|
value={value}
|
||||||
|
result={{html: '已配置'}}
|
||||||
|
itemRender={this.renderFormulaValue}
|
||||||
|
onChange={this.handleInputChange}
|
||||||
|
onResultChange={() => {
|
||||||
|
this.handleInputChange(undefined);
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</TooltipWrapper>
|
||||||
)}
|
)}
|
||||||
<PickerContainer
|
<PickerContainer
|
||||||
showTitle={false}
|
showTitle={false}
|
||||||
@ -634,11 +654,6 @@ export default class FormulaControl extends React.Component<
|
|||||||
</Button>
|
</Button>
|
||||||
)}
|
)}
|
||||||
</PickerContainer>
|
</PickerContainer>
|
||||||
{isExpr && !isError && (
|
|
||||||
<div className="desc-msg info-msg" title={value}>
|
|
||||||
{value}
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
{isError && (
|
{isError && (
|
||||||
<div className="desc-msg error-msg">
|
<div className="desc-msg error-msg">
|
||||||
{isLoop ? '当前表达式异常(存在循环引用)' : '数值类型不匹配'}
|
{isLoop ? '当前表达式异常(存在循环引用)' : '数值类型不匹配'}
|
||||||
|
Loading…
Reference in New Issue
Block a user