2015-10-15 20:06:16 +03:00
|
|
|
'use strict';
|
|
|
|
|
2016-05-10 09:44:44 +03:00
|
|
|
import { ElementRef, ChangeDetectorRef } from '@angular/core';
|
2016-05-06 00:48:41 +03:00
|
|
|
import { BrowserDomAdapter } from '@angular/platform-browser/src/browser/browser_adapter';
|
|
|
|
import { global } from '@angular/core/src/facade/lang';
|
2015-12-14 18:20:40 +03:00
|
|
|
|
2016-05-06 00:48:41 +03:00
|
|
|
import { RedocComponent, BaseComponent, SchemaManager } from '../base';
|
2016-05-07 10:54:44 +03:00
|
|
|
import { ScrollService, Hash, MenuService, OptionsService } from '../../services/index';
|
2015-11-27 00:30:13 +03:00
|
|
|
|
2015-10-15 20:06:16 +03:00
|
|
|
@RedocComponent({
|
|
|
|
selector: 'side-menu',
|
|
|
|
templateUrl: './lib/components/SideMenu/side-menu.html',
|
2016-05-07 10:54:44 +03:00
|
|
|
providers: [ScrollService, MenuService, Hash],
|
2016-05-18 16:59:54 +03:00
|
|
|
styleUrls: ['./lib/components/SideMenu/side-menu.css'],
|
|
|
|
detect: true,
|
|
|
|
onPushOnly: false
|
2015-10-15 20:06:16 +03:00
|
|
|
})
|
2016-05-10 09:44:44 +03:00
|
|
|
@Reflect.metadata('parameters', [[SchemaManager], [ElementRef], [BrowserDomAdapter],
|
|
|
|
[ScrollService], [MenuService], [Hash], [OptionsService], [ChangeDetectorRef]])
|
2016-05-06 00:48:41 +03:00
|
|
|
export class SideMenu extends BaseComponent {
|
2016-05-10 09:44:44 +03:00
|
|
|
constructor(schemaMgr, elementRef, dom, scrollService,
|
|
|
|
menuService, hash, optionsService, detectorRef) {
|
2015-10-15 20:06:16 +03:00
|
|
|
super(schemaMgr);
|
2016-02-11 14:38:44 +03:00
|
|
|
this.$element = elementRef.nativeElement;
|
2016-02-10 16:48:07 +03:00
|
|
|
this.dom = dom;
|
2016-05-07 10:54:44 +03:00
|
|
|
this.scrollService = scrollService;
|
|
|
|
this.menuService = menuService;
|
|
|
|
this.hash = hash;
|
2016-01-21 18:26:54 +03:00
|
|
|
|
|
|
|
this.activeCatCaption = '';
|
|
|
|
this.activeItemCaption = '';
|
2015-11-27 01:43:01 +03:00
|
|
|
|
2016-05-07 10:54:44 +03:00
|
|
|
this.options = optionsService.options;
|
2016-05-10 09:44:44 +03:00
|
|
|
this.detectorRef = detectorRef;
|
2016-05-05 11:05:02 +03:00
|
|
|
|
2016-05-17 19:38:12 +03:00
|
|
|
this.menuService.changed.subscribe((evt) => this.changed(evt));
|
2015-11-29 20:18:01 +03:00
|
|
|
}
|
|
|
|
|
2016-05-17 19:38:12 +03:00
|
|
|
changed({cat, item}) {
|
2016-05-07 10:54:44 +03:00
|
|
|
this.activeCatCaption = cat.name || '';
|
|
|
|
this.activeItemCaption = item && item.summary || '';
|
2016-05-10 09:44:44 +03:00
|
|
|
|
|
|
|
//safari doesn't update bindings if not run changeDetector manually :(
|
|
|
|
this.detectorRef.detectChanges();
|
2015-10-15 21:35:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
activateAndScroll(idx, methodIdx) {
|
2016-01-21 18:26:54 +03:00
|
|
|
if (this.mobileMode()) {
|
|
|
|
this.toggleMobileNav();
|
|
|
|
}
|
2016-05-07 10:54:44 +03:00
|
|
|
this.menuService.activate(idx, methodIdx);
|
|
|
|
this.menuService.scrollToActive();
|
2016-02-07 17:10:32 +03:00
|
|
|
}
|
|
|
|
|
2016-05-07 10:54:44 +03:00
|
|
|
init() {
|
|
|
|
this.$mobileNav = this.dom.querySelector(this.$element, '.mobile-nav');
|
|
|
|
this.$resourcesNav = this.dom.querySelector(this.$element, '#resources-nav');
|
2015-11-27 00:30:13 +03:00
|
|
|
|
2016-05-17 19:38:12 +03:00
|
|
|
//decorate scrollYOffset to account mobile nav
|
|
|
|
this.scrollService.scrollYOffset = () => {
|
2016-05-07 10:54:44 +03:00
|
|
|
let mobileNavOffset = this.$mobileNav.clientHeight;
|
2016-05-17 19:38:12 +03:00
|
|
|
return this.options.scrollYOffset() + mobileNavOffset;
|
2016-05-07 10:54:44 +03:00
|
|
|
};
|
2015-10-15 20:06:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
prepareModel() {
|
|
|
|
this.data = {};
|
2016-05-07 10:54:44 +03:00
|
|
|
this.data.menu = this.menuService.categories;
|
2015-10-15 20:06:16 +03:00
|
|
|
}
|
|
|
|
|
2016-01-21 18:26:54 +03:00
|
|
|
mobileMode() {
|
2016-02-10 16:48:07 +03:00
|
|
|
return this.$mobileNav.clientHeight > 0;
|
2016-01-21 18:26:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
toggleMobileNav() {
|
2016-02-10 16:48:07 +03:00
|
|
|
let dom = this.dom;
|
2016-05-17 19:38:12 +03:00
|
|
|
let $overflowParent = (this.options.$scrollParent === global) ? dom.defaultDoc().body
|
|
|
|
: this.$scrollParent.$scrollParent;
|
2016-02-10 16:48:07 +03:00
|
|
|
if (dom.hasStyle(this.$resourcesNav, 'height')) {
|
|
|
|
dom.removeStyle(this.$resourcesNav, 'height');
|
|
|
|
dom.removeStyle($overflowParent, 'overflow-y');
|
2016-01-21 18:26:54 +03:00
|
|
|
} else {
|
2016-05-17 19:38:12 +03:00
|
|
|
let viewportHeight = this.options.$scrollParent.innerHeight
|
|
|
|
|| this.options.$scrollParent.clientHeight;
|
2016-02-10 16:48:07 +03:00
|
|
|
let height = viewportHeight - this.$mobileNav.getBoundingClientRect().bottom;
|
|
|
|
dom.setStyle($overflowParent, 'overflow-y', 'hidden');
|
|
|
|
dom.setStyle(this.$resourcesNav, 'height', height + 'px');
|
2016-01-21 18:26:54 +03:00
|
|
|
}
|
|
|
|
}
|
2016-05-07 10:54:44 +03:00
|
|
|
|
|
|
|
destroy() {
|
|
|
|
this.scrollService.unbind();
|
|
|
|
this.hash.unbind();
|
|
|
|
}
|
2015-10-15 20:06:16 +03:00
|
|
|
}
|