123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273 |
- var __extends = (this && this.__extends) || (function () {
- var extendStatics = Object.setPrototypeOf ||
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
- return function (d, b) {
- extendStatics(d, b);
- function __() { this.constructor = d; }
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
- };
- })();
- (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", "../../animations/animation", "../../transitions/page-transition"], factory);
- }
- })(function (require, exports) {
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- var animation_1 = require("../../animations/animation");
- var page_transition_1 = require("../../transitions/page-transition");
- /**
- * Animations for popover
- */
- var PopoverTransition = (function (_super) {
- __extends(PopoverTransition, _super);
- function PopoverTransition() {
- return _super !== null && _super.apply(this, arguments) || this;
- }
- PopoverTransition.prototype.mdPositionView = function (nativeEle, ev) {
- var originY = 'top';
- var originX = 'left';
- var popoverWrapperEle = nativeEle.querySelector('.popover-wrapper');
- // Popover content width and height
- var popoverEle = nativeEle.querySelector('.popover-content');
- var popoverDim = popoverEle.getBoundingClientRect();
- var popoverWidth = popoverDim.width;
- var popoverHeight = popoverDim.height;
- // Window body width and height
- var bodyWidth = this.plt.width();
- var bodyHeight = this.plt.height();
- // If ev was passed, use that for target element
- var targetDim = ev && ev.target && ev.target.getBoundingClientRect();
- var targetTop = (targetDim && 'top' in targetDim) ? targetDim.top : (bodyHeight / 2) - (popoverHeight / 2);
- var targetLeft = (targetDim && 'left' in targetDim) ? targetDim.left : (bodyWidth / 2) - (popoverWidth / 2);
- var targetHeight = targetDim && targetDim.height || 0;
- var popoverCSS = {
- top: targetTop,
- left: targetLeft
- };
- // If the popover left is less than the padding it is off screen
- // to the left so adjust it, else if the width of the popover
- // exceeds the body width it is off screen to the right so adjust
- if (popoverCSS.left < POPOVER_MD_BODY_PADDING) {
- popoverCSS.left = POPOVER_MD_BODY_PADDING;
- }
- else if (popoverWidth + POPOVER_MD_BODY_PADDING + popoverCSS.left > bodyWidth) {
- popoverCSS.left = bodyWidth - popoverWidth - POPOVER_MD_BODY_PADDING;
- originX = 'right';
- }
- // If the popover when popped down stretches past bottom of screen,
- // make it pop up if there's room above
- if (targetTop + targetHeight + popoverHeight > bodyHeight && targetTop - popoverHeight > 0) {
- popoverCSS.top = targetTop - popoverHeight;
- nativeEle.className = nativeEle.className + ' popover-bottom';
- originY = 'bottom';
- // If there isn't room for it to pop up above the target cut it off
- }
- else if (targetTop + targetHeight + popoverHeight > bodyHeight) {
- popoverEle.style.bottom = POPOVER_MD_BODY_PADDING + 'px';
- }
- popoverEle.style.top = popoverCSS.top + 'px';
- popoverEle.style.left = popoverCSS.left + 'px';
- popoverEle.style[this.plt.Css.transformOrigin] = originY + ' ' + originX;
- // Since the transition starts before styling is done we
- // want to wait for the styles to apply before showing the wrapper
- popoverWrapperEle.style.opacity = '1';
- };
- PopoverTransition.prototype.iosPositionView = function (nativeEle, ev) {
- var originY = 'top';
- var originX = 'left';
- var popoverWrapperEle = nativeEle.querySelector('.popover-wrapper');
- // Popover content width and height
- var popoverEle = nativeEle.querySelector('.popover-content');
- var popoverDim = popoverEle.getBoundingClientRect();
- var popoverWidth = popoverDim.width;
- var popoverHeight = popoverDim.height;
- // Window body width and height
- var bodyWidth = this.plt.width();
- var bodyHeight = this.plt.height();
- // If ev was passed, use that for target element
- var targetDim = ev && ev.target && ev.target.getBoundingClientRect();
- var targetTop = (targetDim && 'top' in targetDim) ? targetDim.top : (bodyHeight / 2) - (popoverHeight / 2);
- var targetLeft = (targetDim && 'left' in targetDim) ? targetDim.left : (bodyWidth / 2);
- var targetWidth = targetDim && targetDim.width || 0;
- var targetHeight = targetDim && targetDim.height || 0;
- // The arrow that shows above the popover on iOS
- var arrowEle = nativeEle.querySelector('.popover-arrow');
- var arrowDim = arrowEle.getBoundingClientRect();
- var arrowWidth = arrowDim.width;
- var arrowHeight = arrowDim.height;
- // If no ev was passed, hide the arrow
- if (!targetDim) {
- arrowEle.style.display = 'none';
- }
- var arrowCSS = {
- top: targetTop + targetHeight,
- left: targetLeft + (targetWidth / 2) - (arrowWidth / 2)
- };
- var popoverCSS = {
- top: targetTop + targetHeight + (arrowHeight - 1),
- left: targetLeft + (targetWidth / 2) - (popoverWidth / 2)
- };
- // If the popover left is less than the padding it is off screen
- // to the left so adjust it, else if the width of the popover
- // exceeds the body width it is off screen to the right so adjust
- //
- var checkSafeAreaLeft = false;
- var checkSafeAreaRight = false;
- // If the popover left is less than the padding it is off screen
- // to the left so adjust it, else if the width of the popover
- // exceeds the body width it is off screen to the right so adjust
- // 25 is a random/arbitrary number. It seems to work fine for ios11
- // and iPhoneX. Is it perfect? No. Does it work? Yes.
- if (popoverCSS.left < (POPOVER_IOS_BODY_PADDING + 25)) {
- checkSafeAreaLeft = true;
- popoverCSS.left = POPOVER_IOS_BODY_PADDING;
- }
- else if ((popoverWidth + POPOVER_IOS_BODY_PADDING + popoverCSS.left + 25) > bodyWidth) {
- // Ok, so we're on the right side of the screen,
- // but now we need to make sure we're still a bit further right
- // cus....notchurally... Again, 25 is random. It works tho
- checkSafeAreaRight = true;
- popoverCSS.left = bodyWidth - popoverWidth - POPOVER_IOS_BODY_PADDING;
- originX = 'right';
- }
- // make it pop up if there's room above
- if (targetTop + targetHeight + popoverHeight > bodyHeight && targetTop - popoverHeight > 0) {
- arrowCSS.top = targetTop - (arrowHeight + 1);
- popoverCSS.top = targetTop - popoverHeight - (arrowHeight - 1);
- nativeEle.className = nativeEle.className + ' popover-bottom';
- originY = 'bottom';
- // If there isn't room for it to pop up above the target cut it off
- }
- else if (targetTop + targetHeight + popoverHeight > bodyHeight) {
- popoverEle.style.bottom = POPOVER_IOS_BODY_PADDING + '%';
- }
- arrowEle.style.top = arrowCSS.top + 'px';
- arrowEle.style.left = arrowCSS.left + 'px';
- popoverEle.style.top = popoverCSS.top + 'px';
- popoverEle.style.left = popoverCSS.left + 'px';
- if (checkSafeAreaLeft) {
- if (CSS.supports('left', 'constant(safe-area-inset-left)')) {
- popoverEle.style.left = "calc(" + popoverCSS.left + "px + constant(safe-area-inset-left)";
- }
- else if (CSS.supports('left', 'env(safe-area-inset-left)')) {
- popoverEle.style.left = "calc(" + popoverCSS.left + "px + env(safe-area-inset-left)";
- }
- }
- if (checkSafeAreaRight) {
- if (CSS.supports('right', 'constant(safe-area-inset-right)')) {
- popoverEle.style.left = "calc(" + popoverCSS.left + "px - constant(safe-area-inset-right)";
- }
- else if (CSS.supports('right', 'env(safe-area-inset-right)')) {
- popoverEle.style.left = "calc(" + popoverCSS.left + "px - env(safe-area-inset-right)";
- }
- }
- popoverEle.style[this.plt.Css.transformOrigin] = originY + ' ' + originX;
- // Since the transition starts before styling is done we
- // want to wait for the styles to apply before showing the wrapper
- popoverWrapperEle.style.opacity = '1';
- };
- return PopoverTransition;
- }(page_transition_1.PageTransition));
- exports.PopoverTransition = PopoverTransition;
- var PopoverPopIn = (function (_super) {
- __extends(PopoverPopIn, _super);
- function PopoverPopIn() {
- return _super !== null && _super.apply(this, arguments) || this;
- }
- PopoverPopIn.prototype.init = function () {
- var ele = this.enteringView.pageRef().nativeElement;
- var backdrop = new animation_1.Animation(this.plt, ele.querySelector('ion-backdrop'));
- var wrapper = new animation_1.Animation(this.plt, ele.querySelector('.popover-wrapper'));
- wrapper.fromTo('opacity', 0.01, 1);
- backdrop.fromTo('opacity', 0.01, 0.08);
- this
- .easing('ease')
- .duration(100)
- .add(backdrop)
- .add(wrapper);
- };
- PopoverPopIn.prototype.play = function () {
- var _this = this;
- this.plt.raf(function () {
- _this.iosPositionView(_this.enteringView.pageRef().nativeElement, _this.opts.ev);
- _super.prototype.play.call(_this);
- });
- };
- return PopoverPopIn;
- }(PopoverTransition));
- exports.PopoverPopIn = PopoverPopIn;
- var PopoverPopOut = (function (_super) {
- __extends(PopoverPopOut, _super);
- function PopoverPopOut() {
- return _super !== null && _super.apply(this, arguments) || this;
- }
- PopoverPopOut.prototype.init = function () {
- var ele = this.leavingView.pageRef().nativeElement;
- var backdrop = new animation_1.Animation(this.plt, ele.querySelector('ion-backdrop'));
- var wrapper = new animation_1.Animation(this.plt, ele.querySelector('.popover-wrapper'));
- wrapper.fromTo('opacity', 0.99, 0);
- backdrop.fromTo('opacity', 0.08, 0);
- this
- .easing('ease')
- .duration(500)
- .add(backdrop)
- .add(wrapper);
- };
- return PopoverPopOut;
- }(PopoverTransition));
- exports.PopoverPopOut = PopoverPopOut;
- var PopoverMdPopIn = (function (_super) {
- __extends(PopoverMdPopIn, _super);
- function PopoverMdPopIn() {
- return _super !== null && _super.apply(this, arguments) || this;
- }
- PopoverMdPopIn.prototype.init = function () {
- var ele = this.enteringView.pageRef().nativeElement;
- var content = new animation_1.Animation(this.plt, ele.querySelector('.popover-content'));
- var viewport = new animation_1.Animation(this.plt, ele.querySelector('.popover-viewport'));
- content.fromTo('scale', 0.001, 1);
- viewport.fromTo('opacity', 0.01, 1);
- this
- .easing('cubic-bezier(0.36,0.66,0.04,1)')
- .duration(300)
- .add(content)
- .add(viewport);
- };
- PopoverMdPopIn.prototype.play = function () {
- var _this = this;
- this.plt.raf(function () {
- _this.mdPositionView(_this.enteringView.pageRef().nativeElement, _this.opts.ev);
- _super.prototype.play.call(_this);
- });
- };
- return PopoverMdPopIn;
- }(PopoverTransition));
- exports.PopoverMdPopIn = PopoverMdPopIn;
- var PopoverMdPopOut = (function (_super) {
- __extends(PopoverMdPopOut, _super);
- function PopoverMdPopOut() {
- return _super !== null && _super.apply(this, arguments) || this;
- }
- PopoverMdPopOut.prototype.init = function () {
- var ele = this.leavingView.pageRef().nativeElement;
- var wrapper = new animation_1.Animation(this.plt, ele.querySelector('.popover-wrapper'));
- wrapper.fromTo('opacity', 0.99, 0);
- this
- .easing('ease')
- .duration(500)
- .fromTo('opacity', 0.01, 1)
- .add(wrapper);
- };
- return PopoverMdPopOut;
- }(PopoverTransition));
- exports.PopoverMdPopOut = PopoverMdPopOut;
- var POPOVER_IOS_BODY_PADDING = 2;
- var POPOVER_MD_BODY_PADDING = 12;
- });
- //# sourceMappingURL=popover-transitions.js.map
|