feat(core): 支持自定义Node类

This commit is contained in:
roymondchen 2025-04-02 17:24:02 +08:00
parent 840c2c3c7d
commit 18524d89fb
3 changed files with 13 additions and 3 deletions

View File

@ -49,6 +49,12 @@ export interface AppOptionsConfig {
class App extends EventEmitter {
[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 dsl?: MApp;
public codeDsl?: CodeBlockDSL;

View File

@ -30,7 +30,11 @@ class Env {
isWeb = 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.isIpad = /(iPad).*OS\s([\d_]+)/.test(ua);

View File

@ -18,7 +18,7 @@
import type { Id, MComponent, MContainer, MPage, MPageFragment } from '@tmagic/schema';
import type App from './App';
import App from './App';
import IteratorContainer from './IteratorContainer';
import type { default as TMagicNode } from './Node';
import Node from './Node';
@ -53,7 +53,7 @@ class Page extends Node {
return;
}
const node = new Node({
const node = new ((config.type && App.nodeClassMap.get(config.type)) || Node)({
config,
parent,
page: this,