@netless/window-manager 0.4.33 → 0.4.36

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.es.js CHANGED
@@ -1471,6 +1471,10 @@ class AppProxy {
1471
1471
  });
1472
1472
  if (this.isAddApp && this.box) {
1473
1473
  this.store.updateAppState(appId, AppAttributes.ZIndex, this.box.zIndex);
1474
+ this.store.updateAppState(appId, AppAttributes.Size, {
1475
+ width: this.box.intrinsicWidth,
1476
+ height: this.box.intrinsicHeight
1477
+ });
1474
1478
  this.boxManager.focusBox({ appId }, false);
1475
1479
  }
1476
1480
  } catch (error) {
@@ -2281,14 +2285,6 @@ class AppManager {
2281
2285
  this.appProxies.forEach((appProxy) => {
2282
2286
  appProxy.emitAppIsWritableChange();
2283
2287
  });
2284
- if (isWritable === true) {
2285
- this.mainView.disableCameraTransform = false;
2286
- if (this.room && this.room.disableSerialization === true) {
2287
- this.room.disableSerialization = false;
2288
- }
2289
- } else {
2290
- this.mainView.disableCameraTransform = true;
2291
- }
2292
2288
  emitter.emit("writableChange", isWritable);
2293
2289
  };
2294
2290
  this.updateSceneIndex = () => {
@@ -2656,6 +2652,7 @@ class AppManager {
2656
2652
  }
2657
2653
  }
2658
2654
  async onReconnected() {
2655
+ this.attributesUpdateCallback(this.attributes.apps);
2659
2656
  const appProxies = Array.from(this.appProxies.values());
2660
2657
  const reconnected = appProxies.map((appProxy) => {
2661
2658
  return appProxy.onReconnected();
@@ -4597,6 +4594,13 @@ class BoxManager {
4597
4594
  this.context.setAppFocus(topBox.id);
4598
4595
  this.focusBox({ appId: topBox.id }, false);
4599
4596
  }
4597
+ setTimeout(() => {
4598
+ this.teleBoxManager.boxes.forEach((box) => {
4599
+ const width = box.width;
4600
+ const height = box.height;
4601
+ box._size$.setValue({ width: width + 1e-3, height: height + 1e-3 }, true);
4602
+ });
4603
+ }, 100);
4600
4604
  }
4601
4605
  });
4602
4606
  this.teleBoxManager.events.on("maximized", (maximized) => {
@@ -5623,7 +5627,7 @@ class CursorManager {
5623
5627
  return;
5624
5628
  }
5625
5629
  this.updateCursor(this.getType(event), event.clientX, event.clientY);
5626
- }, 16);
5630
+ }, 48);
5627
5631
  this.getPoint = (view, clientX, clientY) => {
5628
5632
  var _a2;
5629
5633
  const rect = (_a2 = view == null ? void 0 : view.divElement) == null ? void 0 : _a2.getBoundingClientRect();
@@ -15097,7 +15101,7 @@ const reconnectRefresher = new ReconnectRefresher({ emitter });
15097
15101
  const _WindowManager = class extends InvisiblePlugin {
15098
15102
  constructor(context) {
15099
15103
  super(context);
15100
- this.version = "0.4.33";
15104
+ this.version = "0.4.36";
15101
15105
  this.dependencies = { "dependencies": { "@juggle/resize-observer": "^3.3.1", "@netless/telebox-insider": "0.2.26", "emittery": "^0.9.2", "lodash": "^4.17.21", "p-retry": "^4.6.1", "side-effect-manager": "^0.1.5", "uuid": "^7.0.3", "video.js": ">=7" }, "peerDependencies": { "white-web-sdk": "^2.16.0" }, "devDependencies": { "@netless/app-docs-viewer": "^0.2.9", "@netless/app-media-player": "0.1.0-beta.5", "@rollup/plugin-commonjs": "^20.0.0", "@rollup/plugin-node-resolve": "^13.0.4", "@rollup/plugin-url": "^6.1.0", "@sveltejs/vite-plugin-svelte": "^1.0.0-next.22", "@tsconfig/svelte": "^2.0.1", "@types/debug": "^4.1.7", "@types/lodash": "^4.14.182", "@types/lodash-es": "^4.17.4", "@types/uuid": "^8.3.1", "@typescript-eslint/eslint-plugin": "^4.30.0", "@typescript-eslint/parser": "^4.30.0", "@vitest/ui": "^0.14.1", "cypress": "^8.7.0", "dotenv": "^10.0.0", "eslint": "^7.32.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-svelte3": "^3.2.0", "jsdom": "^19.0.0", "less": "^4.1.1", "prettier": "^2.3.2", "prettier-plugin-svelte": "^2.4.0", "rollup-plugin-analyzer": "^4.0.0", "rollup-plugin-styles": "^3.14.1", "svelte": "^3.42.4", "typescript": "^4.5.5", "vite": "^2.5.3", "vitest": "^0.14.1", "white-web-sdk": "2.16.10" } };
15102
15106
  this.emitter = callbacks$1;
15103
15107
  this.viewMode = ViewMode.Broadcaster;