commit
e044d389f0
@ -3,18 +3,16 @@ import { connect, mapReadPretty, useFieldSchema, useFormEffects } from '@formily
|
|||||||
import { InputNumber } from 'antd';
|
import { InputNumber } from 'antd';
|
||||||
import _ from 'lodash';
|
import _ from 'lodash';
|
||||||
import * as math from 'mathjs';
|
import * as math from 'mathjs';
|
||||||
import React, { useState } from 'react';
|
import React from 'react';
|
||||||
import { useCollection } from '../../../collection-manager/hooks';
|
import { useCollection } from '../../../collection-manager/hooks';
|
||||||
import { ReadPretty } from '../input-number/ReadPretty';
|
import { ReadPretty } from '../input-number/ReadPretty';
|
||||||
|
|
||||||
const AntdCompute = (props) => {
|
const AntdCompute = (props) => {
|
||||||
const { value, onChange, step } = props;
|
const { onChange, ...others } = props;
|
||||||
// const { expression } = useCollectionField();
|
|
||||||
const { getField } = useCollection();
|
const { getField } = useCollection();
|
||||||
const fieldSchema = useFieldSchema();
|
const fieldSchema = useFieldSchema();
|
||||||
const options = getField(fieldSchema.name);
|
const options = getField(fieldSchema.name);
|
||||||
const { expression } = options;
|
const { expression } = options;
|
||||||
const [computeValue, setComputeValue] = useState(value);
|
|
||||||
|
|
||||||
useFormEffects(() => {
|
useFormEffects(() => {
|
||||||
onFormValuesChange((form) => {
|
onFormValuesChange((form) => {
|
||||||
@ -24,17 +22,14 @@ const AntdCompute = (props) => {
|
|||||||
result = math.evaluate(expression, scope);
|
result = math.evaluate(expression, scope);
|
||||||
result = math.round(result, 9);
|
result = math.round(result, 9);
|
||||||
} catch {}
|
} catch {}
|
||||||
if (result) {
|
if (onChange) {
|
||||||
setComputeValue(result);
|
onChange(result);
|
||||||
if (onChange) {
|
|
||||||
onChange(result);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<InputNumber readOnly value={computeValue} stringMode={true} step={step} />
|
<InputNumber {...others} readOnly stringMode={true} />
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user