소스 검색

feat: 统一缩进

nobody 2 년 전
부모
커밋
27613cb1a4
3개의 변경된 파일9개의 추가작업 그리고 1개의 파일을 삭제
  1. 9 0
      packages/yili-dag/src/ScriptEditor.tsx
  2. 0 1
      packages/yili-dag/src/ScriptNodeInfo.tsx
  3. 0 0
      untitled.dag

+ 9 - 0
packages/yili-dag/src/ScriptEditor.tsx

@@ -117,6 +117,15 @@ export default class ScriptEditor extends React.Component<any, any> {
           error_list: [],
         }
       },
+      indentUnit: 4,
+      tabSize: 4,
+      extraKeys: {
+        Tab: (cm) => {
+          const indentUnit = cm.getOption("indentUnit") as number
+          var spaces = Array(indentUnit + 1).join(" ");
+          cm.replaceSelection(spaces);
+        }
+      }
     })
     editor.setSize(null, '100%')
     editor.setValue(this.props.scriptText)

+ 0 - 1
packages/yili-dag/src/ScriptNodeInfo.tsx

@@ -183,7 +183,6 @@ export default class ScriptNodeInfo extends React.Component<any, any> {
       return item.group === 'bottom' ? pre.concat(item) : pre
     }, [])
     currentOutputPorts.forEach((item: any) => {
-      console.log('item:', item);
       const index = outputData.findIndex((output: any) => output.outputVar === item.id)
       if (index === -1) {
         node.removePort(item.id)

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
untitled.dag


이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.