Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GLSP-1181: Fix support for simultaneously open diagrams #307

Merged
merged 2 commits into from
Nov 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
# Eclipse GLSP Client Changelog

## v2.10.0 - active
## v2.1.0 - active

### Changes

- [diagram] Fix a bug that prevented correct rendering of projection bars when using `GLSPProjectionView` [#298](https://github.com/eclipse-glsp/glsp-client/pull/298)
- [a11y] Improved responsibility and feedback when resizing or moving diagram elements with keyboard-only commands [#295](https://github.com/eclipse-glsp/glsp-client/pull/295)
- [diagram] Extends `configureDiagramOptions` function to also allow partial configuration of `ViewerOptions` [#296](https://github.com/eclipse-glsp/glsp-client/pull/296)
- [diagram] Remove unused handleSetContextActions from ToolPalette [#301](https://github.com/eclipse-glsp/glsp-client/pull/301)

### Breaking Changes
- [diagram] Deprecate `ISModelRootListener` API in favor of `IGModelRootListener` [#303](https://github.com/eclipse-glsp/glsp-client/pull/303)
- [diagram] Ensure that the suggestion container position of the `AutoCompleteWidget` is rendered correctly [#304](https://github.com/eclipse-glsp/glsp-client/pull/304)
- [feature] Extend `ToolPalette`/`CreateOperation` API to support rendering of preview/ghost elements when creating new nodes [#301](https://github.com/eclipse-glsp/glsp-client/pull/301)
- [protocol] Fix a bug in `BaseJsonRpcClient` to ensure that it can handle multiple open diagram sessions [#307](https://github.com/eclipse-glsp/glsp-client/pull/307)

## [v2.0.0 - 14/10/2023](https://github.com/eclipse-glsp/glsp-client/releases/tag/v2.0.0)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import * as sinon from 'sinon';
import { Disposable, Event, MessageConnection, NotificationHandler, ProgressType } from 'vscode-jsonrpc';
import { ActionMessage } from '../../action-protocol/base-protocol';
import { remove } from '../../utils/array-util';
import { Emitter } from '../../utils/event';
import { expectToThrowAsync } from '../../utils/test-util';
import { ClientState } from '../glsp-client';
import { InitializeResult } from '../types';
Expand Down Expand Up @@ -68,13 +69,23 @@ class StubMessageConnection implements MessageConnection {
inspect(): void {}
}

class TestJsonRpcClient extends BaseJsonrpcGLSPClient {
protected override onActionMessageNotificationEmitter = new Emitter<ActionMessage>({
onFirstListenerAdd: () => (this.firstListenerAdded = true),
onLastListenerRemove: () => (this.lastListenerRemoved = true)
});

firstListenerAdded: boolean;
lastListenerRemoved: boolean;
}

describe('Base JSON-RPC GLSP Client', () => {
const sandbox = sinon.createSandbox();
const connection = sandbox.stub<StubMessageConnection>(new StubMessageConnection());
let client = new BaseJsonrpcGLSPClient({ id: 'test', connectionProvider: connection });
let client = new TestJsonRpcClient({ id: 'test', connectionProvider: connection });
async function resetClient(setRunning = true): Promise<void> {
sandbox.reset();
client = new BaseJsonrpcGLSPClient({ id: 'test', connectionProvider: connection });
client = new TestJsonRpcClient({ id: 'test', connectionProvider: connection });
if (setRunning) {
return client.start();
}
Expand Down Expand Up @@ -221,16 +232,24 @@ describe('Base JSON-RPC GLSP Client', () => {
// eslint-disable-next-line @typescript-eslint/no-empty-function
const handler = sandbox.spy((_message: ActionMessage): void => {});

it('should fail if client is not running', async () => {
it('should be registered to message emitter if client is not running', async () => {
await resetClient(false);
await expectToThrowAsync(() => client.onActionMessage(handler));
expect(connection.onNotification.called).to.be.false;
client.onActionMessage(handler);
expect(client.firstListenerAdded).to.be.true;
});

it('should invoked the corresponding connection method', async () => {
it('should be registered to message emitter if client is running', async () => {
await resetClient();
client.onActionMessage(handler, 'someId');
expect(connection.onNotification.withArgs(JsonrpcGLSPClient.ActionMessageNotification).calledOnce).to.be.true;
expect(client.firstListenerAdded).to.be.true;
});
it('should unregister lister if dispose is invoked', () => {
resetClient(false);
const clientId = 'clientId';
const toDispose = client.onActionMessage(handler, clientId);
expect(client.firstListenerAdded).to.be.true;
toDispose.dispose();
expect(client.lastListenerRemoved).to.be.true;
});
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ export class BaseJsonrpcGLSPClient implements GLSPClient {
return this.onServerInitializedEmitter.event;
}

protected onActionMessageNotificationEmitter = new Emitter<ActionMessage>();
protected get onActionMessageNotification(): Event<ActionMessage> {
return this.onActionMessageNotificationEmitter.event;
}

constructor(options: JsonrpcGLSPClient.Options) {
Object.assign(this, options);
this.state = ClientState.Initial;
Expand Down Expand Up @@ -66,7 +71,7 @@ export class BaseJsonrpcGLSPClient implements GLSPClient {
}

onActionMessage(handler: ActionMessageHandler, clientId?: string): Disposable {
return this.checkedConnection.onNotification(JsonrpcGLSPClient.ActionMessageNotification, msg => {
return this.onActionMessageNotification(msg => {
if (!clientId || msg.clientId === clientId) {
handler(msg);
}
Expand Down Expand Up @@ -113,6 +118,7 @@ export class BaseJsonrpcGLSPClient implements GLSPClient {
connection.dispose();
this.state = ClientState.Stopped;
this.onStop = undefined;
this.onActionMessageNotificationEmitter.dispose();
this.connectionPromise = undefined;
this.resolvedConnection = undefined;
}));
Expand All @@ -129,6 +135,7 @@ export class BaseJsonrpcGLSPClient implements GLSPClient {
const connection = typeof this.connectionProvider === 'function' ? await this.connectionProvider() : this.connectionProvider;
connection.onError(data => this.handleConnectionError(data[0], data[1], data[2]));
connection.onClose(() => this.handleConnectionClosed());
connection.onNotification(JsonrpcGLSPClient.ActionMessageNotification, msg => this.onActionMessageNotificationEmitter.fire(msg));
return connection;
}

Expand Down
Loading