Skip to content

Commit

Permalink
Merge 8e33bb0 into 75adce3
Browse files Browse the repository at this point in the history
  • Loading branch information
przemyslaw-zan committed Oct 11, 2021
2 parents 75adce3 + 8e33bb0 commit a949976
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/ckeditorinspector.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ html body.ck-inspector-body-expanded {
margin-bottom: var(--ck-inspector-height);
}

html body.ck-inspector-body-collapsed {
margin-bottom: var(--ck-inspector-collapsed-height);
}

.ck-inspector-wrapper * {
box-sizing: border-box;
}
1 change: 1 addition & 0 deletions src/ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ class InspectorUI extends Component {
super( props );

updateBodyHeight( this.props.height );
document.body.style.setProperty( '--ck-inspector-collapsed-height', `${ INSPECTOR_COLLAPSED_HEIGHT }px` );

this.handleInspectorResize = this.handleInspectorResize.bind( this );
}
Expand Down
23 changes: 23 additions & 0 deletions tests/inspector/ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,29 @@ describe( '<InspectorUI />', () => {
expect( document.body.classList.contains( 'ck-inspector-body-collapsed' ) ).to.be.true;
} );

it( 'should define the margin-bottom on the `body` element with the height of the inspector container (non-collapsed)', () => {
expect( document.body.classList.contains( 'ck-inspector-body-expanded' ) ).to.be.true;
expect( document.body.classList.contains( 'ck-inspector-body-collapsed' ) ).to.be.false;

expect( window.getComputedStyle( document.body ).marginBottom ).to.equal( '123px' );
} );

it( 'should define the margin-bottom on the `body` element with the height of the inspector container (collapsed)', () => {
store.dispatch( {
type: 'testAction',
state: {
ui: {
isCollapsed: true
}
}
} );

expect( document.body.classList.contains( 'ck-inspector-body-expanded' ) ).to.be.false;
expect( document.body.classList.contains( 'ck-inspector-body-collapsed' ) ).to.be.true;

expect( window.getComputedStyle( document.body ).marginBottom ).to.equal( '30px' );
} );

describe( 'resizable container', () => {
it( 'should be rendered', () => {
expect( wrapper.find( Rnd ).first() ).to.have.lengthOf( 1 );
Expand Down

0 comments on commit a949976

Please sign in to comment.