Skip to content

Commit

Permalink
fix: tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mathuo authored and mathuo committed Jun 7, 2021
1 parent ccd8e7f commit 850ce4f
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 7 deletions.
14 changes: 11 additions & 3 deletions packages/dockview/src/__tests__/groupview/groupview.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ import { fireEvent } from '@testing-library/dom';
import { LocalSelectionTransfer } from '../../dnd/dataTransfer';
import { Position } from '../../dnd/droptarget';
import { GroupviewPanel } from '../../groupview/groupviewPanel';
import { GroupOptions, GroupDropEvent } from '../../groupview/groupview';
import { DockviewPanelApi } from '../../api/groupPanelApi';
import {
DefaultGroupPanelView,
IGroupPanelView,
} from '../../react/dockview/v2/defaultGroupPanelView';
import { GroupOptions, GroupDropEvent } from '../../groupview/groupview';
import { DockviewPanelApi } from '../../api/groupPanelApi';
} from '../../dockview/defaultGroupPanelView';

class Watermark implements IWatermarkRenderer {
public readonly element = document.createElement('div');
Expand Down Expand Up @@ -137,6 +137,14 @@ class TestPanel implements IGroupPanel {
private _onDidChangeState = new Emitter<void>();
readonly onDidStateChange = this._onDidChangeState.event;

get title() {
return '';
}

get suppressClosable() {
return false;
}

get group() {
return this._group;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
import { GroupviewPanel } from '../../../groupview/groupviewPanel';
import { CompositeDisposable } from '../../../lifecycle';
import { PanelUpdateEvent } from '../../../panel/types';
import { IGroupPanelView } from '../../../react/dockview/v2/defaultGroupPanelView';
import { IGroupPanelView } from '../../../dockview/defaultGroupPanelView';

class TestContentRenderer
extends CompositeDisposable
Expand Down
8 changes: 5 additions & 3 deletions packages/dockview/src/dockview/dockviewGroupPanel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,17 +104,19 @@ export class DockviewGroupPanel
public toJSON(): GroupviewPanelState {
const state = this.api.getState();

return {
const objectState: GroupviewPanelState = {
id: this.id,
view: this.view!.toJSON(),
params:
Object.keys(this._params || {}).length > 0
? this._params
: undefined,
title: this._params?.title as string,
suppressClosable: this._params?.suppressClosable,
state: state && Object.keys(state).length > 0 ? state : undefined,
suppressClosable: this.suppressClosable || undefined,
title: this.title,
};

return objectState;
}

public update(event: GroupPanelUpdateEvent): void {
Expand Down

0 comments on commit 850ce4f

Please sign in to comment.