diff --git a/packages/demo/build.plugin.js b/packages/demo/build.plugin.js
index 50ac34ddd..6c89f05c1 100644
--- a/packages/demo/build.plugin.js
+++ b/packages/demo/build.plugin.js
@@ -16,7 +16,7 @@ module.exports = ({ onGetWebpackConfig }) => {
.plugin('MonacoWebpackPlugin')
// 第一项为具体插件,第二项为插件参数
.use(new MonacoWebpackPlugin({
- languages:["javascript","css","json"]
+ languages:["typescript","css","json"]
}), []);
config.plugins.delete('hot');
diff --git a/packages/demo/src/vision/index.ts b/packages/demo/src/vision/index.ts
index e01b724c6..3ab9ef186 100644
--- a/packages/demo/src/vision/index.ts
+++ b/packages/demo/src/vision/index.ts
@@ -11,6 +11,7 @@ import PageHistoryPane from '@ali/ve-page-history-pane';
// import I18nPane from '@ali/ve-i18n-pane';
import I18nManagePane from '@ali/ve-i18n-manage-pane';
import ActionPane from '@ali/ve-action-pane';
+import SourceEditor from '@ali/lowcode-plugin-source-editor';
import fetchContext from '@ali/vu-legao-design-fetch-context';
import EventBindDialog from '@ali/lowcode-plugin-event-bind-dialog';
import loadUrls from './loader';
@@ -95,16 +96,43 @@ function initDemoPanes() {
type: 'Widget',
content: EventBindDialog,
});
- skeleton.add({
- area: 'leftArea',
- name: 'icon1',
- type: 'Dock',
- props: {
- align: 'bottom',
- icon: 'set',
- description: '设置'
- },
- });
+
+ // skeleton.add({
+ // area: 'left',
+ // name: 'sourceEditor',
+ // type: "PanelDock",
+ // content: SourceEditor,
+ // props: {
+ // align: undefined,
+ // description: "动作面板",
+ // onDestroy: undefined,
+ // icon: 'set',
+ // onInit: undefined
+ // },
+ // panelProps:{
+ // height: 300,
+ // help: undefined,
+ // hideTitleBar: true,
+ // maxHeight: 800,
+ // maxWidth: 1200,
+ // title: "动作面板",
+ // width: 600
+ // }
+
+ // });
+
+ // skeleton.add({
+ // area: 'leftArea',
+ // name: 'icon1',
+ // type: 'PanelDock',
+ // props: {
+ // align: 'bottom',
+ // icon: 'set',
+ // description: '设置'
+ // },
+ // });
+
+
skeleton.add({
area: 'leftArea',
name: 'icon2',
@@ -129,6 +157,8 @@ function initDemoPanes() {
children: '发布',
}),
});
+
+
skeleton.add({
area: 'topArea',
type: 'Dock',
@@ -322,6 +352,7 @@ function initActionPane() {
enableHeaderTip: true,
};
+
Panes.add(ActionPane, {
props,
});
diff --git a/packages/designer/src/builtin-simulator/bem-tools/border-selecting.tsx b/packages/designer/src/builtin-simulator/bem-tools/border-selecting.tsx
index 209fce326..33303c2fc 100644
--- a/packages/designer/src/builtin-simulator/bem-tools/border-selecting.tsx
+++ b/packages/designer/src/builtin-simulator/bem-tools/border-selecting.tsx
@@ -15,6 +15,7 @@ import { ActionContentObject, isActionContentObject } from '@ali/lowcode-types';
import { BuiltinSimulatorHost } from '../host';
import { OffsetObserver } from '../../designer';
import { Node } from '../../document';
+import NodeSelector from '../node-selector';
@observer
export class BorderSelectingInstance extends Component<{
@@ -68,7 +69,6 @@ class Toolbar extends Component<{ observed: OffsetObserver }> {
let style: any;
if (observed.top > SPACE_HEIGHT) {
style = {
- right: Math.max(-BORDER, observed.right - width - BORDER),
top: -SPACE_HEIGHT,
height: BAR_HEIGHT,
};
@@ -76,15 +76,18 @@ class Toolbar extends Component<{ observed: OffsetObserver }> {
style = {
bottom: -SPACE_HEIGHT,
height: BAR_HEIGHT,
- right: Math.max(-BORDER, observed.right - width - BORDER),
};
} else {
style = {
height: BAR_HEIGHT,
top: Math.max(MARGIN, MARGIN - observed.top),
- right: Math.max(MARGIN, MARGIN + observed.right - width),
};
}
+ if (observed.width < 140) {
+ style.left = Math.max(-BORDER, observed.left - width - BORDER);
+ } else {
+ style.right = Math.max(-BORDER, observed.right - width - BORDER);
+ }
const { node } = observed;
const actions: ReactNodeArray = [];
node.componentMeta.availableActions.forEach((action) => {
@@ -100,6 +103,7 @@ class Toolbar extends Component<{ observed: OffsetObserver }> {
return (
{actions}
+
);
}
diff --git a/packages/designer/src/builtin-simulator/bem-tools/borders.less b/packages/designer/src/builtin-simulator/bem-tools/borders.less
index 7effde36a..a2469519c 100644
--- a/packages/designer/src/builtin-simulator/bem-tools/borders.less
+++ b/packages/designer/src/builtin-simulator/bem-tools/borders.less
@@ -30,7 +30,8 @@
}
}
- &-action {
+ &-action,
+ .ve-icon-button.ve-action-save {
box-sizing: border-box;
cursor: pointer;
height: 20px;
diff --git a/packages/designer/src/builtin-simulator/host.ts b/packages/designer/src/builtin-simulator/host.ts
index 0b8ea1b56..04aad80ad 100644
--- a/packages/designer/src/builtin-simulator/host.ts
+++ b/packages/designer/src/builtin-simulator/host.ts
@@ -77,8 +77,8 @@ export class BuiltinSimulatorHost implements ISimulatorHost {
+ state: IState = {
+ parentNodes: [],
+ };
+
+ componentDidMount() {
+ const parentNodes = this.getParentNodes(this.props.node);
+ this.setState({
+ parentNodes,
+ });
+ }
+
+ // 获取节点的父级节点(最多获取5层)
+ getParentNodes = (node: Node) => {
+ const parentNodes = [];
+ let currentNode: UnionNode = node;
+
+ while (currentNode && parentNodes.length < 5) {
+ currentNode = currentNode.getParent();
+ if (currentNode) {
+ parentNodes.push(currentNode);
+ }
+ }
+ return parentNodes;
+ };
+
+ onSelect = (node: Node) => () => {
+ if (node && typeof node.select === 'function') {
+ node.select();
+ }
+ };
+ onMouseOver = (node: Node) => (_: any, flag = true) => {
+ if (node && typeof node.hover === 'function') {
+ node.hover(flag);
+ }
+ };
+ onMouseOut = (node: Node) => (_: any, flag = false) => {
+ if (node && typeof node.hover === 'function') {
+ node.hover(flag);
+ }
+ };
+ renderNodes = (node: Node) => {
+ const nodes = this.state.parentNodes || [];
+ const children = nodes.map((node, key) => {
+ return (
+
+ );
+ });
+ return children;
+ };
+
+ render() {
+ const { node } = this.props;
+ return (
+
+ }
+ triggerType="hover"
+ offset={[0, 2]}
+ >
+ {this.renderNodes(node)}
+
+
+ );
+ }
+}
diff --git a/packages/designer/src/simulator.ts b/packages/designer/src/simulator.ts
index fd3e7dcaf..0979ce40e 100644
--- a/packages/designer/src/simulator.ts
+++ b/packages/designer/src/simulator.ts
@@ -81,7 +81,10 @@ export interface ISimulatorHost extends ISensor {
// later:
// layout: ComponentName
// 获取区块代码, 通过 components 传递,可异步获取
+ // 设置 simulator Props
setProps(props: P): void;
+ // 设置单个 Prop
+ set(key: string, value: any): void;
setSuspense(suspensed: boolean): void;
diff --git a/packages/editor-skeleton/src/components/settings/settings-primary-pane.tsx b/packages/editor-skeleton/src/components/settings/settings-primary-pane.tsx
index 77c9eda0f..182a521b7 100644
--- a/packages/editor-skeleton/src/components/settings/settings-primary-pane.tsx
+++ b/packages/editor-skeleton/src/components/settings/settings-primary-pane.tsx
@@ -96,6 +96,7 @@ export class SettingsPrimaryPane extends Component<{ editor: Editor }> {
return (
{
- private monocoEditer: any;
- private editorCmd: any;
+ private monocoEditor: Object;
+ private editorCmd: Object;
+ private editorRef = React.createRef();
+ private editorNode: Object;
+ private editorParentNode: Object;
- state: any = {
+ state = {
isShow: false,
tabKey: TAB_KEY.JS_TAB,
};
- async componentWillMount() {
+ componentWillMount() {
const { editor } = this.props;
editor.on('leftPanel.show', (key: String) => {
- if (key === 'sourceEditor' && !this.monocoEditer) {
+ debugger;
+ if (key === 'sourceEditor' && !this.monocoEditor) {
this.setState({
isShow: true,
});
+
+
+ setTimeout(()=>{
+ this.editorNode = this.editorRef.current; //记录当前dom节点;
+ this.editorParentNode = this.editorNode.parentNode; //记录父节点;
+ console.log(this.editorNode);
+ },0)
}
});
@@ -73,57 +80,68 @@ export default class SourceEditor extends Component<{
});
// 定位函数
- editor.on('sourceEditor.focusByFunction',(params:FunctionEventParam)=>{
+ editor.on('sourceEditor.focusByFunction', (params: FunctionEventParam) => {
this.callEditorEvent('sourceEditor.focusByFunction', params);
this.openPluginPannel();
- })
+ });
- const designer = await editor.onceGot(Designer);
- // let schema = designer.project.getSchema();
- // mock data
- let schema = {
- componentTree: [
- {
- state: {
- // 初始state: 选填 对象类型/变量表达式
- btnText: 'submit', // 默认数据值: 选填 变量表达式
- },
- css: 'body {font-size: 12px;} .botton{widht:100px;color:#ff00ff}', //css样式描述: 选填
- lifeCycles: {
- //生命周期: 选填 对象类型
- didMount: {
- type: 'JSExpression',
- value: "function() {\n \t\tconsole.log('did mount');\n\t}",
+ //editor.once('designer.mount', (designer: Designer) => {
+ // let schema = designer.project.getSchema();
+ // mock data
+ let schema = {
+ componentTree: [
+ {
+ state: {
+ // 初始state: 选填 对象类型/变量表达式
+ btnText: 'submit', // 默认数据值: 选填 变量表达式
},
- willUnmount: {
- type: 'JSExpression',
- value: "function() {\n \t\tconsole.log('will umount');\n\t}",
+ css: 'body {font-size: 12px;} .botton{widht:100px;color:#ff00ff}', //css样式描述: 选填
+ lifeCycles: {
+ //生命周期: 选填 对象类型
+ didMount: {
+ type: 'JSExpression',
+ value: "function() {\n \t\tconsole.log('did mount');\n\t}",
+ },
+ willUnmount: {
+ type: 'JSExpression',
+ value: "function() {\n \t\tconsole.log('will umount');\n\t}",
+ },
+ },
+ methods: {
+ //自定义方法对象: 选填 对象类型
+ getData: {
+ //自定义方法: 选填 函数类型
+ type: 'JSExpression',
+ value: "function() {\n \t\tconsole.log('testFunc');\n \t}",
+ },
},
},
- methods: {
- //自定义方法对象: 选填 对象类型
- getData: {
- //自定义方法: 选填 函数类型
- type: 'JSExpression',
- value: "function() {\n \t\tconsole.log('testFunc');\n \t}",
- },
- },
- },
- ],
- };
+ ],
+ };
+
+ this.initCode(schema);
+ //});
+ }
+
+ componentDidMount(){
+
- this.initCode(schema);
}
openPluginPannel = () => {
- const { panel } = this.props;
- if (panel) {
- panel.show();
+ const { editor } = this.props;
+ // 判断面板是否处于激活状态
+ if (!editor.leftNav || editor.leftNav != 'sourceEditor') {
+ // 打开面板
+ editor.emit('leftNav.change', 'sourceEditor');
}
- }
+ };
- callEditorEvent = (eventName: any, params: any) => {
- if (!this.monocoEditer) {
+ /**
+ * 执行编辑器事件
+ */
+ callEditorEvent = (eventName, params) => {
+ if (!this.monocoEditor) {
this.editorCmd = {
eventName,
params,
@@ -131,16 +149,24 @@ export default class SourceEditor extends Component<{
return;
}
- if (eventName === 'sourceEditor.addFunction') {
- this.addFunction(params);
- }else if (eventName === 'sourceEditor.focusByFunction'){
- this.focusByFunctionName(params);
+ if (this.state.selectTab == TAB_KEY.CSS_TAB) {
+ this.setState({
+ selectTab: TAB_KEY.JS_TAB,
+ });
}
-
+ if (eventName === 'sourceEditor.addFunction') {
+ setTimeout(() => {
+ this.addFunction(params);
+ }, 100);
+ } else if (eventName === 'sourceEditor.focusByFunction') {
+ setTimeout(() => {
+ this.focusByFunctionName(params);
+ }, 100);
+ }
};
- initCode = (schema: any) => {
+ initCode = (schema) => {
let jsCode = js_beautify(transfrom.schema2Code(schema), { indent_size: 2, indent_empty_lines: true });
let css;
@@ -160,19 +186,19 @@ export default class SourceEditor extends Component<{
* @param params
*/
addFunction(params: FunctionEventParam) {
- const count = this.monocoEditer.getModel().getLineCount() || 0;
- const range = new (window as any).monaco.Range(count, 1, count, 1);
+ const count = this.monocoEditor.getModel().getLineCount() || 0;
+ const range = new monaco.Range(count, 1, count, 1);
const functionCode = transfrom.getNewFunctionCode(params.functionName);
- this.monocoEditer.executeEdits('log-source', [
+ this.monocoEditor.executeEdits('log-source', [
{ identifier: 'event_id', range: range, text: functionCode, forceMoveMarkers: true },
]);
setTimeout(() => {
- let newPosition = new (window as any).monaco.Position(count + 1, 2);
- this.monocoEditer.setPosition(newPosition);
- this.monocoEditer.focus();
+ let newPosition = new monaco.Position(count + 1, 2);
+ this.monocoEditor.setPosition(newPosition);
+ this.monocoEditor.focus();
}, 100);
- this.updateCode(this.monocoEditer.getModel().getValue());
+ this.updateCode(this.monocoEditor.getModel().getValue());
}
/**
@@ -181,30 +207,24 @@ export default class SourceEditor extends Component<{
*/
focusByFunctionName(params: FunctionEventParam) {
const functionName = params.functionName;
- const matchedResult = this.monocoEditer
+ const matchedResult = this.monocoEditor
.getModel()
.findMatches(`${functionName}\\s*\\([\\s\\S]*\\)[\\s\\S]*\\{`, false, true)[0];
if (matchedResult) {
-
- setTimeout(()=>{
- this.monocoEditer.revealLineInCenter(matchedResult.range.startLineNumber);
- this.monocoEditer.setPosition({
+ let monocoEditor = this.monocoEditor;
+ setTimeout(() => {
+ monocoEditor.revealLineInCenter(matchedResult.range.startLineNumber);
+ monocoEditor.setPosition({
column: matchedResult.range.endColumn,
lineNumber: matchedResult.range.endLineNumber,
});
-
- this.monocoEditer.focus();
- },100)
+ monocoEditor.focus();
+ }, 100);
}
}
- editorDidMount = (editor: any, monaco: any) => {
+ editorDidMount = (editor, monaco) => {
console.log('editorDidMount', editor);
- this.monocoEditer = editor;
-
- if (this.editorCmd) {
- this.callEditorEvent(this.editorCmd.eventName, this.editorCmd.params);
- }
// var commandId = editor.addCommand(
// 0,
@@ -215,39 +235,22 @@ export default class SourceEditor extends Component<{
// '',
// );
- // monaco.languages.registerCodeLensProvider('javascript', {
- // provideCodeLenses: function(model, token) {
- // return {
- // lenses: [
- // {
- // range: {
- // startLineNumber: 1,
- // startColumn: 1,
- // endLineNumber: 1,
- // endColumn: 1,
- // },
- // id: 'First Line',
- // command: {
- // id: commandId,
- // title: 'First Line',
- // },
- // },
- // ],
- // };
- // },
- // resolveCodeLens: function(model, codeLens, token) {
- // return codeLens;
- // },
- // });
+ if (this.state.selectTab == TAB_KEY.JS_TAB) {
+ this.monocoEditor = editor;
+ }
+
+ if (this.editorCmd) {
+ this.callEditorEvent(this.editorCmd.eventName, this.editorCmd.params);
+ }
};
- onTabChange = (key: any) => {
+ onTabChange = (key) => {
this.setState({
selectTab: key,
});
};
- updateCode = (newCode: any) => {
+ updateCode = (newCode) => {
const { selectTab } = this.state;
if (selectTab === TAB_KEY.JS_TAB) {
this.setState({
@@ -270,22 +273,28 @@ export default class SourceEditor extends Component<{
];
return (
-
-
+
+
{tabs.map((item) => (
{isShow && (
- this.updateCode(newCode)}
- editorDidMount={this.editorDidMount}
- />
+
+ this.updateCode(newCode)}
+ editorDidMount={(editor, monaco) => this.editorDidMount.call(this, editor, monaco)}
+ />
+
)}
))}
+
+
+

+
);
}
diff --git a/packages/react-simulator-renderer/src/renderer-view.tsx b/packages/react-simulator-renderer/src/renderer-view.tsx
index 5ae9ce0fe..b5c33a78e 100644
--- a/packages/react-simulator-renderer/src/renderer-view.tsx
+++ b/packages/react-simulator-renderer/src/renderer-view.tsx
@@ -47,6 +47,25 @@ export default class SimulatorRendererView extends Component<{ renderer: Simulat
}
}
+function getDeviceView(view: any, device: string) {
+ if (!view || typeof view === 'string' || device === 'default') {
+ return view;
+ }
+
+ /*
+ const viewport = Viewport.getViewport();
+ if (viewport) {
+ if (view.hasOwnProperty(device)) {
+ view = view[device];
+ }
+
+ if (view.hasOwnProperty(mode)) {
+ view = view[mode];
+ }
+ }*/
+ return view;
+}
+
@observer
class Layout extends Component<{ renderer: SimulatorRenderer }> {
shouldComponentUpdate() {
@@ -72,6 +91,7 @@ class Renderer extends Component<{ renderer: SimulatorRenderer }> {
}
render() {
const { renderer } = this.props;
+ const device = renderer.designMode
return (
{
viewProps._leaf = host.document.getNode(__id);
return createElement(
- Component,
+ getDeviceView(Component, device),
viewProps,
children == null ? [] : Array.isArray(children) ? children : [children],
);
diff --git a/packages/react-simulator-renderer/src/renderer.ts b/packages/react-simulator-renderer/src/renderer.ts
index 1aa4ba534..dd3530d88 100644
--- a/packages/react-simulator-renderer/src/renderer.ts
+++ b/packages/react-simulator-renderer/src/renderer.ts
@@ -41,6 +41,7 @@ export class SimulatorRenderer implements BuiltinSimulatorRenderer {
// sync scope
// sync device
+ this._device = host.device;
});
host.componentsConsumer.consume(async (componentsAsset) => {
if (componentsAsset) {
@@ -83,10 +84,13 @@ export class SimulatorRenderer implements BuiltinSimulatorRenderer {
@computed get context(): any {
return this._appContext;
}
-
@computed get designMode(): any {
return 'preview';
}
+ @obx.ref private _device: string = 'default';
+ @computed get device() {
+ return this._device;
+ }
@obx.ref private _componentsMap = {};
@computed get componentsMap(): any {
return this._componentsMap;
diff --git a/packages/vision-preset/src/editor.ts b/packages/vision-preset/src/editor.ts
index 805537782..954235f6c 100644
--- a/packages/vision-preset/src/editor.ts
+++ b/packages/vision-preset/src/editor.ts
@@ -180,9 +180,9 @@ skeleton.add({
LiveEditing.addLiveEditingSpecificRule(liveEditingRule);
// 实例节点选择器,线框高亮
-addBuiltinComponentAction({
- name: 'instance-node-selector',
- content: InstanceNodeSelector,
- important: true,
- condition: 'always',
-});
+// addBuiltinComponentAction({
+// name: 'instance-node-selector',
+// content: InstanceNodeSelector,
+// important: true,
+// condition: 'always'
+// });
diff --git a/packages/vision-preset/src/viewport.ts b/packages/vision-preset/src/viewport.ts
index 0b5ec7cb7..536010ae6 100644
--- a/packages/vision-preset/src/viewport.ts
+++ b/packages/vision-preset/src/viewport.ts
@@ -2,6 +2,7 @@ import { EventEmitter } from 'events';
const domReady = require('domready');
import Flags from './flags';
+import { designer } from './editor';
function enterFullscreen() {
const elem = document.documentElement;
@@ -185,8 +186,9 @@ export class Viewport {
setDevice(device = 'pc') {
if (this.getDevice() !== device) {
this.device = device;
- Flags.setSimulator(device);
- this.applyMediaCSS();
+ designer.currentDocument?.simulator?.set('device', device === 'mobile' ? 'mobile' : 'default');
+ // Flags.setSimulator(device);
+ // this.applyMediaCSS();
this.emitter.emit('devicechange', device);
this.changeViewport();
}
@@ -229,7 +231,7 @@ export class Viewport {
}
setWithShell(shell: string) {
- Flags.setWithShell(shell);
+ // Flags.setWithShell(shell);
}
onFullscreenChange(func: () => any) {