@netless/window-manager 1.0.0-canary.44 → 1.0.0-canary.47

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@netless/window-manager",
3
- "version": "1.0.0-canary.44",
3
+ "version": "1.0.0-canary.47",
4
4
  "description": "",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.es.js",
@@ -25,7 +25,7 @@
25
25
  },
26
26
  "dependencies": {
27
27
  "@juggle/resize-observer": "^3.3.1",
28
- "@netless/telebox-insider": "1.0.0-alpha.35",
28
+ "@netless/telebox-insider": "1.0.0-alpha.36",
29
29
  "emittery": "^0.11.0",
30
30
  "lodash": "^4.17.21",
31
31
  "p-retry": "^4.6.2",
@@ -34,7 +34,7 @@
34
34
  "value-enhancer": "^1.3.2"
35
35
  },
36
36
  "devDependencies": {
37
- "@netless/app-docs-viewer": "^0.3.0",
37
+ "@netless/app-docs-viewer": "^0.3.2",
38
38
  "@netless/app-plyr": "0.2.0",
39
39
  "@playwright/test": "^1.23.2",
40
40
  "@rollup/plugin-commonjs": "^20.0.0",
package/pnpm-lock.yaml CHANGED
@@ -2,9 +2,9 @@ lockfileVersion: 5.4
2
2
 
3
3
  specifiers:
4
4
  '@juggle/resize-observer': ^3.3.1
5
- '@netless/app-docs-viewer': ^0.3.0
5
+ '@netless/app-docs-viewer': ^0.3.2
6
6
  '@netless/app-plyr': 0.2.0
7
- '@netless/telebox-insider': 1.0.0-alpha.35
7
+ '@netless/telebox-insider': 1.0.0-alpha.36
8
8
  '@playwright/test': ^1.23.2
9
9
  '@rollup/plugin-commonjs': ^20.0.0
10
10
  '@rollup/plugin-node-resolve': ^13.0.4
@@ -45,7 +45,7 @@ specifiers:
45
45
 
46
46
  dependencies:
47
47
  '@juggle/resize-observer': 3.3.1
48
- '@netless/telebox-insider': 1.0.0-alpha.35
48
+ '@netless/telebox-insider': 1.0.0-alpha.36
49
49
  emittery: 0.11.0
50
50
  lodash: 4.17.21
51
51
  p-retry: 4.6.2
@@ -54,7 +54,7 @@ dependencies:
54
54
  value-enhancer: 1.3.2
55
55
 
56
56
  devDependencies:
57
- '@netless/app-docs-viewer': 0.3.0
57
+ '@netless/app-docs-viewer': 0.3.2
58
58
  '@netless/app-plyr': 0.2.0
59
59
  '@playwright/test': 1.23.2
60
60
  '@rollup/plugin-commonjs': 20.0.0
@@ -231,8 +231,8 @@ packages:
231
231
  resolution: {integrity: sha512-6Wci+Tp3CgPt/B9B0a3J4s3yMgLNSku6w5TV6mN+61C71UqsRBv2FUibBf3tPGlNxebgPHMEUzKpb1ggE8KCKw==}
232
232
  dev: true
233
233
 
234
- /@netless/app-docs-viewer/0.3.0:
235
- resolution: {integrity: sha512-L+637oRiLvROQzcppvod2Qwmri1qg0GBMuQKow1Qsrt4HT2KYjAXz8ShBELcUs/+ISgvsyont0CipiBrBlbYsA==}
234
+ /@netless/app-docs-viewer/0.3.2:
235
+ resolution: {integrity: sha512-3gO8/AblCYQlu5kEnvI6+qJBu0VycSnIyVXfP6xu5obHHfF5aa+JGnDJ1/wZ+8DpvaydhWTuKvv+oVtuXDG0gg==}
236
236
  dependencies:
237
237
  remitter: 0.2.6
238
238
  value-enhancer: 1.3.2
@@ -247,8 +247,8 @@ packages:
247
247
  resolution: {integrity: sha512-7NzsJrba0R/mq/l10SkIZQwbrNVJyPxZYrjK6xL3Ts732iWAVuS2UB0u3s6iGeUVcqV39A679yva8APWRl4M0A==}
248
248
  dev: true
249
249
 
250
- /@netless/telebox-insider/1.0.0-alpha.35:
251
- resolution: {integrity: sha512-uX/PUEoG/+CoaigeoWH+U07io93n+T89VjJDl5FRnd3gc/QfYf3ASSDQ9+7GjbOBUDUFwYHqVIxEhU67mGXCbw==}
250
+ /@netless/telebox-insider/1.0.0-alpha.36:
251
+ resolution: {integrity: sha512-wW0/pmagLt1pzV7PfCWJAAsOm4+RED6GEh2mOSTGS/q6lIOV8Qjoe0MizaR3ild7d6rg/kIFj2II3IYF0d+OiA==}
252
252
  dependencies:
253
253
  '@juggle/resize-observer': 3.3.1
254
254
  '@types/shallowequal': 1.1.1
@@ -180,10 +180,11 @@ export class AppContext<TAttributes = any, TMagixEventPayloads = any, TAppOption
180
180
  return this.manager.members$.value;
181
181
  }
