onsenui
Version:
HTML5 Mobile Framework & UI Components
85 lines (64 loc) • 11.1 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
var _util = require('../../ons/util');
var _util2 = _interopRequireDefault(_util);
var _baseAnimator = require('../../ons/base-animator');
var _baseAnimator2 = _interopRequireDefault(_baseAnimator);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } /*
Copyright 2013-2015 ASIAL CORPORATION
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
var NavigatorAnimator = function (_BaseAnimator) {
_inherits(NavigatorAnimator, _BaseAnimator);
/**
* @param {Object} options
* @param {String} options.timing
* @param {Number} options.duration
* @param {Number} options.delay
*/
function NavigatorAnimator(options) {
_classCallCheck(this, NavigatorAnimator);
options = _util2.default.extend({
timing: 'linear',
duration: '0.4',
delay: '0'
}, options || {});
return _possibleConstructorReturn(this, (NavigatorAnimator.__proto__ || Object.getPrototypeOf(NavigatorAnimator)).call(this, options));
}
_createClass(NavigatorAnimator, [{
key: 'push',
value: function push(enterPage, leavePage, callback) {
callback();
}
}, {
key: 'pop',
value: function pop(enterPage, leavePage, callback) {
callback();
}
}, {
key: 'block',
value: function block(page) {
var blocker = _util2.default.createElement('\n <div style="position: absolute; background-color: transparent; width: 100%; height: 100%; z-index: 100000"></div>\n ');
page.parentNode.appendChild(blocker);
return function () {
return blocker.remove();
};
}
}]);
return NavigatorAnimator;
}(_baseAnimator2.default);
exports.default = NavigatorAnimator;