2015-12-26 20:44:39 +03:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
import { getChildDebugElement } from 'tests/helpers';
|
|
|
|
import {Component, View, provide} from 'angular2/core';
|
|
|
|
import {BrowserDomAdapter} from 'angular2/platform/browser';
|
|
|
|
|
|
|
|
import {
|
|
|
|
TestComponentBuilder,
|
|
|
|
inject,
|
|
|
|
beforeEach,
|
|
|
|
beforeEachProviders,
|
|
|
|
it
|
|
|
|
} from 'angular2/testing';
|
|
|
|
|
|
|
|
import StickySidebar from 'lib/common/components/StickySidebar/sticky-sidebar';
|
|
|
|
|
|
|
|
describe('Common components', () => {
|
|
|
|
describe('StickySidebar Component', () => {
|
|
|
|
let builder;
|
|
|
|
let component;
|
|
|
|
let fixture;
|
|
|
|
|
|
|
|
beforeEachProviders(() => [
|
|
|
|
provide(BrowserDomAdapter, {useValue: new BrowserDomAdapter()})
|
|
|
|
]);
|
|
|
|
beforeEach(inject([TestComponentBuilder], (tcb) => {
|
|
|
|
builder = tcb;
|
|
|
|
}));
|
|
|
|
beforeEach((done) => {
|
|
|
|
builder.createAsync(TestApp).then(_fixture => {
|
|
|
|
fixture = _fixture;
|
|
|
|
let debugEl = getChildDebugElement(fixture.debugElement, 'sticky-sidebar');
|
|
|
|
component = debugEl.componentInstance;
|
|
|
|
done();
|
|
|
|
}, err => done.fail(err));
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
it('should init component', () => {
|
|
|
|
expect(component).not.toBeNull();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should start unsticked', () => {
|
|
|
|
spyOn(component, 'stick').and.callThrough();
|
|
|
|
fixture.detectChanges();
|
|
|
|
expect(component.stick).not.toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
|
2015-12-27 00:12:10 +03:00
|
|
|
it('should stick if scrolled more than scrollYOffset', () => {
|
2015-12-26 20:44:39 +03:00
|
|
|
spyOn(component, 'stick').and.callThrough();
|
|
|
|
fixture.detectChanges();
|
2016-01-17 22:50:42 +03:00
|
|
|
component.scrollParent = {
|
|
|
|
pageYOffset: 40
|
|
|
|
};
|
2015-12-26 20:44:39 +03:00
|
|
|
component.updatePosition();
|
|
|
|
expect(component.stick).toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
/** Test component that contains an ApiInfo. */
|
|
|
|
@Component({selector: 'test-app'})
|
|
|
|
@View({
|
|
|
|
directives: [StickySidebar],
|
|
|
|
template:
|
|
|
|
`<div style="padding-top: 20px">
|
|
|
|
<div style="height: 20px; position: fixed; top: 0;"> </div>
|
|
|
|
<div style="position: relative">
|
2015-12-27 00:12:10 +03:00
|
|
|
<sticky-sidebar [scrollParent]="scrollParent" [scrollYOffset]="options.scrollYOffset">
|
2015-12-26 20:44:39 +03:00
|
|
|
</sticky-sidebar>
|
|
|
|
</div>
|
|
|
|
</div>`
|
|
|
|
|
|
|
|
})
|
|
|
|
class TestApp {
|
|
|
|
constructor() {
|
|
|
|
this.options = {};
|
2015-12-27 00:12:10 +03:00
|
|
|
this.scrollParent = window;
|
2015-12-27 02:02:17 +03:00
|
|
|
this.options.scrollYOffset = () => 20;
|
2015-12-26 20:44:39 +03:00
|
|
|
}
|
|
|
|
}
|