daily tag

This commit is contained in:
下羊 2020-03-15 10:12:02 +08:00
parent b55f6aa927
commit 01c8054bbe
26 changed files with 322 additions and 256 deletions

View File

@ -3,6 +3,10 @@ const { tslint, deepmerge } = require('@ice/spec');
module.exports = deepmerge(tslint, { module.exports = deepmerge(tslint, {
rules: { rules: {
"global-require": 0, "global-require": 0,
"@typescript-eslint/interface-name-prefix": 0 "comma-dangle": 0,
"react/sort-comp": 0,
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx", ".tsx", "ts"] }],
"@typescript-eslint/interface-name-prefix": 0,
"@typescript-eslint/no-explicit-any": 0
}, },
}); });

View File

@ -12,7 +12,7 @@ module.exports = {
}, },
plugins: [ plugins: [
['ice-plugin-fusion', { ['ice-plugin-fusion', {
themePackage: '@alife/theme-lowcode-dark', themePackage: '@alife/theme-lowcode-light',
}], }],
['ice-plugin-moment-locales', { ['ice-plugin-moment-locales', {
locales: ['zh-cn'], locales: ['zh-cn'],

View File

@ -23,13 +23,14 @@
}, },
"devDependencies": { "devDependencies": {
"@ice/spec": "^0.1.1", "@ice/spec": "^0.1.1",
"@types/react": "^16.8.3",
"@types/react-dom": "^16.8.2",
"@types/debug": "^4.1.5", "@types/debug": "^4.1.5",
"@types/events": "^3.0.0", "@types/events": "^3.0.0",
"@types/react": "^16.8.3",
"@types/react-dom": "^16.8.2",
"@types/store": "^2.0.2", "@types/store": "^2.0.2",
"css-modules-typescript-loader": "^2.0.4", "css-modules-typescript-loader": "^2.0.4",
"eslint": "^6.0.1", "eslint": "^6.0.1",
"husky": "^4.2.3",
"ice-plugin-fusion": "^0.1.4", "ice-plugin-fusion": "^0.1.4",
"ice-plugin-moment-locales": "^0.1.0", "ice-plugin-moment-locales": "^0.1.0",
"ice-scripts": "^2.0.0", "ice-scripts": "^2.0.0",

View File

@ -25,7 +25,8 @@ export default {
version: '1.0.0' version: '1.0.0'
}, },
pluginProps: { pluginProps: {
logo: 'https://img.alicdn.com/tfs/TB1mHYDxQP2gK0jSZPxXXacQpXa-112-64.png' logo: 'https://img.alicdn.com/tfs/TB1hoI9x1H2gK0jSZFEXXcqMpXa-146-40.png',
href: '/'
} }
}, },
{ {
@ -71,7 +72,7 @@ export default {
type: 'Custom', type: 'Custom',
props: { props: {
align: 'right', align: 'right',
width: 90 width: 88
}, },
config: { config: {
package: '@ali/lowcode-plugin-undo-redo', package: '@ali/lowcode-plugin-undo-redo',
@ -107,8 +108,8 @@ export default {
align: 'right', align: 'right',
title: 'icon', title: 'icon',
icon: 'dengpao', icon: 'dengpao',
onClick: function(editor) { onClick(editor) {
alert('icon addon invoke, current activeKey: ' + editor.activeKey); alert(`icon addon invoke, current activeKey: ${ editor.activeKey}`);
} }
}, },
config: {}, config: {},
@ -198,8 +199,8 @@ export default {
align: 'bottom', align: 'bottom',
title: 'icon', title: 'icon',
icon: 'dengpao', icon: 'dengpao',
onClick: function(editor) { onClick(editor) {
alert('icon addon invoke, current activeKey: ' + editor.activeKey); alert(`icon addon invoke, current activeKey: ${ editor.activeKey}`);
} }
}, },
config: {}, config: {},
@ -231,7 +232,8 @@ export default {
pluginKey: 'rightPanel2', pluginKey: 'rightPanel2',
type: 'TabPanel', type: 'TabPanel',
props: { props: {
title: '属性' title: '属性',
icon: 'dengpao'
}, },
config: { config: {
version: '^1.0.0' version: '^1.0.0'

View File

@ -4,26 +4,34 @@ import { clone, deepEqual } from './utils';
export default class AreaManager { export default class AreaManager {
private pluginStatus: PluginStatus; private pluginStatus: PluginStatus;
private config: PluginConfig[]; private config: PluginConfig[];
constructor(private editor: Editor, private area: string) {
private editor: Editor;
private area: string;
constructor(editor: Editor, area: string) {
this.editor = editor;
this.area = area;
this.config = (editor && editor.config && editor.config.plugins && editor.config.plugins[this.area]) || []; this.config = (editor && editor.config && editor.config.plugins && editor.config.plugins[this.area]) || [];
this.pluginStatus = clone(editor.pluginStatus); this.pluginStatus = clone(editor.pluginStatus);
} }
public isPluginStatusUpdate(pluginType?: string): boolean { public isPluginStatusUpdate(pluginType?: string): boolean {
const { pluginStatus } = this.editor; const { pluginStatus } = this.editor;
const list = pluginType ? this.config.filter(item => item.type === pluginType) : this.config; const list = pluginType ? this.config.filter((item): boolean => item.type === pluginType) : this.config;
const isUpdate = list.some(item => !deepEqual(pluginStatus[item.pluginKey], this.pluginStatus[item.pluginKey])); const isUpdate = list.some((item): boolean => !deepEqual(pluginStatus[item.pluginKey], this.pluginStatus[item.pluginKey]));
this.pluginStatus = clone(pluginStatus); this.pluginStatus = clone(pluginStatus);
return isUpdate; return isUpdate;
} }
public getVisiblePluginList(pluginType?: string): PluginConfig[] { public getVisiblePluginList(pluginType?: string): PluginConfig[] {
const res = this.config.filter(item => { const res = this.config.filter((item): boolean => {
return !this.pluginStatus[item.pluginKey] || this.pluginStatus[item.pluginKey].visible; return !!(!this.pluginStatus[item.pluginKey] || this.pluginStatus[item.pluginKey].visible);
}); });
return pluginType ? res.filter(item => item.type === pluginType) : res; return pluginType ? res.filter((item): boolean => item.type === pluginType) : res;
} }
public getPluginConfig(): PluginConfig[] { public getPluginConfig(): PluginConfig[] {

View File

@ -1,3 +1,4 @@
import { createContext } from 'react'; import { createContext } from 'react';
const context = createContext({}); const context = createContext({});
export default context; export default context;

View File

@ -75,7 +75,7 @@ export type ShortCutsConfig = ShortCutConfig[];
export interface ShortCutConfig { export interface ShortCutConfig {
keyboard: string; keyboard: string;
handler: (editor: Editor, ev: React.KeyboardEventHandler<HTMLElement>, keymaster: any) => void; handler: (editor: Editor, ev: Event, keymaster: any) => void;
} }
export type UtilsConfig = UtilConfig[]; export type UtilsConfig = UtilConfig[];
@ -96,7 +96,7 @@ export interface LifeCyclesConfig {
export type LocaleType = 'zh-CN' | 'zh-TW' | 'en-US' | 'ja-JP'; export type LocaleType = 'zh-CN' | 'zh-TW' | 'en-US' | 'ja-JP';
export interface I18nMessages { export interface I18nMessages {
[propName: string]: string; [key: string]: string;
} }
export interface I18nConfig { export interface I18nConfig {
@ -106,31 +106,47 @@ export interface I18nConfig {
'ja-JP'?: I18nMessages; 'ja-JP'?: I18nMessages;
} }
export type I18nFunction = (key: string, params: any) => string; export type I18nFunction = (key: string, params: any) => string | string[];
export interface Utils { export interface Utils {
[propName: string]: (...args) => any; [key: string]: (...args) => any;
} }
export interface PluginClass extends React.ComponentClass<{
export interface PluginProps {
editor: Editor; editor: Editor;
config: PluginConfig;
i18n: I18nFunction;
ref?: React.RefObject<Plugin>;
[key: string]: any; [key: string]: any;
}> {
init?: (editor: Editor) => void;
open?: () => any;
close?: () => any;
} }
export interface PluginComponents {
[propName: string]: PluginClass; export type Plugin = React.ReactNode & {
open?: () => boolean| void| Promise<any>;
close?: () => boolean| void| Promise<any>;
}
export interface PluginSet {
[key: string]: Plugin;
}
export type PluginClass = React.ComponentType<PluginProps> & {
init?: (editor: Editor) => void;
}
export interface PluginClassSet {
[key: string]: PluginClass;
} }
export interface PluginStatus { export interface PluginStatus {
[propName: string]: { disabled?: boolean;
disabled?: boolean; visible?: boolean;
visible?: boolean; marked?: boolean;
marked?: boolean; locked?: boolean;
locked?: boolean; }
};
export interface PluginStatusSet {
[key: string]: PluginStatus;
} }

View File

@ -1,37 +1,39 @@
import Debug from 'debug'; import Debug from 'debug';
import EventEmitter from 'events'; import EventEmitter from 'events';
import store from 'store'; import store from 'store';
import { EditorConfig, HooksConfig, LocaleType, PluginComponents, PluginStatus, Utils } from './definitions'; import { EditorConfig, HooksConfig, LocaleType, PluginStatusSet, Utils, PluginClassSet, PluginSet } from './definitions';
import { registShortCuts, transformToPromise, unRegistShortCuts } from './utils'; import { registShortCuts, transformToPromise, unRegistShortCuts } from './utils';
// 根据url参数设置debug选项 // 根据url参数设置debug选项
const res = /_?debug=(.*?)(&|$)/.exec(location.search); const debugRegRes = /_?debug=(.*?)(&|$)/.exec(location.search);
if (res && res[1]) { if (debugRegRes && debugRegRes[1]) {
// eslint-disable-next-line no-underscore-dangle
window.__isDebug = true; window.__isDebug = true;
store.storage.write('debug', res[1] === 'true' ? '*' : res[1]); store.storage.write('debug', debugRegRes[1] === 'true' ? '*' : debugRegRes[1]);
} else { } else {
window.__isDebug = false; window.__isDebug = false;
store.remove('debug'); store.remove('debug');
} }
// 重要用于矫正画布执行new Function的window对象上下文 // 重要用于矫正画布执行new Function的window对象上下文
window.__newFunc = funContext => { // eslint-disable-next-line no-underscore-dangle
return new Function(funContext); window.__newFunc = (funContext: string): ((...args: any[]) => any) => {
return new Function(funContext);
}; };
// 关闭浏览器前提醒,只有产生过交互才会生效 // 关闭浏览器前提醒,只有产生过交互才会生效
window.onbeforeunload = function(e) { window.onbeforeunload = function(e: Event): string|void {
e = e || window.event; const ev = e || window.event;
// 本地调试不生效 // 本地调试不生效
if (location.href.indexOf('localhost') > 0) { if (location.href.indexOf('localhost') > 0) {
return; return;
} }
const msg = '您确定要离开此页面吗?'; const msg = '您确定要离开此页面吗?';
e.cancelBubble = true; ev.cancelBubble = true;
e.returnValue = msg; ev.returnValue = true;
if (e.stopPropagation) { if (e.stopPropagation) {
e.stopPropagation(); e.stopPropagation();
e.preventDefault(); e.preventDefault();
@ -49,26 +51,41 @@ export interface HooksFuncs {
} }
export default class Editor extends EventEmitter { export default class Editor extends EventEmitter {
public static getInstance = (config: EditorConfig, components: PluginComponents, utils?: Utils): Editor => { public static getInstance = (config: EditorConfig, components: PluginClassSet, utils?: Utils): Editor => {
if (!instance) { if (!instance) {
instance = new Editor(config, components, utils); instance = new Editor(config, components, utils);
} }
return instance; return instance;
}; };
public pluginStatus: PluginStatus; public config: EditorConfig;
public plugins: PluginComponents;
public components: PluginClassSet;
public utils: Utils;
public pluginStatus: PluginStatusSet;
public plugins: PluginSet;
public locale: LocaleType; public locale: LocaleType;
public emit: (msg: string, ...args) => void; public emit: (msg: string, ...args) => void;
public on: (msg: string, handler: (...args) => void) => void; public on: (msg: string, handler: (...args) => void) => void;
public once: (msg: string, handler: (...args) => void) => void; public once: (msg: string, handler: (...args) => void) => void;
public off: (msg: string, handler: (...args) => void) => void; public off: (msg: string, handler: (...args) => void) => void;
private hooksFuncs: HooksFuncs; private hooksFuncs: HooksFuncs;
constructor(public config: EditorConfig, public components: PluginComponents, public utils?: Utils) { constructor(config: EditorConfig, components: PluginClassSet, utils?: Utils) {
super(); super();
this.config = config;
this.components = components;
this.utils = utils || {};
instance = this; instance = this;
this.init(); this.init();
} }
@ -82,21 +99,21 @@ export default class Editor extends EventEmitter {
this.initHooks(hooks || []); this.initHooks(hooks || []);
this.emit('editor.beforeInit'); this.emit('editor.beforeInit');
const init = (lifeCycles && lifeCycles.init) || (() => {}); const init = (lifeCycles && lifeCycles.init) || ((): void => {});
// 用户可以通过设置extensions.init自定义初始化流程 // 用户可以通过设置extensions.init自定义初始化流程
return transformToPromise(init(this)) return transformToPromise(init(this))
.then(() => { .then((): boolean => {
// 注册快捷键 // 注册快捷键
registShortCuts(shortCuts, this); registShortCuts(shortCuts, this);
this.emit('editor.afterInit'); this.emit('editor.afterInit');
return true; return true;
}) })
.catch(err => { .catch((err): void => {
console.error(err); console.error(err);
}); });
} }
public destroy() { public destroy(): void {
debug('destroy'); debug('destroy');
try { try {
const { hooks = [], shortCuts = [], lifeCycles = {} } = this.config; const { hooks = [], shortCuts = [], lifeCycles = {} } = this.config;
@ -107,7 +124,7 @@ export default class Editor extends EventEmitter {
} }
} catch (err) { } catch (err) {
console.warn(err); console.warn(err);
return;
} }
} }
@ -123,7 +140,7 @@ export default class Editor extends EventEmitter {
} }
this[key] = val; this[key] = val;
} else if (typeof key === 'object') { } else if (typeof key === 'object') {
Object.keys(key).forEach(item => { Object.keys(key).forEach((item): void => {
this[item] = key[item]; this[item] = key[item];
}); });
} }
@ -133,26 +150,26 @@ export default class Editor extends EventEmitter {
if (!Array.isArray(events)) { if (!Array.isArray(events)) {
return; return;
} }
events.forEach(event => this.on(event, lisenter)); events.forEach((event): void => this.on(event, lisenter));
} }
public batchOnce(events: string[], lisenter: (...args) => void): void { public batchOnce(events: string[], lisenter: (...args) => void): void {
if (!Array.isArray(events)) { if (!Array.isArray(events)) {
return; return;
} }
events.forEach(event => this.once(event, lisenter)); events.forEach((event): void => this.once(event, lisenter));
} }
public batchOff(events: string[], lisenter: (...args) => void): void { public batchOff(events: string[], lisenter: (...args) => void): void {
if (!Array.isArray(events)) { if (!Array.isArray(events)) {
return; return;
} }
events.forEach(event => this.off(event, lisenter)); events.forEach((event): void => this.off(event, lisenter));
} }
// 销毁hooks中的消息监听 // 销毁hooks中的消息监听
private destroyHooks(hooks: HooksConfig = []) { private destroyHooks(hooks: HooksConfig = []): void {
hooks.forEach((item, idx) => { hooks.forEach((item, idx): void => {
if (typeof this.hooksFuncs[idx] === 'function') { if (typeof this.hooksFuncs[idx] === 'function') {
this.off(item.message, this.hooksFuncs[idx]); this.off(item.message, this.hooksFuncs[idx]);
} }
@ -162,8 +179,8 @@ export default class Editor extends EventEmitter {
// 初始化hooks中的消息监听 // 初始化hooks中的消息监听
private initHooks(hooks: HooksConfig = []): void { private initHooks(hooks: HooksConfig = []): void {
this.hooksFuncs = hooks.map(item => { this.hooksFuncs = hooks.map((item): ((...arg) => void) => {
const func = (...args) => { const func = (...args): void => {
item.handler(this, ...args); item.handler(this, ...args);
}; };
this[item.type](item.message, func); this[item.type](item.message, func);
@ -171,12 +188,12 @@ export default class Editor extends EventEmitter {
}); });
} }
private initPluginStatus() { private initPluginStatus(): PluginStatusSet {
const { plugins = {} } = this.config; const { plugins = {} } = this.config;
const pluginAreas = Object.keys(plugins); const pluginAreas = Object.keys(plugins);
const res: PluginStatus = {}; const res: PluginStatusSet = {};
pluginAreas.forEach(area => { pluginAreas.forEach((area): void => {
(plugins[area] || []).forEach(plugin => { (plugins[area] || []).forEach((plugin): void => {
if (plugin.type === 'Divider') { if (plugin.type === 'Divider') {
return; return;
} }

View File

@ -0,0 +1,4 @@
interface Window {
__isDebug?: boolean;
__newFunc?: (funcStr: string) => ((...args: any[]) => any);
}

View File

@ -1,9 +1,11 @@
import Editor from './editor'; import Editor from './editor';
export { default as PluginFactory } from './pluginFactory';
export { default as EditorContext } from './context';
import * as editorUtils from './utils'; import * as editorUtils from './utils';
import * as editorDefinitions from './definitions'; import * as editorDefinitions from './definitions';
export { default as PluginFactory } from './pluginFactory';
export { default as EditorContext } from './context';
export default Editor; export default Editor;
export const utils = editorUtils; export const utils = editorUtils;

View File

@ -1,7 +1,7 @@
import React, { createRef, PureComponent } from 'react'; import React, { createRef, PureComponent } from 'react';
import EditorContext from './context'; import EditorContext from './context';
import { I18nFunction, PluginConfig } from './definitions'; import { I18nFunction, PluginConfig, PluginClass, Plugin } from './definitions';
import Editor from './editor'; import Editor from './editor';
import { acceptsRef, generateI18n, isEmpty, transformToPromise } from './utils'; import { acceptsRef, generateI18n, isEmpty, transformToPromise } from './utils';
@ -15,18 +15,21 @@ export interface InjectedPluginProps {
} }
export default function pluginFactory( export default function pluginFactory(
Comp: React.ComponentType<PluginProps & InjectedPluginProps> Comp: PluginClass
): React.ComponentType<PluginProps> { ): React.ComponentType<PluginProps> {
class LowcodePlugin extends PureComponent<PluginProps> { class LowcodePlugin extends PureComponent<PluginProps> {
public static displayName = 'LowcodeEditorPlugin'; public static displayName = 'LowcodeEditorPlugin';
public static defaultProps = {
config: {}
};
public static contextType = EditorContext; public static contextType = EditorContext;
public static init = Comp.init; public static init = Comp.init;
public ref = createRef<React.Component>();
public ref: React.RefObject<Plugin>;
private editor: Editor; private editor: Editor;
private pluginKey: string; private pluginKey: string;
private i18n: I18nFunction; private i18n: I18nFunction;
constructor(props, context) { constructor(props, context) {
@ -36,6 +39,7 @@ export default function pluginFactory(
return; return;
} }
const { locale, messages, editor } = props; const { locale, messages, editor } = props;
this.ref = createRef<Plugin>();
// 注册插件 // 注册插件
this.editor = editor; this.editor = editor;
this.i18n = generateI18n(locale, messages); this.i18n = generateI18n(locale, messages);
@ -46,7 +50,7 @@ export default function pluginFactory(
}); });
} }
public componentWillUnmount() { public componentWillUnmount(): void {
// 销毁插件 // 销毁插件
if (this.editor && this.editor.plugins) { if (this.editor && this.editor.plugins) {
delete this.editor.plugins[this.pluginKey]; delete this.editor.plugins[this.pluginKey];
@ -60,14 +64,15 @@ export default function pluginFactory(
return Promise.resolve(); return Promise.resolve();
}; };
public close = () => { public close = (): Promise<any> => {
if (this.ref && this.ref.close && typeof this.ref.close === 'function') { if (this.ref && this.ref.close && typeof this.ref.close === 'function') {
return transformToPromise(this.ref.close()); return transformToPromise(this.ref.close());
} }
return Promise.resolve(); return Promise.resolve();
}; };
public render() {
public render(): React.ReactNode {
const { config } = this.props; const { config } = this.props;
const props = { const props = {
i18n: this.i18n, i18n: this.i18n,

View File

@ -1,7 +1,5 @@
import IntlMessageFormat from 'intl-messageformat'; import IntlMessageFormat from 'intl-messageformat';
import keymaster from 'keymaster'; import keymaster from 'keymaster';
import { EditorConfig, I18nFunction, I18nMessages, LocaleType, ShortCutsConfig } from './definitions';
import Editor from './editor';
import _clone from 'lodash/cloneDeep'; import _clone from 'lodash/cloneDeep';
import _debounce from 'lodash/debounce'; import _debounce from 'lodash/debounce';
@ -10,6 +8,10 @@ import _deepEqual from 'lodash/isEqualWith';
import _pick from 'lodash/pick'; import _pick from 'lodash/pick';
import _throttle from 'lodash/throttle'; import _throttle from 'lodash/throttle';
import _serialize from 'serialize-javascript';
import Editor from './editor';
import { EditorConfig, I18nFunction, I18nMessages, LocaleType, ShortCutsConfig } from './definitions';
export const pick = _pick; export const pick = _pick;
export const deepEqual = _deepEqual; export const deepEqual = _deepEqual;
export const clone = _clone; export const clone = _clone;
@ -17,7 +19,6 @@ export const isEmpty = _isEmpty;
export const throttle = _throttle; export const throttle = _throttle;
export const debounce = _debounce; export const debounce = _debounce;
import _serialize from 'serialize-javascript';
export const serialize = _serialize; export const serialize = _serialize;
const ENV = { const ENV = {
@ -36,11 +37,16 @@ export interface IDEMessageParams {
}; };
} }
export interface Window {
sendIDEMessage: (msg: IDEMessageParams) => void;
is_theia?: boolean;
}
/* /*
* *
*/ */
export function generateI18n(locale: LocaleType = 'zh-CN', messages: I18nMessages = {}): I18nFunction { export function generateI18n(locale: LocaleType = 'zh-CN', messages: I18nMessages = {}): I18nFunction {
return (key: string, values): string => { return (key: string, values): string | string[] => {
if (!messages || !messages[key]) { if (!messages || !messages[key]) {
return ''; return '';
} }
@ -57,7 +63,7 @@ export function serializeParams(obj: object): string {
return ''; return '';
} }
const res: string[] = []; const res: string[] = [];
Object.entries(obj).forEach(([key, val]) => { Object.entries(obj).forEach(([key, val]): void => {
if (val === null || val === undefined || val === '') { if (val === null || val === undefined || val === '') {
return; return;
} }
@ -115,8 +121,8 @@ export function getEnv(): string {
// 注册快捷键 // 注册快捷键
export function registShortCuts(config: ShortCutsConfig, editor: Editor): void { export function registShortCuts(config: ShortCutsConfig, editor: Editor): void {
(config || []).forEach(item => { (config || []).forEach((item): void => {
keymaster(item.keyboard, ev => { keymaster(item.keyboard, (ev: Event): void => {
ev.preventDefault(); ev.preventDefault();
item.handler(editor, ev, keymaster); item.handler(editor, ev, keymaster);
}); });
@ -125,7 +131,7 @@ export function registShortCuts(config: ShortCutsConfig, editor: Editor): void {
// 取消注册快捷 // 取消注册快捷
export function unRegistShortCuts(config: ShortCutsConfig): void { export function unRegistShortCuts(config: ShortCutsConfig): void {
(config || []).forEach(item => { (config || []).forEach((item): void => {
keymaster.unbind(item.keyboard); keymaster.unbind(item.keyboard);
}); });
if (window.parent.vscode) { if (window.parent.vscode) {
@ -141,7 +147,7 @@ export function transformToPromise(input: any): Promise<{}> {
if (input instanceof Promise) { if (input instanceof Promise) {
return input; return input;
} }
return new Promise((resolve, reject) => { return new Promise((resolve, reject): void => {
if (input || input === undefined) { if (input || input === undefined) {
resolve(); resolve();
} else { } else {
@ -161,7 +167,7 @@ export function transformArrayToMap<T>(arr: T[], key: string, overwrite: boolean
return {}; return {};
} }
const res = {}; const res = {};
arr.forEach(item => { arr.forEach((item): void => {
const curKey = item[key]; const curKey = item[key];
if (item[key] === undefined) { if (item[key] === undefined) {
return; return;
@ -187,7 +193,7 @@ export function parseSearch(search: string): Query {
const str = search.replace(/^\?/, ''); const str = search.replace(/^\?/, '');
const paramStr = str.split('&'); const paramStr = str.split('&');
const res = {}; const res = {};
paramStr.forEach(item => { paramStr.forEach((item): void => {
const regRes = item.split('='); const regRes = item.split('=');
if (regRes[0] && regRes[1]) { if (regRes[0] && regRes[1]) {
res[regRes[0]] = decodeURIComponent(regRes[1]); res[regRes[0]] = decodeURIComponent(regRes[1]);
@ -210,7 +216,7 @@ export function comboEditorConfig(defaultConfig: EditorConfig = {}, customConfig
const customShortCuts = transformArrayToMap(shortCuts || [], 'keyboard'); const customShortCuts = transformArrayToMap(shortCuts || [], 'keyboard');
const localeList = ['zh-CN', 'zh-TW', 'en-US', 'ja-JP']; const localeList = ['zh-CN', 'zh-TW', 'en-US', 'ja-JP'];
const i18nConfig = {}; const i18nConfig = {};
localeList.forEach(key => { localeList.forEach((key): void => {
i18nConfig[key] = { i18nConfig[key] = {
...(defaultConfig.i18n && defaultConfig.i18n[key]), ...(defaultConfig.i18n && defaultConfig.i18n[key]),
...(i18n && i18n[key]) ...(i18n && i18n[key])
@ -248,9 +254,12 @@ export function comboEditorConfig(defaultConfig: EditorConfig = {}, customConfig
* ref * ref
* @param {*} Comp * @param {*} Comp
*/ */
export function acceptsRef(Comp: React.ComponentType) { export function acceptsRef(Comp: React.ReactNode): boolean {
const hasSymbol = typeof Symbol === 'function' && Symbol.for; const hasSymbol = typeof Symbol === 'function' && Symbol.for;
const REACT_FORWARD_REF_TYPE = hasSymbol ? Symbol.for('react.forward_ref') : 0xead0; const REACT_FORWARD_REF_TYPE = hasSymbol ? Symbol.for('react.forward_ref') : 0xead0;
if (!Comp || typeof Comp !== 'object' || isEmpty(Comp)) {
return false;
}
return ( return (
(Comp.$$typeof && Comp.$$typeof === REACT_FORWARD_REF_TYPE) || (Comp.prototype && Comp.prototype.isReactComponent) (Comp.$$typeof && Comp.$$typeof === REACT_FORWARD_REF_TYPE) || (Comp.prototype && Comp.prototype.isReactComponent)
); );

View File

@ -1,9 +1,13 @@
.lowcode-plugin-logo { .lowcode-plugin-logo {
padding: 8px 16px; padding: 14px 8px;
padding-left: 8px;
.logo { .logo {
display: block;
width: 56px; width: 56px;
height: 32px; height: 20px;
cursor: pointer;
background-size: contain; background-size: contain;
background-position: center; background-position: center;
background-repeat: no-repeat;
} }
} }

View File

@ -7,12 +7,13 @@ export interface PluginProps {
editor: Editor; editor: Editor;
config: PluginConfig; config: PluginConfig;
logo?: string; logo?: string;
href?: string;
} }
export default function(props: PluginProps) { export default function(props: PluginProps) {
return ( return (
<div className="lowcode-plugin-logo"> <div className="lowcode-plugin-logo">
<div className="logo" style={{ backgroundImage: `url(${props.logo})` }} /> <a className="logo" target="blank" href={props.href || '/'} style={{ backgroundImage: `url(${props.logo})` }} />
</div> </div>
); );
} }

View File

@ -1,22 +1,16 @@
.lowcode-left-plugin { .lowcode-left-plugin {
font-size: 16px; font-size: 20px;
text-align: center; text-align: center;
line-height: 36px; line-height: 44px;
height: 36px; height: 44px;
position: relative; position: relative;
cursor: pointer; cursor: pointer;
transition: all 0.3s ease; transition: all 0.3s ease;
color: $color-text1-3; color: $color-text1-3;
&.collapse {
height: 40px;
border-bottom: 1px solid $color-line1-1;
opacity: 0.6;
}
&.locked { &.locked {
color: red !important; color: red !important;
} }
&:hover { &:hover {
background-color: $color-brand1-1;
color: $color-brand1-6; color: $color-brand1-6;
&:before { &:before {
content: attr(data-tooltip); content: attr(data-tooltip);
@ -29,8 +23,8 @@
white-space: nowrap; white-space: nowrap;
padding: 6px 8px; padding: 6px 8px;
border-radius: 4px; border-radius: 4px;
background: rgba(0, 0, 0, 0.75); background: $balloon-tooltip-color-bg;
color: #fff; color: $color-text1-3;
z-index: 100; z-index: 100;
} }
&:after { &:after {
@ -40,17 +34,18 @@
left: 40px; left: 40px;
top: 15px; top: 15px;
border: 5px solid transparent; border: 5px solid transparent;
border-right-color: rgba(0, 0, 0, 0.75); border-right: 5px solid $balloon-tooltip-color-bg;
z-index: 100; z-index: 100;
} }
} }
&.active { &.active {
color: $color-white; color: $color-brand1-9;
background-color: $color-brand1-9;
&.disabled { &.disabled {
color: $color-white; color: $color-text1-1;
background-color: $color-fill1-4;
} }
&:hover {
color: $color-brand1-6;
}
} }
&.disabled { &.disabled {
cursor: not-allowed; cursor: not-allowed;

View File

@ -82,7 +82,7 @@ export default class LeftPlugin extends PureComponent<LeftPluginProps, LeftPlugi
const { disabled, config, onClick, editor } = this.props; const { disabled, config, onClick, editor } = this.props;
const pluginKey = config && config.pluginKey; const pluginKey = config && config.pluginKey;
if (disabled || !pluginKey) return; if (disabled || !pluginKey) return;
//考虑到弹窗情况,延时发送消息 // 考虑到弹窗情况,延时发送消息
setTimeout(() => editor.emit(`${pluginKey}.addon.activate`), 0); setTimeout(() => editor.emit(`${pluginKey}.addon.activate`), 0);
this.handleOpen(); this.handleOpen();
onClick && onClick(); onClick && onClick();
@ -102,7 +102,7 @@ export default class LeftPlugin extends PureComponent<LeftPluginProps, LeftPlugi
data-tooltip={title} data-tooltip={title}
onClick={() => { onClick={() => {
if (disabled) return; if (disabled) return;
//考虑到弹窗情况,延时发送消息 // 考虑到弹窗情况,延时发送消息
clickCallback && clickCallback(); clickCallback && clickCallback();
onClick && onClick(); onClick && onClick();
}} }}
@ -169,6 +169,10 @@ export default class LeftPlugin extends PureComponent<LeftPluginProps, LeftPlugi
onCancel={this.handleClose} onCancel={this.handleClose}
onClose={this.handleClose} onClose={this.handleClose}
title={title} title={title}
style={{
width: 500,
...(props && props.style)
}}
{...(props.dialogProps || {})} {...(props.dialogProps || {})}
visible={dialogVisible} visible={dialogVisible}
> >

View File

@ -1,21 +1,27 @@
.next-btn.next-large.lowcode-top-btn { .lowcode-top-icon {
display: inline-block;
width: 44px; width: 44px;
height: 44px; font-size: 20px;
padding: 0; line-height: 48px;
margin: 2px -2px;
text-align: center;
border-radius: 8px;
border: 1px solid transparent;
color: $color-text1-3; color: $color-text1-3;
position: relative;
&.disabled { &.disabled {
cursor: not-allowed; cursor: not-allowed;
color: $color-text1-1; color: $color-text1-1;
&:hover {
color: $color-text1-1;
}
}
&.active {
color: $color-brand1-9;
&:hover {
color: $color-brand1-6;
}
} }
&.locked { &.locked {
color: red !important; color: red !important;
} }
&:hover { &:hover {
background-color: $color-brand1-1;
color: $color-brand1-6; color: $color-brand1-6;
&:before { &:before {
content: attr(data-tooltip); content: attr(data-tooltip);
@ -31,8 +37,8 @@
white-space: nowrap; white-space: nowrap;
padding: 6px 8px; padding: 6px 8px;
border-radius: 4px; border-radius: 4px;
background: rgba(0, 0, 0, 0.75); background: $balloon-tooltip-color-bg;
color: #fff; color: $color-text1-3;
z-index: 100; z-index: 100;
} }
&:after { &:after {
@ -43,7 +49,7 @@
transform: translate(-50%, 0); transform: translate(-50%, 0);
bottom: -5px; bottom: -5px;
border: 5px solid transparent; border: 5px solid transparent;
border-bottom-color: rgba(0, 0, 0, 0.75); border-bottom-color: $balloon-tooltip-color-bg;
opacity: 1; opacity: 1;
visibility: visible; visibility: visible;
z-index: 100; z-index: 100;

View File

@ -13,13 +13,13 @@ export interface TopIconProps {
locked?: boolean; locked?: boolean;
marked?: boolean; marked?: boolean;
onClick?: () => void; onClick?: () => void;
showTitle?: boolean;
style?: React.CSSProperties; style?: React.CSSProperties;
title?: string; title?: string;
} }
export default class TopIcon extends PureComponent<TopIconProps> { export default class TopIcon extends PureComponent<TopIconProps> {
static displayName = 'LowcodeTopIcon'; static displayName = 'LowcodeTopIcon';
static defaultProps = { static defaultProps = {
active: false, active: false,
className: '', className: '',
@ -28,33 +28,23 @@ export default class TopIcon extends PureComponent<TopIconProps> {
id: '', id: '',
locked: false, locked: false,
onClick: () => {}, onClick: () => {},
showTitle: false,
style: {}, style: {},
title: '' title: ''
}; };
render() { render() {
const { active, disabled, icon, locked, title, className, id, style, showTitle, onClick } = this.props; const { active, disabled, icon, locked, title, className, id, style, onClick } = this.props;
return ( return (
<Button <div className={classNames('lowcode-top-icon', className, {
type="normal" active,
size="large" disabled,
text={true} locked
className={classNames('lowcode-top-btn', className, { })} data-tooltip={title}
active, id={id}
disabled, style={style}
locked onClick={disabled ? undefined : onClick}>
})} <Icon type={icon} />
data-tooltip={title} </div>
id={id}
style={style}
onClick={disabled ? undefined : onClick}
>
<div>
<Icon size="large" type={icon} />
{showTitle && <span>{title}</span>}
</div>
</Button>
); );
} }
} }

View File

@ -1,7 +1,7 @@
import React, { PureComponent, Fragment } from 'react'; import React, { PureComponent, Fragment } from 'react';
import TopIcon from '../TopIcon';
import { Balloon, Badge, Dialog } from '@alifd/next'; import { Balloon, Badge, Dialog } from '@alifd/next';
import TopIcon from '../TopIcon';
import './index.scss'; import './index.scss';
import { PluginConfig, PluginClass } from '../../../framework/definitions'; import { PluginConfig, PluginClass } from '../../../framework/definitions';
@ -63,8 +63,8 @@ export default class TopPlugin extends PureComponent<TopPluginProps, TopPluginSt
const { disabled, config, onClick, editor } = this.props; const { disabled, config, onClick, editor } = this.props;
const pluginKey = config && config.pluginKey; const pluginKey = config && config.pluginKey;
if (disabled || !pluginKey) return; if (disabled || !pluginKey) return;
//考虑到弹窗情况,延时发送消息 // 考虑到弹窗情况,延时发送消息
setTimeout(() => editor.emit(`${pluginKey}.addon.activate`), 0); setTimeout(() => editor.emit(`${pluginKey}.plugin.activate`), 0);
this.handleOpen(); this.handleOpen();
onClick && onClick(); onClick && onClick();
}; };
@ -95,7 +95,7 @@ export default class TopPlugin extends PureComponent<TopPluginProps, TopPluginSt
const { icon, title } = props || {}; const { icon, title } = props || {};
const node = ( const node = (
<TopIcon <TopIcon
className={`lowcode-top-addon ${pluginKey}`} className={`lowcode-top-plugin ${pluginKey}`}
active={active} active={active}
disabled={disabled} disabled={disabled}
locked={locked} locked={locked}
@ -103,8 +103,8 @@ export default class TopPlugin extends PureComponent<TopPluginProps, TopPluginSt
title={title} title={title}
onClick={() => { onClick={() => {
if (disabled) return; if (disabled) return;
//考虑到弹窗情况,延时发送消息 // 考虑到弹窗情况,延时发送消息
setTimeout(() => editor.emit(`${pluginKey}.addon.activate`), 0); setTimeout(() => editor.emit(`${pluginKey}.plugin.activate`), 0);
clickCallback && clickCallback(); clickCallback && clickCallback();
onClick && onClick(); onClick && onClick();
}} }}
@ -163,6 +163,10 @@ export default class TopPlugin extends PureComponent<TopPluginProps, TopPluginSt
onCancel={this.handleClose} onCancel={this.handleClose}
onClose={this.handleClose} onClose={this.handleClose}
title={title} title={title}
style={{
width: 500,
...(props && props.style)
}}
{...props.dialogProps} {...props.dialogProps}
visible={dialogVisible} visible={dialogVisible}
> >

View File

@ -18,7 +18,7 @@ body {
.lowcode-editor { .lowcode-editor {
.lowcode-main-content { .lowcode-main-content {
position: absolute; position: absolute;
top: 48px; top: 50px;
left: 0; left: 0;
right: 0; right: 0;
bottom: 0; bottom: 0;

View File

@ -1,20 +1,22 @@
.lowcode-left-area-nav { .lowcode-left-area-nav {
width: 48px; width: 50px;
height: 100%; height: 100%;
background-color: $card-background; background-color: $card-background;
border-right: 1px solid $color-line1-1; border-right: 2px solid $color-line1-1;
position: relative; position: relative;
.top-area { .top-area {
position: absolute; position: absolute;
top: 0; top: 0;
width: 100%; width: 100%;
padding: 12px 0;
background-color: $card-background; background-color: $card-background;
max-height: 100%; max-height: 100%;
} }
.bottom-area { .bottom-area {
position: absolute; position: absolute;
bottom: 20px; bottom: 0;
width: 100%; width: 100%;
padding: 12px 0;
background-color: $card-background; background-color: $card-background;
max-height: calc(100% - 20px); max-height: calc(100% - 20px);
} }

View File

@ -5,6 +5,7 @@ import Editor from '../../../framework/editor';
import { PluginConfig } from '../../../framework/definitions'; import { PluginConfig } from '../../../framework/definitions';
import AreaManager from '../../../framework/areaManager'; import AreaManager from '../../../framework/areaManager';
import { isEmpty } from '../../../framework/utils'; import { isEmpty } from '../../../framework/utils';
export interface LeftAreaNavProps { export interface LeftAreaNavProps {
editor: Editor; editor: Editor;
} }
@ -17,7 +18,9 @@ export default class LeftAreaNav extends PureComponent<LeftAreaNavProps, LeftAre
static displayName = 'LowcodeLeftAreaNav'; static displayName = 'LowcodeLeftAreaNav';
private editor: Editor; private editor: Editor;
private areaManager: AreaManager; private areaManager: AreaManager;
private cacheActiveKey: string; private cacheActiveKey: string;
constructor(props) { constructor(props) {
@ -38,6 +41,7 @@ export default class LeftAreaNav extends PureComponent<LeftAreaNavProps, LeftAre
const defaultKey = (visiblePanelPluginList[0] && visiblePanelPluginList[0].pluginKey) || 'componentAttr'; const defaultKey = (visiblePanelPluginList[0] && visiblePanelPluginList[0].pluginKey) || 'componentAttr';
this.handlePluginChange(defaultKey); this.handlePluginChange(defaultKey);
} }
componentWillUnmount() { componentWillUnmount() {
this.editor.off('skeleton.update', this.handleSkeletonUpdate); this.editor.off('skeleton.update', this.handleSkeletonUpdate);
this.editor.off('leftNav.change', this.handlePluginChange); this.editor.off('leftNav.change', this.handlePluginChange);
@ -81,24 +85,24 @@ export default class LeftAreaNav extends PureComponent<LeftAreaNavProps, LeftAre
} }
}; };
handleCollapseClick = (): void => { // handleCollapseClick = (): void => {
const { activeKey } = this.state; // const { activeKey } = this.state;
if (activeKey === 'none') { // if (activeKey === 'none') {
const plugin = this.editor.plugins[this.cacheActiveKey]; // const plugin = this.editor.plugins[this.cacheActiveKey];
if (plugin) { // if (plugin) {
plugin.open().then(() => { // plugin.open().then(() => {
this.updateActiveKey(this.cacheActiveKey); // this.updateActiveKey(this.cacheActiveKey);
}); // });
} // }
} else { // } else {
const plugin = this.editor.plugins[activeKey]; // const plugin = this.editor.plugins[activeKey];
if (plugin) { // if (plugin) {
plugin.close().then(() => { // plugin.close().then(() => {
this.updateActiveKey('none'); // this.updateActiveKey('none');
}); // });
} // }
} // }
}; // };
handlePluginClick = (item: PluginConfig): void => { handlePluginClick = (item: PluginConfig): void => {
if (item.type === 'PanelIcon') { if (item.type === 'PanelIcon') {
@ -115,7 +119,7 @@ export default class LeftAreaNav extends PureComponent<LeftAreaNavProps, LeftAre
this.editor.emit('leftPanel.show', key); this.editor.emit('leftPanel.show', key);
}; };
renderPluginList = (list: Array<PluginConfig> = []): Array<React.ReactElement> => { renderPluginList = (list: PluginConfig[] = []): React.ReactElement[] => {
const { activeKey } = this.state; const { activeKey } = this.state;
return list.map((item, idx) => { return list.map((item, idx) => {
const pluginStatus = this.editor.pluginStatus[item.pluginKey]; const pluginStatus = this.editor.pluginStatus[item.pluginKey];
@ -135,8 +139,8 @@ export default class LeftAreaNav extends PureComponent<LeftAreaNavProps, LeftAre
render() { render() {
const { activeKey } = this.state; const { activeKey } = this.state;
const topList: Array<PluginConfig> = []; const topList: PluginConfig[] = [];
const bottomList: Array<PluginConfig> = []; const bottomList: PluginConfig[] = [];
const visiblePluginList = this.areaManager.getVisiblePluginList(); const visiblePluginList = this.areaManager.getVisiblePluginList();
if (isEmpty(visiblePluginList)){ if (isEmpty(visiblePluginList)){
return null; return null;
@ -154,7 +158,7 @@ export default class LeftAreaNav extends PureComponent<LeftAreaNavProps, LeftAre
<div className="lowcode-left-area-nav"> <div className="lowcode-left-area-nav">
<div className="bottom-area">{this.renderPluginList(bottomList)}</div> <div className="bottom-area">{this.renderPluginList(bottomList)}</div>
<div className="top-area"> <div className="top-area">
<LeftPlugin {/* <LeftPlugin
editor={this.editor} editor={this.editor}
key="collapse" key="collapse"
config={{ config={{
@ -166,7 +170,7 @@ export default class LeftAreaNav extends PureComponent<LeftAreaNavProps, LeftAre
} }
}} }}
onClick={this.handleCollapseClick} onClick={this.handleCollapseClick}
/> /> */}
{this.renderPluginList(topList)} {this.renderPluginList(topList)}
</div> </div>
</div> </div>

View File

@ -1,57 +1,39 @@
.lowcode-right-area { .lowcode-right-area {
width: 300px; width: 262px;
height: 100%; height: 100%;
background-color: $card-background; background-color: $card-background;
border-left: 1px solid $color-line1-1; border-left: 2px solid $color-line1-1;
.right-plugin-title {
&.locked {
color: red !important;
}
&.active {
color: $color-brand1-9 !important;
}
&.disabled {
cursor: not-allowed;
color: $color-text1-1;
}
}
.right-panel { .right-panel {
overflow: auto; overflow: auto;
border-top: 1px solid $color-line1-1; border-top: 2px solid $color-line1-1;
} }
//tab定义 //tab定义
.next-tabs-wrapped.right-tabs { .right-tabs.next-tabs {
display: flex;
flex-direction: column;
margin-top: -1px;
.next-tabs-bar {
z-index: 1;
}
.next-tabs-nav { .next-tabs-nav {
display: block; width: 100%;
.next-tabs-tab { .next-tabs-tab-inner {
&:first-child { padding-left: 0;
border-left: none; padding-right: 0;
} }
font-size: 14px; .right-plugin-title {
text-align: center; text-align: center;
border-right: none !important; &.locked {
margin-right: 0 !important; color: red !important;
width: 25%; }
&.active { &.active {
background: none; color: $color-brand1-9 !important;
border-bottom-color: $color-line1-1 !important; }
&.disabled {
cursor: not-allowed;
color: $color-text1-1;
}
.next-icon {
line-height: 15px;
margin-right: 2px;
} }
} }
} }
} }
.next-tabs-content {
flex: 1;
.next-tabs-tabpane.active {
height: 100%;
overflow-y: auto;
}
}
} }

View File

@ -18,6 +18,7 @@ export default class RightArea extends PureComponent<RightAreaProps, RightAreaSt
static displayName = 'LowcodeRightArea'; static displayName = 'LowcodeRightArea';
private editor: Editor; private editor: Editor;
private areaManager: AreaManager; private areaManager: AreaManager;
constructor(props) { constructor(props) {
@ -36,6 +37,7 @@ export default class RightArea extends PureComponent<RightAreaProps, RightAreaSt
const defaultKey = (visiblePluginList[0] && visiblePluginList[0].pluginKey) || 'componentAttr'; const defaultKey = (visiblePluginList[0] && visiblePluginList[0].pluginKey) || 'componentAttr';
this.handlePluginChange(defaultKey, true); this.handlePluginChange(defaultKey, true);
} }
componentWillUnmount() { componentWillUnmount() {
this.editor.off('skeleton.update', this.handleSkeletonUpdate); this.editor.off('skeleton.update', this.handleSkeletonUpdate);
this.editor.off('rightNav.change', this.handlePluginChange); this.editor.off('rightNav.change', this.handlePluginChange);
@ -103,19 +105,14 @@ export default class RightArea extends PureComponent<RightAreaProps, RightAreaSt
const renderTitle = (): React.ReactElement => ( const renderTitle = (): React.ReactElement => (
<div <div
className={`right-addon-title ${active ? 'active' : ''} ${locked ? 'locked' : ''} ${ className={`right-plugin-title ${active ? 'active' : ''} ${locked ? 'locked' : ''} ${
disabled ? 'disabled' : '' disabled ? 'disabled' : ''
}`} }`}
> >
{!!icon && ( {!!icon && (
<Icon <Icon
size="xs"
type={icon} type={icon}
style={{
marginRight: 2,
fontSize: '14px',
lineHeight: '14px',
verticalAlign: 'top'
}}
/> />
)} )}
{title} {title}
@ -127,43 +124,45 @@ export default class RightArea extends PureComponent<RightAreaProps, RightAreaSt
return renderTitle(); return renderTitle();
}; };
renderTabPanels = (list:PluginConfig[], height: string):void => { renderTabPanels = (list: PluginConfig[], height: string): void => {
if (isEmpty(list)) { if (isEmpty(list)) {
return null; return null;
} }
return ( return (
<Tab <Tab
shape="wrapped" className="right-tabs"
className="right-tabs" style={{
style={{ height
height }}
}} activeKey={this.state.activeKey}
activeKey={this.state.activeKey} lazyLoad={false}
lazyLoad={false} onChange={this.handlePluginChange}
onChange={this.handlePluginChange} >
> {list.map((item, idx) => {
{list.map((item, idx) => { const Comp = this.editor.components[item.pluginKey];
const Comp = this.editor.components[item.pluginKey]; return (
return ( <Tab.Item
<Tab.Item key={item.pluginKey}
key={item.pluginKey} title={this.renderTabTitle(item)}
title={this.renderTabTitle(item)} disabled={this.editor.pluginStatus[item.pluginKey].disabled}
disabled={this.editor.pluginStatus[item.pluginKey].disabled} style={{
> width: `${100/list.length}%`
<Comp editor={this.editor} config={item} {...item.pluginProps} /> }}
</Tab.Item> >
); <Comp editor={this.editor} config={item} {...item.pluginProps} />
})} </Tab.Item>
</Tab> );
})}
</Tab>
); );
} }
renderPanels = (list:PluginConfig[], height: string):void => { renderPanels = (list: PluginConfig[], height: string): void => {
return list.map((item) => { return list.map((item) => {
const Comp = this.editor.components[item.pluginKey]; const Comp = this.editor.components[item.pluginKey];
return ( return (
<div className="right-panel" style={{height}} key={item.pluginKey}> <div className="right-panel" style={{height}} key={item.pluginKey}>
<Comp editor={this.editor} config={item} {...item.pluginProps} /> <Comp editor={this.editor} config={item} {...item.pluginProps} />
</div> </div>
); );
}); });

View File

@ -3,23 +3,27 @@
top: 0; top: 0;
left: 0; left: 0;
width: 100%; width: 100%;
height: 48px; height: 50px;
background-color: $card-background; background-color: $card-background;
border-bottom: 1px solid $color-line1-1; border-bottom: 2px solid $color-line1-1;
user-select: none; user-select: none;
.divider { .divider {
max-width: 0; max-width: 0;
margin: 8px 12px; margin: 12px 16px;
height: 30px; height: 24px;
border-right: 1px solid $color-line1-2; border-right: 1px solid $color-line1-2;
} }
.next-col { .next-col {
text-align: center; text-align: center;
} }
.left-area {
padding: 0 16px;
}
.right-area { .right-area {
position: absolute; position: absolute;
right: 12px; right: 12px;
top: 0; top: 0;
padding: 0 16px;
height: 100%; height: 100%;
background: $card-background; background: $card-background;
} }

View File

@ -16,6 +16,7 @@ export default class TopArea extends PureComponent<TopAreaProps> {
static displayName = 'LowcodeTopArea'; static displayName = 'LowcodeTopArea';
private areaManager: AreaManager; private areaManager: AreaManager;
private editor: Editor; private editor: Editor;
constructor(props) { constructor(props) {
@ -27,6 +28,7 @@ export default class TopArea extends PureComponent<TopAreaProps> {
componentDidMount() { componentDidMount() {
this.editor.on('skeleton.update', this.handleSkeletonUpdate); this.editor.on('skeleton.update', this.handleSkeletonUpdate);
} }
componentWillUnmount() { componentWillUnmount() {
this.editor.off('skeleton.update', this.handleSkeletonUpdate); this.editor.off('skeleton.update', this.handleSkeletonUpdate);
} }
@ -38,7 +40,7 @@ export default class TopArea extends PureComponent<TopAreaProps> {
} }
}; };
renderPluginList = (list: Array<PluginConfig> = []): Array<React.ReactElement> => { renderPluginList = (list: PluginConfig[] = []): React.ReactElement[] => {
return list.map((item, idx) => { return list.map((item, idx) => {
const isDivider = item.type === 'Divider'; const isDivider = item.type === 'Divider';
return ( return (
@ -46,7 +48,7 @@ export default class TopArea extends PureComponent<TopAreaProps> {
className={isDivider ? 'divider' : ''} className={isDivider ? 'divider' : ''}
key={isDivider ? idx : item.pluginKey} key={isDivider ? idx : item.pluginKey}
style={{ style={{
width: (item.props && item.props.width) || 40, width: (item.props && item.props.width) || 36,
flex: 'none' flex: 'none'
}} }}
> >
@ -59,8 +61,8 @@ export default class TopArea extends PureComponent<TopAreaProps> {
}; };
render() { render() {
const leftList: Array<PluginConfig> = []; const leftList: PluginConfig[] = [];
const rightList: Array<PluginConfig> = []; const rightList: PluginConfig[] = [];
const visiblePluginList = this.areaManager.getVisiblePluginList(); const visiblePluginList = this.areaManager.getVisiblePluginList();
visiblePluginList.forEach(item => { visiblePluginList.forEach(item => {
const align = item.props && item.props.align === 'right' ? 'right' : 'left'; const align = item.props && item.props.align === 'right' ? 'right' : 'left';