mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-11 19:36:44 +03:00
003fba8651
Rename schemaMgr to specMgr fix error logs in tests
109 lines
3.3 KiB
TypeScript
109 lines
3.3 KiB
TypeScript
'use strict';
|
|
|
|
import { ElementRef, ChangeDetectorRef } from '@angular/core';
|
|
import { BrowserDomAdapter } from '@angular/platform-browser/src/browser/browser_adapter';
|
|
import { global } from '@angular/core/src/facade/lang';
|
|
import { trigger, state, animate, transition, style } from '@angular/core';
|
|
import { RedocComponent, BaseComponent, SpecManager } from '../base';
|
|
import { ScrollService, Hash, MenuService, OptionsService } from '../../services/index';
|
|
|
|
@RedocComponent({
|
|
selector: 'side-menu',
|
|
templateUrl: './side-menu.html',
|
|
providers: [ScrollService, MenuService, Hash],
|
|
styleUrls: ['./side-menu.css'],
|
|
detect: true,
|
|
onPushOnly: false,
|
|
animations: [
|
|
trigger('itemAnimation', [
|
|
state('collapsed, void',
|
|
style({ height: '0px' })),
|
|
state('expanded',
|
|
style({ height: '*' })),
|
|
transition('collapsed <=> expanded', [
|
|
animate(200)
|
|
])
|
|
])
|
|
],
|
|
})
|
|
export class SideMenu extends BaseComponent {
|
|
$element: any;
|
|
$mobileNav: any;
|
|
$resourcesNav: any;
|
|
$scrollParent: any;
|
|
activeCatCaption: string;
|
|
activeItemCaption: string;
|
|
options: any;
|
|
data: any;
|
|
constructor(specMgr:SpecManager, elementRef:ElementRef, private dom:BrowserDomAdapter,
|
|
private scrollService:ScrollService, private menuService:MenuService, private hash:Hash,
|
|
optionsService:OptionsService, private detectorRef:ChangeDetectorRef) {
|
|
super(specMgr);
|
|
this.$element = elementRef.nativeElement;
|
|
|
|
this.activeCatCaption = '';
|
|
this.activeItemCaption = '';
|
|
|
|
this.options = optionsService.options;
|
|
|
|
this.menuService.changed.subscribe((evt) => this.changed(evt));
|
|
}
|
|
|
|
changed({cat, item}) {
|
|
this.activeCatCaption = cat.name || '';
|
|
this.activeItemCaption = item && item.summary || '';
|
|
|
|
//safari doesn't update bindings if not run changeDetector manually :(
|
|
this.detectorRef.detectChanges();
|
|
}
|
|
|
|
activateAndScroll(idx, methodIdx) {
|
|
if (this.mobileMode()) {
|
|
this.toggleMobileNav();
|
|
}
|
|
this.menuService.activate(idx, methodIdx);
|
|
this.menuService.scrollToActive();
|
|
}
|
|
|
|
init() {
|
|
this.$mobileNav = this.dom.querySelector(this.$element, '.mobile-nav');
|
|
this.$resourcesNav = this.dom.querySelector(this.$element, '#resources-nav');
|
|
|
|
//decorate scrollYOffset to account mobile nav
|
|
this.scrollService.scrollYOffset = () => {
|
|
let mobileNavOffset = this.$mobileNav.clientHeight;
|
|
return this.options.scrollYOffset() + mobileNavOffset;
|
|
};
|
|
}
|
|
|
|
prepareModel() {
|
|
this.data = {};
|
|
this.data.menu = this.menuService.categories;
|
|
}
|
|
|
|
mobileMode() {
|
|
return this.$mobileNav.clientHeight > 0;
|
|
}
|
|
|
|
toggleMobileNav() {
|
|
let dom = this.dom;
|
|
let $overflowParent = (this.options.$scrollParent === global) ? dom.defaultDoc().body
|
|
: this.$scrollParent.$scrollParent;
|
|
if (dom.hasStyle(this.$resourcesNav, 'height')) {
|
|
dom.removeStyle(this.$resourcesNav, 'height');
|
|
dom.removeStyle($overflowParent, 'overflow-y');
|
|
} else {
|
|
let viewportHeight = this.options.$scrollParent.innerHeight
|
|
|| this.options.$scrollParent.clientHeight;
|
|
let height = viewportHeight - this.$mobileNav.getBoundingClientRect().bottom;
|
|
dom.setStyle($overflowParent, 'overflow-y', 'hidden');
|
|
dom.setStyle(this.$resourcesNav, 'height', height + 'px');
|
|
}
|
|
}
|
|
|
|
destroy() {
|
|
this.scrollService.unbind();
|
|
this.hash.unbind();
|
|
}
|
|
}
|