redoc/lib/components/SideMenu/side-menu.ts

163 lines
4.1 KiB
TypeScript
Raw Normal View History

2015-10-15 20:06:16 +03:00
'use strict';
2017-03-30 15:17:08 +03:00
import { Component,
EventEmitter,
Input,
Output,
ElementRef,
ChangeDetectorRef,
OnInit,
OnDestroy
} from '@angular/core';
2016-06-19 17:41:04 +03:00
import { trigger, state, animate, transition, style } from '@angular/core';
2016-08-22 12:12:13 +03:00
import { BaseComponent, SpecManager } from '../base';
2016-12-29 20:20:29 +03:00
import { ScrollService, MenuService, OptionsService, MenuItem, Marker} from '../../services/';
2016-08-28 21:46:10 +03:00
import { BrowserDomAdapter as DOM } from '../../utils/browser-adapter';
2016-09-02 23:18:31 +03:00
const global = window;
@Component({
selector: 'side-menu-items',
templateUrl: './side-menu-items.html',
2017-01-06 14:14:47 +03:00
styleUrls: ['./side-menu-items.css'],
animations: [
trigger('itemAnimation', [
state('collapsed, void',
style({ height: '0px' })),
state('expanded',
style({ height: '*' })),
transition('collapsed <=> expanded', [
animate('200ms ease')
])
])
]
})
export class SideMenuItems {
@Input() items: MenuItem[];
@Output() activate = new EventEmitter<MenuItem>();
activateItem(item) {
this.activate.next(item);
}
}
2016-08-22 12:12:13 +03:00
@Component({
2015-10-15 20:06:16 +03:00
selector: 'side-menu',
templateUrl: './side-menu.html',
2017-01-06 14:14:47 +03:00
styleUrls: ['./side-menu.css']
2015-10-15 20:06:16 +03:00
})
2016-12-19 18:13:39 +03:00
export class SideMenu extends BaseComponent implements OnInit, OnDestroy {
activeCatCaption: string;
activeItemCaption: string;
menuItems: Array<MenuItem>;
private options: any;
private $element: any;
private $mobileNav: any;
private $resourcesNav: any;
private $scrollParent: any;
2017-03-30 15:17:08 +03:00
constructor(
specMgr:SpecManager,
elementRef:ElementRef,
private scrollService:ScrollService,
private menuService:MenuService,
optionsService:OptionsService,
private detectorRef:ChangeDetectorRef,
private marker:Marker
) {
super(specMgr);
this.$element = elementRef.nativeElement;
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-05 11:05:02 +03:00
2016-12-29 20:20:29 +03:00
this.menuService.changedActiveItem.subscribe((evt) => this.changed(evt));
this.menuService.changed.subscribe((evt) => this.detectorRef.detectChanges());
}
changed(item) {
2016-12-25 15:24:58 +03:00
if (!item) {
this.activeCatCaption = '';
this.activeItemCaption = '';
return;
}
if (item.parent) {
this.activeItemCaption = item.name;
this.activeCatCaption = item.parent.name;
} else {
this.activeCatCaption = item.name;
this.activeItemCaption = '';
}
2016-05-10 09:44:44 +03:00
//safari doesn't update bindings if not run changeDetector manually :(
this.detectorRef.detectChanges();
2017-02-14 15:39:03 +03:00
this.scrollActiveIntoView();
2015-10-15 21:35:05 +03:00
}
scrollActiveIntoView() {
let $item = this.$element.querySelector('li.active, label.active');
2017-02-14 15:39:03 +03:00
if ($item) $item.scrollIntoViewIfNeeded();
}
activateAndScroll(item) {
2016-12-25 15:24:58 +03:00
if (this.mobileMode) {
2016-01-21 18:26:54 +03:00
this.toggleMobileNav();
}
this.menuService.activate(item.flatIdx);
2016-05-07 10:54:44 +03:00
this.menuService.scrollToActive();
2016-02-07 17:10:32 +03:00
}
2016-05-07 10:54:44 +03:00
init() {
this.menuItems = this.menuService.items;
2016-08-28 21:46:10 +03:00
this.$mobileNav = DOM.querySelector(this.$element, '.mobile-nav');
this.$resourcesNav = 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
}
2016-12-25 15:24:58 +03:00
get mobileMode() {
return this.$mobileNav.clientHeight > 0;
2016-01-21 18:26:54 +03:00
}
toggleMobileNav() {
2016-08-28 21:46:10 +03:00
let $overflowParent = (this.options.$scrollParent === global) ? DOM.defaultDoc().body
: this.$scrollParent;
2016-08-28 21:46:10 +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;
let height = viewportHeight - this.$mobileNav.getBoundingClientRect().bottom;
2016-08-28 21:46:10 +03:00
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();
2016-12-19 18:13:39 +03:00
this.menuService.destroy();
}
ngOnDestroy() {
this.destroy();
2016-05-07 10:54:44 +03:00
}
2016-08-28 21:46:10 +03:00
ngOnInit() {
this.preinit();
}
2016-12-29 20:20:29 +03:00
ngAfterViewInit() {
}
2015-10-15 20:06:16 +03:00
}