| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- /**
- * @license
- * Copyright 2020 Google Inc.
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- * THE SOFTWARE.
- */
- import { __assign, __extends } from "tslib";
- import { MDCFoundation } from '@material/base/foundation';
- import { cssClasses, strings } from './constants';
- /** MDC Circular Progress Foundation */
- var MDCCircularProgressFoundation = /** @class */ (function (_super) {
- __extends(MDCCircularProgressFoundation, _super);
- function MDCCircularProgressFoundation(adapter) {
- return _super.call(this, __assign(__assign({}, MDCCircularProgressFoundation.defaultAdapter), adapter)) || this;
- }
- Object.defineProperty(MDCCircularProgressFoundation, "cssClasses", {
- get: function () {
- return cssClasses;
- },
- enumerable: false,
- configurable: true
- });
- Object.defineProperty(MDCCircularProgressFoundation, "strings", {
- get: function () {
- return strings;
- },
- enumerable: false,
- configurable: true
- });
- Object.defineProperty(MDCCircularProgressFoundation, "defaultAdapter", {
- get: function () {
- return {
- addClass: function () { return undefined; },
- getDeterminateCircleAttribute: function () { return null; },
- hasClass: function () { return false; },
- removeClass: function () { return undefined; },
- removeAttribute: function () { return undefined; },
- setAttribute: function () { return undefined; },
- setDeterminateCircleAttribute: function () { return undefined; },
- };
- },
- enumerable: false,
- configurable: true
- });
- MDCCircularProgressFoundation.prototype.init = function () {
- this.closed = this.adapter.hasClass(cssClasses.CLOSED_CLASS);
- this.determinate = !this.adapter.hasClass(cssClasses.INDETERMINATE_CLASS);
- this.progress = 0;
- if (this.determinate) {
- this.adapter.setAttribute(strings.ARIA_VALUENOW, this.progress.toString());
- }
- this.radius =
- Number(this.adapter.getDeterminateCircleAttribute(strings.RADIUS));
- };
- /**
- * Sets whether the progress indicator is in determinate mode.
- * @param determinate Whether the indicator should be determinate.
- */
- MDCCircularProgressFoundation.prototype.setDeterminate = function (determinate) {
- this.determinate = determinate;
- if (this.determinate) {
- this.adapter.removeClass(cssClasses.INDETERMINATE_CLASS);
- this.setProgress(this.progress);
- }
- else {
- this.adapter.addClass(cssClasses.INDETERMINATE_CLASS);
- this.adapter.removeAttribute(strings.ARIA_VALUENOW);
- }
- };
- MDCCircularProgressFoundation.prototype.isDeterminate = function () {
- return this.determinate;
- };
- /**
- * Sets the current progress value. In indeterminate mode, this has no
- * visual effect but will be reflected if the indicator is switched to
- * determinate mode.
- * @param value The current progress value, which must be between 0 and 1.
- */
- MDCCircularProgressFoundation.prototype.setProgress = function (value) {
- this.progress = value;
- if (this.determinate) {
- var unfilledArcLength = (1 - this.progress) * (2 * Math.PI * this.radius);
- this.adapter.setDeterminateCircleAttribute(strings.STROKE_DASHOFFSET, "" + unfilledArcLength);
- this.adapter.setAttribute(strings.ARIA_VALUENOW, this.progress.toString());
- }
- };
- MDCCircularProgressFoundation.prototype.getProgress = function () {
- return this.progress;
- };
- /**
- * Shows the progress indicator.
- */
- MDCCircularProgressFoundation.prototype.open = function () {
- this.closed = false;
- this.adapter.removeClass(cssClasses.CLOSED_CLASS);
- this.adapter.removeAttribute(strings.ARIA_HIDDEN);
- };
- /**
- * Hides the progress indicator
- */
- MDCCircularProgressFoundation.prototype.close = function () {
- this.closed = true;
- this.adapter.addClass(cssClasses.CLOSED_CLASS);
- this.adapter.setAttribute(strings.ARIA_HIDDEN, 'true');
- };
- /**
- * @return Returns whether the progress indicator is hidden.
- */
- MDCCircularProgressFoundation.prototype.isClosed = function () {
- return this.closed;
- };
- return MDCCircularProgressFoundation;
- }(MDCFoundation));
- export { MDCCircularProgressFoundation };
- // tslint:disable-next-line:no-default-export Needed for backward compatibility with MDC Web v0.44.0 and earlier.
- export default MDCCircularProgressFoundation;
- //# sourceMappingURL=foundation.js.map
|