182
182
 
183
- public get currentMember(): Member {
183
+ //** currentMember is undefined in read-only and replay mode. */
184
+ public get currentMember(): Member | undefined {
184
185
  const self = findMemberByUid(this.room, this.manager.uid);
185
186
  if (!self) {
186
- throw new Error(`Member ${this.manager.uid} not found.`);
187
+ return undefined;
187
188
  }
188
189
  return {
189
190
  uid: this.manager.uid,
@@ -2,7 +2,7 @@ import type { SceneDefinition } from "white-web-sdk";
2
2
 
3
3
  export type AddPageParams = {
4
4
  after?: boolean;
5
- scene?: SceneDefinition;
5
+ scene?: SceneDefinition | SceneDefinition[];
6
6
  };
7
7
 
8
8
  export type PageState = {
@@ -30,7 +30,25 @@ export class ViewSync {
30
30
  private synchronizer: CameraSynchronizer;
31
31
 
32
32
  constructor(private context: ViewSyncContext) {
33
- this.synchronizer = new CameraSynchronizer((camera: ICamera) => {
33
+ this.synchronizer = this.createSynchronizer();
34
+ this.bindView(this.context.view$.value);
35
+ this.sem.add(() => [
36
+ this.subscribeView(),
37
+ this.subscribeCamera(),
38
+ this.subscribeSize(),
39
+ this.subscribeStageRect(),
40
+ ]);
41
+ const camera$size$ = combine([this.context.camera$, this.context.size$]);
42
+ camera$size$.reaction(([camera, size]) => {
43
+ if (camera && size) {
44
+ this.synchronizer.onRemoteUpdate(camera, size);
45
+ camera$size$.destroy();
46
+ }
47
+ });
48
+ }
49
+
50
+ private createSynchronizer = () => {
51
+ return new CameraSynchronizer((camera: ICamera) => {
34
52
  this.context.camera$.setValue(camera, true);
35
53
  const notStoreCamera =
36
54
  this.context.viewMode$ && this.context.viewMode$.value === ViewMode.Freedom;
@@ -40,42 +58,44 @@ export class ViewSync {
40
58
  this.context.storeCamera(camera);
41
59
  }
42
60
  });
43
- this.bindView(this.context.view$.value);
44
- this.sem.add(() => [
45
- this.context.view$.subscribe(view => {
46
- const currentCamera = this.context.camera$.value;
47
- if (currentCamera && this.context.size$.value) {
48
- view?.moveCamera({
49
- scale: 1,
50
- animationMode: AnimationMode.Immediately,
51
- });
52
- this.synchronizer.onRemoteUpdate(currentCamera, this.context.size$.value);
53
- }
54
-
55
- this.bindView(view);
56
- }),
57
- this.context.camera$.subscribe((camera, skipUpdate) => {
58
- const size = this.context.size$.value;
59
- if (camera && size && !skipUpdate) {
60
- this.synchronizer.onRemoteUpdate(camera, size);
61
- }
62
- }),
63
- this.context.size$.subscribe(size => {
64
- if (size) {
65
- this.synchronizer.onRemoteSizeUpdate(size);
66
- }
67
- }),
68
- this.context.stageRect$.subscribe(rect => {
69
- if (rect) {
70
- this.synchronizer.setRect(rect);
71
- }
72
- })
73
- ]);
74
- const camera$size$ = combine([this.context.camera$, this.context.size$]);
75
- camera$size$.reaction(([camera, size]) => {
61
+ }
62
+
63
+ private subscribeView = () => {
64
+ return this.context.view$.subscribe(view => {
65
+ const currentCamera = this.context.camera$.value;
66
+ if (currentCamera && this.context.size$.value) {
67
+ view?.moveCamera({
68
+ scale: 1,
69
+ animationMode: AnimationMode.Immediately,
70
+ });
71
+ this.synchronizer.onRemoteUpdate(currentCamera, this.context.size$.value);
72
+ }
73
+ this.bindView(view);
74
+ });
75
+ }
76
+
77
+ private subscribeCamera = () => {
78
+ return this.context.camera$.subscribe((camera, skipUpdate) => {
79
+ if (skipUpdate) return;
80
+ const size = this.context.size$.value;
76
81
  if (camera && size) {
77
82
  this.synchronizer.onRemoteUpdate(camera, size);
78
- camera$size$.destroy();
83
+ }
84
+ });
85
+ }
86
+
87
+ private subscribeSize = () => {
88
+ return this.context.size$.subscribe(size => {
89
+ if (size) {
90
+ this.synchronizer.onRemoteSizeUpdate(size);
91
+ }
92
+ });
93
+ }
94
+
95
+ private subscribeStageRect = () => {
96
+ return this.context.stageRect$.subscribe(rect => {
97
+ if (rect) {
98
+ this.synchronizer.setRect(rect);
79
99
  }
80
100
  });
81
101
  }
package/src/index.ts CHANGED
@@ -185,6 +185,7 @@ export class WindowManager extends InvisiblePlugin<WindowMangerAttributes> imple
185
185
  private static params?: MountParams;
186
186
 
187
187
  private cameraUpdating = 0;
188
+ private nextCamera: Camera | null = null;
188
189
 
189
190
  public containerSizeRatio = WindowManager.containerSizeRatio;
190
191
 
@@ -538,12 +539,13 @@ export class WindowManager extends InvisiblePlugin<WindowMangerAttributes> imple
538
539
  public async addPage(params?: AddPageParams): Promise<void> {
539
540
  if (this.appManager) {
540
541
  const after = params?.after;
541
- const scene = params?.scene;
542
+ const scene = params?.scene || {};
543
+ const scenes = Array.isArray(scene) ? scene : [scene];
542
544
  if (after) {
543
545
  const nextIndex = this.mainViewSceneIndex + 1;
544
- this.room.putScenes(ROOT_DIR, [scene || {}], nextIndex);
546
+ this.room.putScenes(ROOT_DIR, scenes, nextIndex);
545
547
  } else {
546
- this.room.putScenes(ROOT_DIR, [scene || {}]);
548
+ this.room.putScenes(ROOT_DIR, scenes);
547
549
  }
548
550
  }
549
551
  }
@@ -834,27 +836,34 @@ export class WindowManager extends InvisiblePlugin<WindowMangerAttributes> imple
834
836
  this.mainView.moveCamera(camera);
835
837
  }
836
838
  this.appManager.dispatchInternalEvent(Events.MoveCamera, camera);
837
- const onCameraUpdated = () => {
838
- if (this.cameraUpdating) {
839
- clearTimeout(this.cameraUpdating);
840
- }
841
- this.cameraUpdating = setTimeout(() => {
842
- this.mainView.callbacks.off("onCameraUpdated", onCameraUpdated);
843
- clearTimeout(this.cameraUpdating);
844
- this.cameraUpdating = 0;
845
- if (!this.appManager) return;
846
- this.appManager.mainViewProxy.storeCamera({
847
- id: this.appManager.uid,
848
- ...nextCamera
849
- });
850
- }, 50);
839
+ this.mainView.callbacks.off("onCameraUpdated", this.onCameraUpdated);
840
+ clearTimeout(this.cameraUpdating);
841
+ this.cameraUpdating = 0;
842
+ this.mainView.callbacks.on("onCameraUpdated", this.onCameraUpdated);
843
+ if (nextScale) {
844
+ this.nextCamera = { ...nextCamera, scale: nextScale };
851
845
  }
852
- this.mainView.callbacks.off("onCameraUpdated", onCameraUpdated);
853
- this.mainView.callbacks.on("onCameraUpdated", onCameraUpdated);
854
-
855
846
  }
856
847
  };
857
848
 
849
+ private onCameraUpdated = () => {
850
+ if (this.cameraUpdating) {
851
+ clearTimeout(this.cameraUpdating);
852
+ this.cameraUpdating = 0;
853
+ }
854
+ this.cameraUpdating = setTimeout(() => {
855
+ this.mainView.callbacks.off("onCameraUpdated", this.onCameraUpdated);
856
+ clearTimeout(this.cameraUpdating);
857
+ this.cameraUpdating = 0;
858
+ if (!this.appManager || !this.nextCamera) return;
859
+ this.appManager.mainViewProxy.storeCamera({
860
+ id: this.appManager.uid,
861
+ ...this.nextCamera
862
+ });
863
+ this.nextCamera = null;
864
+ }, 50);
865
+ }
866
+
858
867
  public convertToPointInWorld(point: Point): Point {
859
868
  return this.mainView.convertToPointInWorld(point);
860
869
  }
package/src/typings.ts CHANGED
@@ -94,3 +94,4 @@ export type { Storage, StorageStateChangedEvent, StorageStateChangedListener } f
94
94
  export * from "./Page";
95
95
  export * from "./Utils/error";
96
96
  export type { Member } from "./Helper";
97
+ export type { TeleBoxManager, TeleBoxManagerQueryConfig } from "@netless/telebox-insider";
package/vite.config.js CHANGED
@@ -5,8 +5,8 @@ import { svelte } from "@sveltejs/vite-plugin-svelte";
5
5
  import { dependencies, peerDependencies, version, devDependencies } from "./package.json"
6
6
  import { omit } from "lodash";
7
7
 
8
- export default defineConfig(({ mode }) => {
9
- const isProd = mode === "production";
8
+ export default defineConfig(() => {
9
+ // const isProd = mode === "production";
10
10
 
11
11
  return {
12
12
  test: {
@@ -40,7 +40,8 @@ export default defineConfig(({ mode }) => {
40
40
  entry: path.resolve(__dirname, "src/index.ts"),
41
41
  formats: ["es", "umd", "cjs"],
42
42
  name: "WindowManager",
43
- fileName: "index"
43
+ fileName: "index",
44
+
44
45
  },
45
46
  outDir: "dist",
46
47
  rollupOptions: {
@@ -49,7 +50,7 @@ export default defineConfig(({ mode }) => {
49
50
  ...peerDependencies,
50
51
  }),
51
52
  },
52
- minify: isProd
53
+ minify: false
53
54
  },
54
55
  };
55
56
  })