mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 11:46:46 +00:00
fix(plugin-formula): fix read-pretty component when used in association field (#1957)
This commit is contained in:
parent
3f4cd86465
commit
cf4e91b0f2
@ -1,6 +1,6 @@
|
||||
import { onFormValuesChange } from '@formily/core';
|
||||
import { useFieldSchema, useFormEffects, useForm } from '@formily/react';
|
||||
import { Checkbox, DatePicker, InputNumber, Input as InputString, useCollection } from '@nocobase/client';
|
||||
import { Checkbox, DatePicker, InputNumber, Input as InputString, useCollection, useCollectionManager } from '@nocobase/client';
|
||||
import { Evaluator, evaluators } from '@nocobase/evaluators/client';
|
||||
import { Registry, toFixedByStep } from '@nocobase/utils/client';
|
||||
import cloneDeep from 'lodash/cloneDeep';
|
||||
@ -18,15 +18,29 @@ const TypedComponents = {
|
||||
string: InputString,
|
||||
};
|
||||
|
||||
function useTargetCollectionField() {
|
||||
const fieldSchema = useFieldSchema();
|
||||
const providedCollection = useCollection();
|
||||
const { getCollection, getCollectionField } = useCollectionManager();
|
||||
const paths = (fieldSchema.name as string).split('.');
|
||||
let collection = providedCollection;
|
||||
for (let i = 0; i < paths.length - 1; i++) {
|
||||
const field = collection.getField(paths[i]);
|
||||
collection = getCollection(field.target);
|
||||
}
|
||||
return getCollectionField(`${collection.name}.${paths[paths.length - 1]}`);
|
||||
}
|
||||
|
||||
export const Result = (props) => {
|
||||
const { value, ...others } = props;
|
||||
const { getField } = useCollection();
|
||||
const fieldSchema = useFieldSchema();
|
||||
const options = getField(fieldSchema.name as string);
|
||||
const { dataType, expression, engine = 'math.js' } = options || {};
|
||||
const { name, dataType, expression, engine = 'math.js' } = useTargetCollectionField() ?? {};
|
||||
const { evaluate } = (evaluators as Registry<Evaluator>).get(engine);
|
||||
useFormEffects(() => {
|
||||
onFormValuesChange((form) => {
|
||||
if ((fieldSchema.name as string).indexOf('.') >= 0) {
|
||||
return;
|
||||
}
|
||||
const scope = cloneDeep(form.values);
|
||||
let v;
|
||||
try {
|
||||
@ -38,16 +52,11 @@ export const Result = (props) => {
|
||||
if ((v == null && value == null) || JSON.stringify(v) === JSON.stringify(value)) {
|
||||
return;
|
||||
}
|
||||
// console.log(options.name, v, value, props.defaultValue);
|
||||
form.setValuesIn(options.name, v);
|
||||
form.setValuesIn(name, v);
|
||||
});
|
||||
});
|
||||
const Component = TypedComponents[dataType] ?? InputString;
|
||||
return <Component {...others} value={dataType === 'double' ? toFixedByStep(value, props.step) : value} />;
|
||||
};
|
||||
|
||||
Result.ReadPretty = function ReadPretty(props) {
|
||||
return props.value ?? null;
|
||||
};
|
||||
|
||||
export default Result;
|
||||
|
@ -6,6 +6,6 @@ import Result from './Result';
|
||||
export const Formula = () => null;
|
||||
|
||||
Formula.Expression = Expression;
|
||||
Formula.Result = connect(Result, mapReadPretty(Result.ReadPretty));
|
||||
Formula.Result = connect(Result);
|
||||
|
||||
export default Formula;
|
||||
|
@ -67,7 +67,7 @@ export default {
|
||||
type: 'formula',
|
||||
// name,
|
||||
uiSchema: {
|
||||
type: 'number',
|
||||
type: 'string',
|
||||
// title,
|
||||
'x-component': 'Formula.Result',
|
||||
'x-component-props': {
|
||||
|
Loading…
Reference in New Issue
Block a user