mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 07:27:09 +08:00
feat(core): 支持自定义Node类
This commit is contained in:
parent
840c2c3c7d
commit
18524d89fb
@ -49,6 +49,12 @@ export interface AppOptionsConfig {
|
|||||||
|
|
||||||
class App extends EventEmitter {
|
class App extends EventEmitter {
|
||||||
[x: string]: any;
|
[x: string]: any;
|
||||||
|
static nodeClassMap = new Map<string, typeof Node>();
|
||||||
|
|
||||||
|
public static registerNode<T extends typeof Node = typeof Node>(type: string, NodeClass: T) {
|
||||||
|
App.nodeClassMap.set(type, NodeClass);
|
||||||
|
}
|
||||||
|
|
||||||
public env: Env = new Env();
|
public env: Env = new Env();
|
||||||
public dsl?: MApp;
|
public dsl?: MApp;
|
||||||
public codeDsl?: CodeBlockDSL;
|
public codeDsl?: CodeBlockDSL;
|
||||||
|
@ -30,7 +30,11 @@ class Env {
|
|||||||
isWeb = false;
|
isWeb = false;
|
||||||
isOpenHarmony = false;
|
isOpenHarmony = false;
|
||||||
|
|
||||||
constructor(ua = globalThis.navigator.userAgent, options: Record<string, boolean | string> = {}) {
|
constructor(ua = globalThis.navigator?.userAgent ?? '', options: Record<string, boolean | string> = {}) {
|
||||||
|
if (!ua) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
this.isIphone = ua.indexOf('iPhone') >= 0;
|
this.isIphone = ua.indexOf('iPhone') >= 0;
|
||||||
|
|
||||||
this.isIpad = /(iPad).*OS\s([\d_]+)/.test(ua);
|
this.isIpad = /(iPad).*OS\s([\d_]+)/.test(ua);
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
|
|
||||||
import type { Id, MComponent, MContainer, MPage, MPageFragment } from '@tmagic/schema';
|
import type { Id, MComponent, MContainer, MPage, MPageFragment } from '@tmagic/schema';
|
||||||
|
|
||||||
import type App from './App';
|
import App from './App';
|
||||||
import IteratorContainer from './IteratorContainer';
|
import IteratorContainer from './IteratorContainer';
|
||||||
import type { default as TMagicNode } from './Node';
|
import type { default as TMagicNode } from './Node';
|
||||||
import Node from './Node';
|
import Node from './Node';
|
||||||
@ -53,7 +53,7 @@ class Page extends Node {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const node = new Node({
|
const node = new ((config.type && App.nodeClassMap.get(config.type)) || Node)({
|
||||||
config,
|
config,
|
||||||
parent,
|
parent,
|
||||||
page: this,
|
page: this,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user