fix(core): 非浏览器环境屏蔽相关代码

This commit is contained in:
roymondchen 2023-03-22 19:28:53 +08:00
parent a4f32ef8dc
commit 36c4ffa02e
2 changed files with 6 additions and 2 deletions

View File

@ -68,7 +68,7 @@ class App extends EventEmitter {
options.designWidth && (this.designWidth = options.designWidth);
// 根据屏幕大小计算出跟节点的font-size用于rem样式的适配
if (this.platform === 'mobile' || this.platform === 'editor') {
if (this.jsEngine === 'browser') {
const calcFontsize = () => {
const { width } = document.documentElement.getBoundingClientRect();
const fontSize = width / (this.designWidth / 100);

View File

@ -75,6 +75,8 @@ const commonClickEventHandler = (app: App, eventName: string, e: any) => {
};
export const bindCommonEventListener = (app: App) => {
if (app.jsEngine !== 'browser') return;
window.document.body.addEventListener('click', (e: any) => {
commonClickEventHandler(app, 'click', e);
});
@ -91,6 +93,8 @@ export const bindCommonEventListener = (app: App) => {
export const triggerCommonMethod = (methodName: string, node: Node) => {
const { instance } = node;
if (!instance) return;
switch (methodName.replace(COMMON_METHOD_PREFIX, '')) {
case CommonMethod.SHOW:
instance.show();
@ -101,7 +105,7 @@ export const triggerCommonMethod = (methodName: string, node: Node) => {
break;
case CommonMethod.SCROLL_TO_VIEW:
instance.$el.scrollIntoView({ behavior: 'smooth' });
instance.$el?.scrollIntoView({ behavior: 'smooth' });
break;
case CommonMethod.SCROLL_TO_TOP: