jellyfin-web/dashboard-ui/bower_components/paper-progress/paper-progress.html

305 lines
8.7 KiB
HTML
Raw Normal View History

2015-06-26 20:27:38 -07:00
<!--
@license
Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
2015-07-13 14:26:11 -07:00
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
2015-06-26 20:27:38 -07:00
Code distributed by Google as part of the polymer project is also
2015-07-13 14:26:11 -07:00
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
2015-06-26 20:27:38 -07:00
-->
2015-07-13 14:26:11 -07:00
<link rel="import" href="../polymer/polymer.html">
2015-06-26 20:27:38 -07:00
<link rel="import" href="../paper-styles/paper-styles.html">
<link rel="import" href="../iron-range-behavior/iron-range-behavior.html">
<link rel="import" href="../iron-flex-layout/classes/iron-flex-layout.html">
<!--
The progress bars are for situations where the percentage completed can be
determined. They give users a quick sense of how much longer an operation
will take.
Example:
<paper-progress value="10"></paper-progress>
There is also a secondary progress which is useful for displaying intermediate
progress, such as the buffer level during a streaming playback progress bar.
Example:
<paper-progress value="10" secondary-progress="30"></paper-progress>
2015-07-25 13:41:29 -07:00
### Styling progress bar:
2015-06-26 20:27:38 -07:00
To change the active progress bar color:
paper-progress {
--paper-progress-active-color: #e91e63;
}
To change the secondary progress bar color:
paper-progress {
--paper-progress-secondary-color: #f8bbd0;
}
To change the progress bar background color:
paper-progress {
--paper-progress-container-color: #64ffda;
}
2015-07-25 13:41:29 -07:00
Add the class `transiting` to a paper-progress to animate the progress bar when
the value changed. You can also customize the transition:
paper-progress {
--paper-progress-transition-duration: 0.08s;
--paper-progress-transition-timing-function: ease;
--paper-progress-transition-transition-delay: 0s;
}
2015-09-08 13:40:48 -07:00
The following mixins are available for styling:
2015-07-25 13:41:29 -07:00
2015-09-08 13:40:48 -07:00
Custom property | Description | Default
--------------------------------------------|----------------------------------------|----------
--paper-progress-container-color | Mixin applied to container | --google-grey-300
--paper-progress-transition-duration | Duration of the transition | 0.008s
--paper-progress-transition-timing-function | The timing function for the transition | ease
--paper-progress-transition-delay | delay for the transition | 0s
--paper-progress-active-color | The color of the active bar | --google-green-500
--paper-progress-secondary-color | The color of the secondary bar | --google-green-100
2015-07-25 13:41:29 -07:00
2015-06-26 20:27:38 -07:00
@group Paper Elements
@element paper-progress
@hero hero.svg
@demo demo/index.html
-->
<dom-module id="paper-progress">
<style>
:host {
2015-09-08 13:40:48 -07:00
display: block;
2015-06-26 20:27:38 -07:00
width: 200px;
height: 4px;
2015-09-08 13:40:48 -07:00
position: relative;
overflow: hidden;
}
:host,
#primaryProgress.indeterminate:after {
background-color: var(--paper-progress-container-color, --google-grey-300);
2015-06-26 20:27:38 -07:00
}
2015-09-08 13:40:48 -07:00
:host > *,
#primaryProgress.indeterminate:after {
@apply(--layout-fit);
}
:host(.transiting) > * {
2015-07-25 13:41:29 -07:00
-webkit-transition-property: -webkit-transform;
transition-property: transform;
/* Duration */
-webkit-transition-duration: var(--paper-progress-transition-duration, 0.08s);
transition-duration: var(--paper-progress-transition-duration, 0.08s);
/* Timing function */
-webkit-transition-timing-function: var(--paper-progress-transition-timing-function, ease);
transition-timing-function: var(--paper-progress-transition-timing-function, ease);
/* Delay */
-webkit-transition-delay: var(--paper-progress-transition-delay, 0s);
transition-delay: var(--paper-progress-transition-delay, 0s);
}
2015-09-08 13:40:48 -07:00
#primaryProgress,
2015-06-26 20:27:38 -07:00
#secondaryProgress {
-webkit-transform-origin: left center;
transform-origin: left center;
-webkit-transform: scaleX(0);
transform: scaleX(0);
}
2015-09-08 13:40:48 -07:00
#primaryProgress {
2015-06-26 20:27:38 -07:00
background-color: var(--paper-progress-active-color, --google-green-500);
}
#secondaryProgress {
background-color: var(--paper-progress-secondary-color, --google-green-100);
}
2015-09-08 13:40:48 -07:00
#primaryProgress.indeterminate {
2015-07-25 13:41:29 -07:00
-webkit-transform-origin: right center;
transform-origin: right center;
-webkit-animation: indeterminate-bar 2s linear infinite;
animation: indeterminate-bar 2s linear infinite;
}
2015-09-08 13:40:48 -07:00
#primaryProgress.indeterminate:after {
content: "";
width: 100%;
2015-06-26 20:27:38 -07:00
-webkit-transform-origin: center center;
transform-origin: center center;
2015-09-08 13:40:48 -07:00
2015-07-25 13:41:29 -07:00
-webkit-animation: indeterminate-splitter 2s linear infinite;
animation: indeterminate-splitter 2s linear infinite;
2015-06-26 20:27:38 -07:00
}
@-webkit-keyframes indeterminate-bar {
0% {
2015-07-25 13:41:29 -07:00
-webkit-transform: scaleX(1) translateX(-100%);
2015-06-26 20:27:38 -07:00
}
50% {
2015-07-25 13:41:29 -07:00
-webkit-transform: scaleX(1) translateX(0%);
}
75% {
-webkit-transform: scaleX(1) translateX(0%);
-webkit-animation-timing-function: cubic-bezier(.28,.62,.37,.91);
}
100% {
-webkit-transform: scaleX(0) translateX(0%);
}
}
@-webkit-keyframes indeterminate-splitter {
0% {
-webkit-transform: scaleX(.75) translateX(-125%);
}
30% {
-webkit-transform: scaleX(.75) translateX(-125%);
-webkit-animation-timing-function: cubic-bezier(.42,0,.6,.8);
}
90% {
-webkit-transform: scaleX(.75) translateX(125%);
2015-06-26 20:27:38 -07:00
}
100% {
2015-07-25 13:41:29 -07:00
-webkit-transform: scaleX(.75) translateX(125%);
2015-06-26 20:27:38 -07:00
}
}
@keyframes indeterminate-bar {
0% {
2015-07-25 13:41:29 -07:00
transform: scaleX(1) translateX(-100%);
2015-06-26 20:27:38 -07:00
}
50% {
2015-07-25 13:41:29 -07:00
transform: scaleX(1) translateX(0%);
}
75% {
transform: scaleX(1) translateX(0%);
animation-timing-function: cubic-bezier(.28,.62,.37,.91);
}
100% {
transform: scaleX(0) translateX(0%);
}
}
@keyframes indeterminate-splitter {
0% {
transform: scaleX(.75) translateX(-125%);
}
30% {
transform: scaleX(.75) translateX(-125%);
animation-timing-function: cubic-bezier(.42,0,.6,.8);
}
90% {
transform: scaleX(.75) translateX(125%);
2015-06-26 20:27:38 -07:00
}
100% {
2015-07-25 13:41:29 -07:00
transform: scaleX(.75) translateX(125%);
2015-06-26 20:27:38 -07:00
}
}
</style>
<template>
2015-09-08 13:40:48 -07:00
<div id="secondaryProgress" hidden$="[[!_hasSecondaryProgress(secondaryRatio)]]"></div>
<div id="primaryProgress"></div>
2015-06-26 20:27:38 -07:00
</template>
</dom-module>
<script>
Polymer({
is: 'paper-progress',
behaviors: [
Polymer.IronRangeBehavior
],
2015-09-08 13:40:48 -07:00
hostAttributes: {
role: 'progressbar'
},
2015-06-26 20:27:38 -07:00
properties: {
/**
* The number that represents the current secondary progress.
*/
secondaryProgress: {
type: Number,
2015-09-08 13:40:48 -07:00
value: 0
2015-06-26 20:27:38 -07:00
},
/**
* The secondary ratio
*/
secondaryRatio: {
type: Number,
value: 0,
2015-09-08 13:40:48 -07:00
readOnly: true
2015-06-26 20:27:38 -07:00
},
/**
* Use an indeterminate progress indicator.
*/
indeterminate: {
type: Boolean,
2015-09-08 13:40:48 -07:00
value: false
2015-06-26 20:27:38 -07:00
}
},
observers: [
2015-09-08 13:40:48 -07:00
'_progressChanged(secondaryProgress, value, min, max)',
'_toggleIndeterminate(indeterminate)'
2015-06-26 20:27:38 -07:00
],
2015-09-08 13:40:48 -07:00
_toggleIndeterminate: function(indeterminate) {
2015-06-26 20:27:38 -07:00
// If we use attribute/class binding, the animation sometimes doesn't translate properly
// on Safari 7.1. So instead, we toggle the class here in the update method.
2015-09-08 13:40:48 -07:00
this.toggleClass('indeterminate', indeterminate, this.$.primaryProgress);
2015-06-26 20:27:38 -07:00
},
_transformProgress: function(progress, ratio) {
var transform = 'scaleX(' + (ratio / 100) + ')';
progress.style.transform = progress.style.webkitTransform = transform;
},
2015-09-08 13:40:48 -07:00
_mainRatioChanged: function(ratio) {
this._transformProgress(this.$.primaryProgress, ratio);
2015-06-26 20:27:38 -07:00
},
2015-09-08 13:40:48 -07:00
_progressChanged: function(secondaryProgress, value, min, max) {
secondaryProgress = this._clampValue(secondaryProgress);
value = this._clampValue(value);
var secondaryRatio = this._calcRatio(secondaryProgress) * 100;
var mainRatio = this._calcRatio(value) * 100;
this._setSecondaryRatio(secondaryRatio);
2015-06-26 20:27:38 -07:00
this._transformProgress(this.$.secondaryProgress, secondaryRatio);
2015-09-08 13:40:48 -07:00
this._transformProgress(this.$.primaryProgress, mainRatio);
this.secondaryProgress = secondaryProgress;
this.setAttribute('aria-valuenow', value);
this.setAttribute('aria-valuemin', min);
this.setAttribute('aria-valuemax', max);
2015-06-26 20:27:38 -07:00
},
2015-09-08 13:40:48 -07:00
_hasSecondaryProgress: function(secondaryRatio) {
return secondaryRatio > 0
2015-06-26 20:27:38 -07:00
}
});
</script>