refactor: workspaces -> workspaceMetaCollection

This commit is contained in:
alt0
2023-01-10 15:03:28 +08:00
parent b0d68dadcb
commit ff63de2aa5
5 changed files with 35 additions and 37 deletions
+17 -17
View File
@@ -1,5 +1,5 @@
import { Workspaces } from './workspaces'; import { WorkspaceMetaCollection } from './workspace-meta-collection.js';
import type { WorkspacesChangeEvent } from './workspaces'; import type { WorkspaceMetaCollectionChangeEvent } from './workspace-meta-collection';
import { Workspace as BlocksuiteWorkspace } from '@blocksuite/store'; import { Workspace as BlocksuiteWorkspace } from '@blocksuite/store';
import { BaseProvider } from './provider/base'; import { BaseProvider } from './provider/base';
import { LocalProvider } from './provider/local/local'; import { LocalProvider } from './provider/local/local';
@@ -15,7 +15,7 @@ import { createBlocksuiteWorkspace } from './utils/index.js';
* @classdesc Data center is made for managing different providers for business * @classdesc Data center is made for managing different providers for business
*/ */
export class DataCenter { export class DataCenter {
private readonly _workspaces = new Workspaces(); private readonly _workspaceMetaCollection = new WorkspaceMetaCollection();
private readonly _logger = getLogger('dc'); private readonly _logger = getLogger('dc');
private _workspaceInstances: Map<string, BlocksuiteWorkspace> = new Map(); private _workspaceInstances: Map<string, BlocksuiteWorkspace> = new Map();
/** /**
@@ -34,13 +34,13 @@ export class DataCenter {
dc.registerProvider( dc.registerProvider(
new LocalProvider({ new LocalProvider({
logger: dc._logger, logger: dc._logger,
workspaces: dc._workspaces.createScope(), workspaces: dc._workspaceMetaCollection.createScope(),
}) })
); );
dc.registerProvider( dc.registerProvider(
new AffineProvider({ new AffineProvider({
logger: dc._logger, logger: dc._logger,
workspaces: dc._workspaces.createScope(), workspaces: dc._workspaceMetaCollection.createScope(),
}) })
); );
@@ -69,7 +69,7 @@ export class DataCenter {
} }
public get workspaces() { public get workspaces() {
return this._workspaces.workspaces; return this._workspaceMetaCollection.workspaces;
} }
public async refreshWorkspaces() { public async refreshWorkspaces() {
@@ -104,7 +104,7 @@ export class DataCenter {
* @param {string} workspaceId workspace id * @param {string} workspaceId workspace id
*/ */
public async deleteWorkspace(workspaceId: string) { public async deleteWorkspace(workspaceId: string) {
const workspaceInfo = this._workspaces.find(workspaceId); const workspaceInfo = this._workspaceMetaCollection.find(workspaceId);
assert(workspaceInfo, 'Workspace not found'); assert(workspaceInfo, 'Workspace not found');
const provider = this.providerMap.get(workspaceInfo.provider); const provider = this.providerMap.get(workspaceInfo.provider);
assert(provider, `Workspace exists, but we couldn't find its provider.`); assert(provider, `Workspace exists, but we couldn't find its provider.`);
@@ -116,7 +116,7 @@ export class DataCenter {
* @param {string} workspaceId workspace id * @param {string} workspaceId workspace id
*/ */
private _getBlocksuiteWorkspace(workspaceId: string) { private _getBlocksuiteWorkspace(workspaceId: string) {
const workspaceInfo = this._workspaces.find(workspaceId); const workspaceInfo = this._workspaceMetaCollection.find(workspaceId);
assert(workspaceInfo, 'Workspace not found'); assert(workspaceInfo, 'Workspace not found');
return ( return (
this._workspaceInstances.get(workspaceId) || this._workspaceInstances.get(workspaceId) ||
@@ -150,7 +150,7 @@ export class DataCenter {
* @returns {Promise<BlocksuiteWorkspace>} * @returns {Promise<BlocksuiteWorkspace>}
*/ */
public async loadWorkspace(workspaceId: string) { public async loadWorkspace(workspaceId: string) {
const workspaceInfo = this._workspaces.find(workspaceId); const workspaceInfo = this._workspaceMetaCollection.find(workspaceId);
assert(workspaceInfo, 'Workspace not found'); assert(workspaceInfo, 'Workspace not found');
const currentProvider = this.providerMap.get(workspaceInfo.provider); const currentProvider = this.providerMap.get(workspaceInfo.provider);
if (currentProvider) { if (currentProvider) {
@@ -181,9 +181,9 @@ export class DataCenter {
* @param {Function} callback callback function * @param {Function} callback callback function
*/ */
public async onWorkspacesChange( public async onWorkspacesChange(
callback: (workspaces: WorkspacesChangeEvent) => void callback: (workspaces: WorkspaceMetaCollectionChangeEvent) => void
) { ) {
this._workspaces.on('change', callback); this._workspaceMetaCollection.on('change', callback);
} }
/** /**
@@ -206,7 +206,7 @@ export class DataCenter {
update.avatar = avatar; update.avatar = avatar;
} }
// may run for change workspace meta // may run for change workspace meta
const workspaceInfo = this._workspaces.find(workspace.room); const workspaceInfo = this._workspaceMetaCollection.find(workspace.room);
assert(workspaceInfo, 'Workspace not found'); assert(workspaceInfo, 'Workspace not found');
const provider = this.providerMap.get(workspaceInfo.provider); const provider = this.providerMap.get(workspaceInfo.provider);
provider?.updateWorkspaceMeta(workspace.room, update); provider?.updateWorkspaceMeta(workspace.room, update);
@@ -218,7 +218,7 @@ export class DataCenter {
* @param id workspace id * @param id workspace id
*/ */
public async leaveWorkspace(workspaceId: string) { public async leaveWorkspace(workspaceId: string) {
const workspaceInfo = this._workspaces.find(workspaceId); const workspaceInfo = this._workspaceMetaCollection.find(workspaceId);
assert(workspaceInfo, 'Workspace not found'); assert(workspaceInfo, 'Workspace not found');
const provider = this.providerMap.get(workspaceInfo.provider); const provider = this.providerMap.get(workspaceInfo.provider);
if (provider) { if (provider) {
@@ -228,7 +228,7 @@ export class DataCenter {
} }
public async setWorkspacePublish(workspaceId: string, isPublish: boolean) { public async setWorkspacePublish(workspaceId: string, isPublish: boolean) {
const workspaceInfo = this._workspaces.find(workspaceId); const workspaceInfo = this._workspaceMetaCollection.find(workspaceId);
assert(workspaceInfo, 'Workspace not found'); assert(workspaceInfo, 'Workspace not found');
const provider = this.providerMap.get(workspaceInfo.provider); const provider = this.providerMap.get(workspaceInfo.provider);
if (provider) { if (provider) {
@@ -237,7 +237,7 @@ export class DataCenter {
} }
public async inviteMember(id: string, email: string) { public async inviteMember(id: string, email: string) {
const workspaceInfo = this._workspaces.find(id); const workspaceInfo = this._workspaceMetaCollection.find(id);
assert(workspaceInfo, 'Workspace not found'); assert(workspaceInfo, 'Workspace not found');
const provider = this.providerMap.get(workspaceInfo.provider); const provider = this.providerMap.get(workspaceInfo.provider);
if (provider) { if (provider) {
@@ -250,7 +250,7 @@ export class DataCenter {
* @param {number} permissionId permission id * @param {number} permissionId permission id
*/ */
public async removeMember(workspaceId: string, permissionId: number) { public async removeMember(workspaceId: string, permissionId: number) {
const workspaceInfo = this._workspaces.find(workspaceId); const workspaceInfo = this._workspaceMetaCollection.find(workspaceId);
assert(workspaceInfo, 'Workspace not found'); assert(workspaceInfo, 'Workspace not found');
const provider = this.providerMap.get(workspaceInfo.provider); const provider = this.providerMap.get(workspaceInfo.provider);
if (provider) { if (provider) {
@@ -281,7 +281,7 @@ export class DataCenter {
providerId: string providerId: string
) { ) {
assert(workspace.room, 'No workspace id'); assert(workspace.room, 'No workspace id');
const workspaceInfo = this._workspaces.find(workspace.room); const workspaceInfo = this._workspaceMetaCollection.find(workspace.room);
assert(workspaceInfo, 'Workspace not found'); assert(workspaceInfo, 'Workspace not found');
if (workspaceInfo.provider === providerId) { if (workspaceInfo.provider === providerId) {
this._logger('Workspace provider is same'); this._logger('Workspace provider is same');
+3 -3
View File
@@ -1,6 +1,6 @@
import { Workspace as BlocksuiteWorkspace, uuidv4 } from '@blocksuite/store'; import { Workspace as BlocksuiteWorkspace, uuidv4 } from '@blocksuite/store';
import { Logger, User, WorkspaceInfo, WorkspaceMeta } from '../types'; import { Logger, User, WorkspaceInfo, WorkspaceMeta } from '../types';
import type { WorkspacesScope } from '../workspaces'; import type { WorkspaceMetaCollectionScope } from '../workspace-meta-collection';
const defaultLogger = () => { const defaultLogger = () => {
return; return;
@@ -8,12 +8,12 @@ const defaultLogger = () => {
export interface ProviderConstructorParams { export interface ProviderConstructorParams {
logger?: Logger; logger?: Logger;
workspaces: WorkspacesScope; workspaces: WorkspaceMetaCollectionScope;
} }
export class BaseProvider { export class BaseProvider {
public readonly id: string = 'base'; public readonly id: string = 'base';
protected _workspaces!: WorkspacesScope; protected _workspaces!: WorkspaceMetaCollectionScope;
protected _logger!: Logger; protected _logger!: Logger;
public constructor({ logger, workspaces }: ProviderConstructorParams) { public constructor({ logger, workspaces }: ProviderConstructorParams) {
@@ -1,14 +1,14 @@
import { test, expect } from '@playwright/test'; import { test, expect } from '@playwright/test';
import { Workspaces } from './workspaces.js'; import { WorkspaceMetaCollection } from './workspace-meta-collection.js';
import type { WorkspacesChangeEvent } from './workspaces'; import type { WorkspaceMetaCollectionChangeEvent } from './workspace-meta-collection';
test.describe.serial('workspaces observable', () => { test.describe.serial('workspace meta collection observable', () => {
const workspaces = new Workspaces(); const workspaces = new WorkspaceMetaCollection();
const scope = workspaces.createScope(); const scope = workspaces.createScope();
test('add workspace', () => { test('add workspace', () => {
workspaces.once('change', (event: WorkspacesChangeEvent) => { workspaces.once('change', (event: WorkspaceMetaCollectionChangeEvent) => {
expect(event.added?.id).toEqual('123'); expect(event.added?.id).toEqual('123');
}); });
scope.add({ scope.add({
@@ -30,7 +30,7 @@ test.describe.serial('workspaces observable', () => {
}); });
test('update workspace', () => { test('update workspace', () => {
workspaces.once('change', (event: WorkspacesChangeEvent) => { workspaces.once('change', (event: WorkspaceMetaCollectionChangeEvent) => {
expect(event.updated?.name).toEqual('demo'); expect(event.updated?.name).toEqual('demo');
}); });
scope.update('123', { name: 'demo' }); scope.update('123', { name: 'demo' });
@@ -42,7 +42,7 @@ test.describe.serial('workspaces observable', () => {
}); });
test('delete workspace', () => { test('delete workspace', () => {
workspaces.once('change', (event: WorkspacesChangeEvent) => { workspaces.once('change', (event: WorkspaceMetaCollectionChangeEvent) => {
expect(event.deleted?.id).toEqual('123'); expect(event.deleted?.id).toEqual('123');
}); });
scope.remove('123'); scope.remove('123');
@@ -1,7 +1,7 @@
import { Observable } from 'lib0/observable'; import { Observable } from 'lib0/observable';
import type { WorkspaceInfo, WorkspaceMeta } from '../types'; import type { WorkspaceInfo, WorkspaceMeta } from './types';
export interface WorkspacesScope { export interface WorkspaceMetaCollectionScope {
get: (workspaceId: string) => WorkspaceInfo | undefined; get: (workspaceId: string) => WorkspaceInfo | undefined;
list: () => WorkspaceInfo[]; list: () => WorkspaceInfo[];
add: (workspace: WorkspaceInfo) => void; add: (workspace: WorkspaceInfo) => void;
@@ -10,13 +10,13 @@ export interface WorkspacesScope {
update: (workspaceId: string, workspaceMeta: Partial<WorkspaceMeta>) => void; update: (workspaceId: string, workspaceMeta: Partial<WorkspaceMeta>) => void;
} }
export interface WorkspacesChangeEvent { export interface WorkspaceMetaCollectionChangeEvent {
added?: WorkspaceInfo; added?: WorkspaceInfo;
deleted?: WorkspaceInfo; deleted?: WorkspaceInfo;
updated?: WorkspaceInfo; updated?: WorkspaceInfo;
} }
export class Workspaces extends Observable<'change'> { export class WorkspaceMetaCollection extends Observable<'change'> {
private _workspacesMap = new Map<string, WorkspaceInfo>(); private _workspacesMap = new Map<string, WorkspaceInfo>();
get workspaces(): WorkspaceInfo[] { get workspaces(): WorkspaceInfo[] {
@@ -27,7 +27,7 @@ export class Workspaces extends Observable<'change'> {
return this._workspacesMap.get(workspaceId); return this._workspacesMap.get(workspaceId);
} }
createScope(): WorkspacesScope { createScope(): WorkspaceMetaCollectionScope {
const scopedWorkspaceIds = new Set<string>(); const scopedWorkspaceIds = new Set<string>();
const get = (workspaceId: string) => { const get = (workspaceId: string) => {
@@ -47,7 +47,7 @@ export class Workspaces extends Observable<'change'> {
this.emit('change', [ this.emit('change', [
{ {
added: workspace, added: workspace,
} as WorkspacesChangeEvent, } as WorkspaceMetaCollectionChangeEvent,
]); ]);
}; };
@@ -69,7 +69,7 @@ export class Workspaces extends Observable<'change'> {
this.emit('change', [ this.emit('change', [
{ {
deleted: workspace, deleted: workspace,
} as WorkspacesChangeEvent, } as WorkspaceMetaCollectionChangeEvent,
]); ]);
} }
return true; return true;
@@ -99,7 +99,7 @@ export class Workspaces extends Observable<'change'> {
this.emit('change', [ this.emit('change', [
{ {
updated: this._workspacesMap.get(workspaceId), updated: this._workspacesMap.get(workspaceId),
} as WorkspacesChangeEvent, } as WorkspaceMetaCollectionChangeEvent,
]); ]);
}; };
@@ -1,2 +0,0 @@
export { Workspaces } from './workspaces.js';
export type { WorkspacesScope, WorkspacesChangeEvent } from './workspaces';