123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675 |
- (function (factory) {
- if (typeof module === "object" && typeof module.exports === "object") {
- var v = factory(require, exports);
- if (v !== undefined) module.exports = v;
- }
- else if (typeof define === "function" && define.amd) {
- define(["require", "exports", "@angular/core", "../app/app", "../backdrop/backdrop", "../../config/config", "../content/content", "../../platform/dom-controller", "../../gestures/gesture-controller", "../../util/util", "../../platform/keyboard", "./menu-gestures", "../app/menu-controller", "../nav/nav", "../../platform/platform", "../../gestures/ui-event-manager", "../split-pane/split-pane"], factory);
- }
- })(function (require, exports) {
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- var core_1 = require("@angular/core");
- var app_1 = require("../app/app");
- var backdrop_1 = require("../backdrop/backdrop");
- var config_1 = require("../../config/config");
- var content_1 = require("../content/content");
- var dom_controller_1 = require("../../platform/dom-controller");
- var gesture_controller_1 = require("../../gestures/gesture-controller");
- var util_1 = require("../../util/util");
- var keyboard_1 = require("../../platform/keyboard");
- var menu_gestures_1 = require("./menu-gestures");
- var menu_controller_1 = require("../app/menu-controller");
- var nav_1 = require("../nav/nav");
- var platform_1 = require("../../platform/platform");
- var ui_event_manager_1 = require("../../gestures/ui-event-manager");
- var split_pane_1 = require("../split-pane/split-pane");
- /**
- * @name Menu
- * @description
- * The Menu component is a navigation drawer that slides in from the side of the current
- * view. By default, it slides in from the left, but the side can be overridden. The menu
- * will be displayed differently based on the mode, however the display type can be changed
- * to any of the available [menu types](#menu-types). The menu element should be a sibling
- * to the app's content element. There can be any number of menus attached to the content.
- * These can be controlled from the templates, or programmatically using the [MenuController](../../app/MenuController).
- *
- * @usage
- *
- * ```html
- * <ion-menu [content]="mycontent">
- * <ion-content>
- * <ion-list>
- * <p>some menu content, could be list items</p>
- * </ion-list>
- * </ion-content>
- * </ion-menu>
- *
- * <ion-nav #mycontent [root]="rootPage"></ion-nav>
- * ```
- *
- * To add a menu to an app, the `<ion-menu>` element should be added as a sibling to the `ion-nav` it will belongs
- * to. A [local variable](https://angular.io/docs/ts/latest/guide/user-input.html#local-variables)
- * should be added to the `ion-nav` and passed to the `ion-menu`s `content` property.
- *
- * This tells the menu what it is bound to and what element to watch for gestures.
- * In the below example, `content` is using [property binding](https://angular.io/docs/ts/latest/guide/template-syntax.html#!#property-binding)
- * because `mycontent` is a reference to the `<ion-nav>` element, and not a string.
- *
- *
- * ### Opening/Closing Menus
- *
- * There are several ways to open or close a menu. The menu can be **toggled** open or closed
- * from the template using the [MenuToggle](../MenuToggle) directive. It can also be
- * **closed** from the template using the [MenuClose](../MenuClose) directive. To display a menu
- * programmatically, inject the [MenuController](../MenuController) provider and call any of the
- * `MenuController` methods.
- *
- *
- * ### Menu Types
- *
- * The menu supports several display types: `overlay`, `reveal` and `push`. By default,
- * it will use the correct type based on the mode, but this can be changed. The default
- * type for both Material Design and Windows mode is `overlay`, and `reveal` is the default
- * type for iOS mode. The menu type can be changed in the app's [config](../../config/Config)
- * via the `menuType` property, or passed in the `type` property on the `<ion-menu>` element.
- * See [usage](#usage) below for examples of changing the menu type.
- *
- *
- * ### Navigation Bar Behavior
- *
- * If a [MenuToggle](../MenuToggle) button is added to the [Navbar](../../navbar/Navbar) of
- * a page, the button will only appear when the page it's in is currently a root page. The
- * root page is the initial page loaded in the app, or a page that has been set as the root
- * using the [setRoot](../../nav/NavController/#setRoot) method on the [NavController](../../nav/NavController).
- *
- * For example, say the application has two pages, `Page1` and `Page2`, and both have a
- * `MenuToggle` button in their navigation bars. Assume the initial page loaded into the app
- * is `Page1`, making it the root page. `Page1` will display the `MenuToggle` button, but once
- * `Page2` is pushed onto the navigation stack, the `MenuToggle` will not be displayed.
- *
- *
- * ### Persistent Menus
- *
- * Persistent menus display the [MenuToggle](../MenuToggle) button in the [Navbar](../../navbar/Navbar)
- * on all pages in the navigation stack. To make a menu persistent set `persistent` to `true` on the
- * `<ion-menu>` element. Note that this will only affect the `MenuToggle` button in the `Navbar` attached
- * to the `Menu` with `persistent` set to true, any other `MenuToggle` buttons will not be affected.
- * ### Menu Side
- *
- * By default, menus slide in from the left, but this can be overridden by passing `right`
- * to the `side` property:
- *
- * ```html
- * <ion-menu side="right" [content]="mycontent">...</ion-menu>
- * ```
- *
- *
- * ### Menu Type
- *
- * The menu type can be changed by passing the value to `type` on the `<ion-menu>`:
- *
- * ```html
- * <ion-menu type="overlay" [content]="mycontent">...</ion-menu>
- * ```
- *
- * It can also be set in the app's config. The below will set the menu type to
- * `push` for all modes, and then set the type to `overlay` for the `ios` mode.
- *
- * ```ts
- * // in NgModules
- *
- * imports: [
- * IonicModule.forRoot(MyApp,{
- * menuType: 'push',
- * platforms: {
- * ios: {
- * menuType: 'overlay',
- * }
- * }
- * })
- * ],
- * ```
- *
- *
- * ### Displaying the Menu
- *
- * To toggle a menu from the template, add a button with the `menuToggle`
- * directive anywhere in the page's template:
- *
- * ```html
- * <button ion-button menuToggle>Toggle Menu</button>
- * ```
- *
- * To close a menu, add the `menuClose` button. It can be added anywhere
- * in the content, or even the menu itself. Below it is added to the menu's
- * content:
- *
- * ```html
- * <ion-menu [content]="mycontent">
- * <ion-content>
- * <ion-list>
- * <ion-item menuClose detail-none>Close Menu</ion-item>
- * </ion-list>
- * </ion-content>
- * </ion-menu>
- * ```
- *
- * See the [MenuToggle](../MenuToggle) and [MenuClose](../MenuClose) docs
- * for more information on these directives.
- *
- * The menu can also be controlled from the Page by using the `MenuController`.
- * Inject the `MenuController` provider into the page and then call any of its
- * methods. In the below example, the `openMenu` method will open the menu
- * when it is called.
- *
- * ```ts
- * import { Component } from '@angular/core';
- * import { MenuController } from 'ionic-angular';
- *
- * @Component({...})
- * export class MyPage {
- * constructor(public menuCtrl: MenuController) {}
- *
- * openMenu() {
- * this.menuCtrl.open();
- * }
- * }
- * ```
- *
- * See the [MenuController](../../app/MenuController) API docs for all of the methods
- * and usage information.
- *
- *
- * @demo /docs/demos/src/menu/
- *
- * @see {@link /docs/components#menus Menu Component Docs}
- * @see {@link ../../app/MenuController MenuController API Docs}
- * @see {@link ../../nav/Nav Nav API Docs}
- * @see {@link ../../nav/NavController NavController API Docs}
- */
- var Menu = (function () {
- function Menu(_menuCtrl, _elementRef, _config, _plt, _renderer, _keyboard, _gestureCtrl, _domCtrl, _app) {
- this._menuCtrl = _menuCtrl;
- this._elementRef = _elementRef;
- this._config = _config;
- this._plt = _plt;
- this._renderer = _renderer;
- this._keyboard = _keyboard;
- this._gestureCtrl = _gestureCtrl;
- this._domCtrl = _domCtrl;
- this._app = _app;
- this._isSwipeEnabled = true;
- this._isAnimating = false;
- this._isPersistent = false;
- this._init = false;
- this._isPane = false;
- /**
- * @hidden
- */
- this.isOpen = false;
- /**
- * @hidden
- */
- this.isRightSide = false;
- /**
- * @output {event} Emitted when the menu is being dragged open.
- */
- this.ionDrag = new core_1.EventEmitter();
- /**
- * @output {event} Emitted when the menu has been opened.
- */
- this.ionOpen = new core_1.EventEmitter();
- /**
- * @output {event} Emitted when the menu has been closed.
- */
- this.ionClose = new core_1.EventEmitter();
- this._events = new ui_event_manager_1.UIEventManager(_plt);
- this._gestureBlocker = _gestureCtrl.createBlocker({
- disable: [gesture_controller_1.GESTURE_GO_BACK_SWIPE]
- });
- this.side = 'start';
- }
- Object.defineProperty(Menu.prototype, "enabled", {
- /**
- * @input {boolean} If true, the menu is enabled. Default `true`.
- */
- get: function () {
- return this._isEnabled;
- },
- set: function (val) {
- var isEnabled = util_1.isTrueProperty(val);
- this.enable(isEnabled);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(Menu.prototype, "side", {
- /**
- * @input {string} Which side of the view the menu should be placed. Default `"left"`.
- */
- get: function () {
- return this._side;
- },
- set: function (val) {
- this.isRightSide = util_1.isRightSide(val, this._plt.isRTL);
- if (this.isRightSide) {
- this._side = 'right';
- }
- else {
- this._side = 'left';
- }
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(Menu.prototype, "swipeEnabled", {
- /**
- * @input {boolean} If true, swiping the menu is enabled. Default `true`.
- */
- get: function () {
- return this._isSwipeEnabled;
- },
- set: function (val) {
- var isEnabled = util_1.isTrueProperty(val);
- this.swipeEnable(isEnabled);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(Menu.prototype, "persistent", {
- /**
- * @input {boolean} If true, the menu will persist on child pages.
- */
- get: function () {
- return this._isPersistent;
- },
- set: function (val) {
- this._isPersistent = util_1.isTrueProperty(val);
- },
- enumerable: true,
- configurable: true
- });
- /**
- * @hidden
- */
- Menu.prototype.ngOnInit = function () {
- var _this = this;
- this._init = true;
- var content = this.content;
- this._cntEle = (content instanceof Node) ? content : content && content.getNativeElement && content.getNativeElement();
- // requires content element
- if (!this._cntEle) {
- return console.error('Menu: must have a [content] element to listen for drag events on. Example:\n\n<ion-menu [content]="content"></ion-menu>\n\n<ion-nav #content></ion-nav>');
- }
- this.setElementAttribute('side', this._side);
- // normalize the "type"
- if (!this.type) {
- this.type = this._config.get('menuType');
- }
- this.setElementAttribute('type', this.type);
- // add the gestures
- this._gesture = new menu_gestures_1.MenuContentGesture(this._plt, this, this._gestureCtrl, this._domCtrl);
- // add menu's content classes
- this._cntEle.classList.add('menu-content');
- this._cntEle.classList.add('menu-content-' + this.type);
- var isEnabled = this._isEnabled;
- if (isEnabled === true || typeof isEnabled === 'undefined') {
- // check if more than one menu is on the same side
- isEnabled = !this._menuCtrl.getMenus().some(function (m) {
- return m.side === _this.side && m.enabled;
- });
- }
- // register this menu with the app's menu controller
- this._menuCtrl._register(this);
- // mask it as enabled / disabled
- this.enable(isEnabled);
- };
- /**
- * @hidden
- */
- Menu.prototype.onBackdropClick = function (ev) {
- ev.preventDefault();
- ev.stopPropagation();
- this._menuCtrl.close();
- };
- /**
- * @hidden
- */
- Menu.prototype._getType = function () {
- if (!this._type) {
- this._type = menu_controller_1.MenuController.create(this.type, this, this._plt);
- if (this._config.get('animate') === false) {
- this._type.ani.duration(0);
- }
- }
- return this._type;
- };
- /**
- * @hidden
- */
- Menu.prototype.setOpen = function (shouldOpen, animated) {
- var _this = this;
- if (animated === void 0) { animated = true; }
- // If the menu is disabled or it is currenly being animated, let's do nothing
- if ((shouldOpen === this.isOpen) || !this._canOpen() || this._isAnimating) {
- return Promise.resolve(this.isOpen);
- }
- return new Promise(function (resolve) {
- _this._before();
- _this._getType().setOpen(shouldOpen, animated, function () {
- _this._after(shouldOpen);
- resolve(_this.isOpen);
- });
- });
- };
- Menu.prototype._forceClosing = function () {
- var _this = this;
- (void 0) /* assert */;
- this._isAnimating = true;
- this._getType().setOpen(false, false, function () {
- _this._after(false);
- });
- };
- /**
- * @hidden
- */
- Menu.prototype.canSwipe = function () {
- return this._isSwipeEnabled &&
- !this._isAnimating &&
- this._canOpen() &&
- this._app.isEnabled();
- };
- /**
- * @hidden
- */
- Menu.prototype.isAnimating = function () {
- return this._isAnimating;
- };
- Menu.prototype._swipeBeforeStart = function () {
- if (!this.canSwipe()) {
- (void 0) /* assert */;
- return;
- }
- this._before();
- };
- Menu.prototype._swipeStart = function () {
- if (!this._isAnimating) {
- (void 0) /* assert */;
- return;
- }
- this._getType().setProgressStart(this.isOpen);
- };
- Menu.prototype._swipeProgress = function (stepValue) {
- if (!this._isAnimating) {
- (void 0) /* assert */;
- return;
- }
- this._getType().setProgessStep(stepValue);
- var ionDrag = this.ionDrag;
- if (ionDrag.observers.length > 0) {
- ionDrag.emit(stepValue);
- }
- };
- Menu.prototype._swipeEnd = function (shouldCompleteLeft, shouldCompleteRight, stepValue, velocity) {
- var _this = this;
- if (!this._isAnimating) {
- (void 0) /* assert */;
- return;
- }
- // user has finished dragging the menu
- var isRightSide = this.isRightSide;
- var isRTL = this._plt.isRTL;
- var opening = !this.isOpen;
- var shouldComplete = (opening)
- ? (isRightSide !== isRTL) ? shouldCompleteLeft : shouldCompleteRight
- : (isRightSide !== isRTL) ? shouldCompleteRight : shouldCompleteLeft;
- this._getType().setProgressEnd(shouldComplete, stepValue, velocity, function (isOpen) {
- (void 0) /* console.debug */;
- _this._after(isOpen);
- });
- };
- Menu.prototype._before = function () {
- (void 0) /* assert */;
- // this places the menu into the correct location before it animates in
- // this css class doesn't actually kick off any animations
- this.setElementClass('show-menu', true);
- this.backdrop.setElementClass('show-backdrop', true);
- this.resize();
- this._keyboard.close();
- this._isAnimating = true;
- };
- Menu.prototype._after = function (isOpen) {
- (void 0) /* assert */;
- this._app.setEnabled(false, 100);
- // keep opening/closing the menu disabled for a touch more yet
- // only add listeners/css if it's enabled and isOpen
- // and only remove listeners/css if it's not open
- // emit opened/closed events
- this.isOpen = isOpen;
- this._isAnimating = false;
- this._events.unlistenAll();
- if (isOpen) {
- // Disable swipe to go back gesture
- this._gestureBlocker.block();
- this._cntEle.classList.add('menu-content-open');
- var callback = this.onBackdropClick.bind(this);
- this._events.listen(this._cntEle, 'click', callback, { capture: true });
- this._events.listen(this.backdrop.getNativeElement(), 'click', callback, { capture: true });
- this.ionOpen.emit(true);
- }
- else {
- // Enable swipe to go back gesture
- this._gestureBlocker.unblock();
- this._cntEle.classList.remove('menu-content-open');
- this.setElementClass('show-menu', false);
- this.backdrop.setElementClass('show-menu', false);
- this.ionClose.emit(true);
- }
- };
- /**
- * @hidden
- */
- Menu.prototype.open = function () {
- return this.setOpen(true);
- };
- /**
- * @hidden
- */
- Menu.prototype.close = function () {
- return this.setOpen(false);
- };
- /**
- * @hidden
- */
- Menu.prototype.resize = function () {
- var content = this.menuContent
- ? this.menuContent
- : this.menuNav;
- content && content.resize();
- };
- /**
- * @hidden
- */
- Menu.prototype.toggle = function () {
- return this.setOpen(!this.isOpen);
- };
- Menu.prototype._canOpen = function () {
- return this._isEnabled && !this._isPane;
- };
- /**
- * @hidden
- */
- Menu.prototype._updateState = function () {
- var canOpen = this._canOpen();
- // Close menu inmediately
- if (!canOpen && this.isOpen) {
- (void 0) /* assert */;
- // close if this menu is open, and should not be enabled
- this._forceClosing();
- }
- if (this._isEnabled && this._menuCtrl) {
- this._menuCtrl._setActiveMenu(this);
- }
- if (!this._init) {
- return;
- }
- var gesture = this._gesture;
- // only listen/unlisten if the menu has initialized
- if (canOpen && this._isSwipeEnabled && !gesture.isListening) {
- // should listen, but is not currently listening
- (void 0) /* console.debug */;
- gesture.listen();
- }
- else if (gesture.isListening && (!canOpen || !this._isSwipeEnabled)) {
- // should not listen, but is currently listening
- (void 0) /* console.debug */;
- gesture.unlisten();
- }
- if (this.isOpen || (this._isPane && this._isEnabled)) {
- this.resize();
- }
- (void 0) /* assert */;
- };
- /**
- * @hidden
- */
- Menu.prototype.enable = function (shouldEnable) {
- this._isEnabled = shouldEnable;
- this.setElementClass('menu-enabled', shouldEnable);
- this._updateState();
- return this;
- };
- /**
- * @internal
- */
- Menu.prototype.initPane = function () {
- return false;
- };
- /**
- * @internal
- */
- Menu.prototype.paneChanged = function (isPane) {
- this._isPane = isPane;
- this._updateState();
- };
- /**
- * @hidden
- */
- Menu.prototype.swipeEnable = function (shouldEnable) {
- this._isSwipeEnabled = shouldEnable;
- this._updateState();
- return this;
- };
- /**
- * @hidden
- */
- Menu.prototype.getNativeElement = function () {
- return this._elementRef.nativeElement;
- };
- /**
- * @hidden
- */
- Menu.prototype.getMenuElement = function () {
- return this.getNativeElement().querySelector('.menu-inner');
- };
- /**
- * @hidden
- */
- Menu.prototype.getContentElement = function () {
- return this._cntEle;
- };
- /**
- * @hidden
- */
- Menu.prototype.getBackdropElement = function () {
- return this.backdrop.getNativeElement();
- };
- /**
- * @hidden
- */
- Menu.prototype.width = function () {
- return this.getMenuElement().offsetWidth;
- };
- /**
- * @hidden
- */
- Menu.prototype.getMenuController = function () {
- return this._menuCtrl;
- };
- /**
- * @hidden
- */
- Menu.prototype.setElementClass = function (className, add) {
- this._renderer.setElementClass(this._elementRef.nativeElement, className, add);
- };
- /**
- * @hidden
- */
- Menu.prototype.setElementAttribute = function (attributeName, value) {
- this._renderer.setElementAttribute(this._elementRef.nativeElement, attributeName, value);
- };
- /**
- * @hidden
- */
- Menu.prototype.getElementRef = function () {
- return this._elementRef;
- };
- /**
- * @hidden
- */
- Menu.prototype.ngOnDestroy = function () {
- this._menuCtrl._unregister(this);
- this._events.destroy();
- this._gesture && this._gesture.destroy();
- this._type && this._type.destroy();
- this._gesture = null;
- this._type = null;
- this._cntEle = null;
- };
- Menu.decorators = [
- { type: core_1.Component, args: [{
- selector: 'ion-menu',
- template: '<div class="menu-inner"><ng-content></ng-content></div>' +
- '<ion-backdrop></ion-backdrop>',
- host: {
- 'role': 'navigation'
- },
- changeDetection: core_1.ChangeDetectionStrategy.OnPush,
- encapsulation: core_1.ViewEncapsulation.None,
- providers: [{ provide: split_pane_1.RootNode, useExisting: core_1.forwardRef(function () { return Menu; }) }]
- },] },
- ];
- /** @nocollapse */
- Menu.ctorParameters = function () { return [
- { type: menu_controller_1.MenuController, },
- { type: core_1.ElementRef, },
- { type: config_1.Config, },
- { type: platform_1.Platform, },
- { type: core_1.Renderer, },
- { type: keyboard_1.Keyboard, },
- { type: gesture_controller_1.GestureController, },
- { type: dom_controller_1.DomController, },
- { type: app_1.App, },
- ]; };
- Menu.propDecorators = {
- 'backdrop': [{ type: core_1.ViewChild, args: [backdrop_1.Backdrop,] },],
- 'menuContent': [{ type: core_1.ContentChild, args: [content_1.Content,] },],
- 'menuNav': [{ type: core_1.ContentChild, args: [nav_1.Nav,] },],
- 'content': [{ type: core_1.Input },],
- 'id': [{ type: core_1.Input },],
- 'type': [{ type: core_1.Input },],
- 'enabled': [{ type: core_1.Input },],
- 'side': [{ type: core_1.Input },],
- 'swipeEnabled': [{ type: core_1.Input },],
- 'persistent': [{ type: core_1.Input },],
- 'maxEdgeStart': [{ type: core_1.Input },],
- 'ionDrag': [{ type: core_1.Output },],
- 'ionOpen': [{ type: core_1.Output },],
- 'ionClose': [{ type: core_1.Output },],
- };
- return Menu;
- }());
- exports.Menu = Menu;
- });
- //# sourceMappingURL=menu.js.map
|