feat(data-mapping): add new useage (#1403)
Reviewed-on: daoyoucloud/tachybase#1403 Reviewed-by: sealday <zhanglin@daoyoucloud.com> Co-authored-by: bai.zixv <bai.zixv@foxmail.com> Co-committed-by: bai.zixv <bai.zixv@foxmail.com>
This commit is contained in:
parent
e0812e9fc3
commit
c80060b00e
@ -3,7 +3,7 @@ import { connect } from '@tachybase/schema';
|
|||||||
|
|
||||||
import Editor, { loader } from '@monaco-editor/react';
|
import Editor, { loader } from '@monaco-editor/react';
|
||||||
|
|
||||||
loader.config({ paths: { vs: 'https://cdn.jsdelivr.net/npm/monaco-editor@0.50.0/min/vs' } });
|
loader.config({ paths: { vs: 'https://unpkg.com/monaco-editor@0.50.0/min/vs' } });
|
||||||
|
|
||||||
export const CodeMirror = connect(({ value, onChange, ...otherProps }) => {
|
export const CodeMirror = connect(({ value, onChange, ...otherProps }) => {
|
||||||
return (
|
return (
|
||||||
|
@ -20,8 +20,17 @@ export class DataMappingInstruction extends Instruction {
|
|||||||
}
|
}
|
||||||
case 1: {
|
case 1: {
|
||||||
// 单数据源, 平铺为单对象; 忽略keyName
|
// 单数据源, 平铺为单对象; 忽略keyName
|
||||||
const source = sourceArray[0]['sourcePath'];
|
const keyName = sourceArray[0]['keyName'];
|
||||||
data = processor.getParsedValue(source, node.id);
|
const sourcePath = sourceArray[0]['sourcePath'];
|
||||||
|
const rawData = processor.getParsedValue(sourcePath, node.id);
|
||||||
|
// NOTE: 后来想了想, 发现还是统一用法比较好. 所以提供统一的用法, 同时保留原本的用法; 如果提供了keyName 就是统一的用法, 如果没有, 就是平铺.
|
||||||
|
if (keyName) {
|
||||||
|
data = {
|
||||||
|
[keyName]: rawData,
|
||||||
|
};
|
||||||
|
} else {
|
||||||
|
data = rawData;
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
default: {
|
default: {
|
||||||
|
Loading…
Reference in New Issue
Block a user