构建
This commit is contained in:
parent
7f4719525a
commit
7dbd032eb8
2
lib/index.d.ts
vendored
2
lib/index.d.ts
vendored
@ -1,4 +1,4 @@
|
|||||||
/// <reference path="../global.d.ts" />
|
/// <reference types="global" />
|
||||||
export * as GraphicsExtras from '@pixi/graphics-extras';
|
export * as GraphicsExtras from '@pixi/graphics-extras';
|
||||||
export * from './app';
|
export * from './app';
|
||||||
export * from './core';
|
export * from './core';
|
||||||
|
11
lib/index.js
11
lib/index.js
@ -5458,6 +5458,7 @@ class MqttMsgClient extends MessageClient {
|
|||||||
this.emit('error', error);
|
this.emit('error', error);
|
||||||
});
|
});
|
||||||
this.cli.on('message', (topic, message) => {
|
this.cli.on('message', (topic, message) => {
|
||||||
|
console.debug('MQTT 收到消息', topic, message);
|
||||||
const handle = this.subMsgHandler.get(topic);
|
const handle = this.subMsgHandler.get(topic);
|
||||||
if (handle) {
|
if (handle) {
|
||||||
if (this.options.protocol === 'json') {
|
if (this.options.protocol === 'json') {
|
||||||
@ -5469,6 +5470,9 @@ class MqttMsgClient extends MessageClient {
|
|||||||
handle(message);
|
handle(message);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
|
console.warn('未找到订阅的消息处理器', topic);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
catch (err) {
|
catch (err) {
|
||||||
@ -5492,13 +5496,15 @@ class MqttMsgClient extends MessageClient {
|
|||||||
}
|
}
|
||||||
unsubscribe0(destination) {
|
unsubscribe0(destination) {
|
||||||
console.debug('MQTT取消订阅执行', destination);
|
console.debug('MQTT取消订阅执行', destination);
|
||||||
|
// 删除指定订阅的消息处理器
|
||||||
|
this.subMsgHandler.delete(destination);
|
||||||
|
// 通知服务器取消订阅
|
||||||
this.cli.unsubscribe(destination, (error, packet) => {
|
this.cli.unsubscribe(destination, (error, packet) => {
|
||||||
if (error) {
|
if (error) {
|
||||||
console.warn('MQTT 取消订阅失败', error);
|
console.warn('MQTT 取消订阅失败', error);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
console.debug('MQTT 取消订阅成功', packet);
|
console.debug('MQTT 取消订阅成功', packet);
|
||||||
this.subMsgHandler.delete(destination);
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@ -6852,6 +6858,9 @@ class GraphicSceneBase extends EventEmitter {
|
|||||||
this._dom = dom;
|
this._dom = dom;
|
||||||
this.pixi.resizeTo = dom;
|
this.pixi.resizeTo = dom;
|
||||||
dom.appendChild(this.pixi.view);
|
dom.appendChild(this.pixi.view);
|
||||||
|
// 绑定dom后,先调整视口
|
||||||
|
this.updateViewport(dom.clientWidth, dom.clientHeight);
|
||||||
|
// 监听dom大小变化
|
||||||
this._viewportResizer = setInterval(() => {
|
this._viewportResizer = setInterval(() => {
|
||||||
this.updateViewport(dom.clientWidth, dom.clientHeight);
|
this.updateViewport(dom.clientWidth, dom.clientHeight);
|
||||||
}, 1000);
|
}, 1000);
|
||||||
|
Loading…
Reference in New Issue
Block a user