forked from FirebaseExtended/polymerfire
-
Notifications
You must be signed in to change notification settings - Fork 0
/
firebase-storage-upload-task.html
171 lines (153 loc) · 4.2 KB
/
firebase-storage-upload-task.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
<!--
@license
Copyright 2016 Google Inc. All Rights Reserved.
Use of this source code is governed by a BSD-style
license that can be found in the LICENSE file or at
https://github.com/firebase/polymerfire/blob/master/LICENSE
-->
<link rel="import" href="../polymer/polymer.html">
<link rel="import" href="firebase-storage-behavior.html">
<script>
(function(){
'use strict';
/**
* The firebase-storage-upload-task element is an easy way to track upload tasks made
* by the firebase-storage-multiupload or the firebase-storage-ref
*
* For example:
*
* <firebase-storage-upload-task
* task="[[task]]"
* bytes-transferred="{{bytesTransferred}}"
* total-bytes="{{totalBytes}}"
* state="{{state}}"
* download-url="{{downloadUrl}}"
* metadata="{{metadata}}"
* path="{{path}}"></firebase-storage-upload-task>
*
* It has to get the upload task from either the firebase-storage-multiupload or firebase-storage-ref
* and produces data like bytes-transferred, total-bytes, states, etc...
*
* You can also use this element to cancel, pause, and resume a task.
*
*
* `<firebase-storage>` needs some information about how to talk to Firebase.
* Set this configuration by adding a `<firebase-app>` element anywhere in your
* app.
*/
Polymer({
is: 'firebase-storage-upload-task',
properties: {
/**
* The upload task that is being tracked
*/
task: {
type: Object,
value: null,
observer: '_taskChanged'
},
/**
* Number of bytes transferred
*/
bytesTransferred: {
type: Number,
notify: true
},
/**
* Total number of bytes of the file
*/
totalBytes: {
type: Number,
notify: true
},
/**
* The upload task's state
*/
state: {
type: Object,
notify: true
},
/**
* The download url of the file
*/
downloadUrl: {
type: String,
notify: true
},
/**
* The metadata of the file
*/
metadata: {
type: Object,
notify: true
},
/**
* The firebase storage path of the file
*/
path: {
type: String,
notify: true
},
/**
* The current snapshot of the task
*/
snapshot: {
type: Object,
notify: true
}
},
behaviors: [
Polymer.FirebaseStorageBehavior
],
/**
* @override
*/
get zeroValue() {
return [];
},
_updateProperties: function(snapshot) {
this.state = snapshot.state;
this.totalBytes = snapshot.totalBytes;
this.bytesTransferred = snapshot.bytesTransferred;
this.downloadUrl = snapshot.downloadURL;
this.metadata = snapshot.metadata;
this.path = snapshot.ref.fullPath;
this.snapshot = snapshot;
},
_taskChanged: function(task) {
this._updateProperties(task.snapshot);
task.on(firebase.storage.TaskEvent.STATE_CHANGED,
this._updateProperties.bind(this), function(error) {
this._updateProperties(task.snapshot)
this.fire('error', error, { bubble: false});
}.bind(this), function() {
this._updateProperties(task.snapshot)
}.bind(this));
},
/**
* Cancels the upload
*/
cancel: function() {
return this.task ? this.task.cancel() : new Promise(function(resolve, reject) {
reject('No task included')
});
},
/**
* Resumes a paused upload
*/
resume: function() {
return this.task ? this.task.resume() : new Promise(function(resolve, reject) {
reject('No task included')
});
},
/**
* Pauses the upload
*/
pause: function() {
return this.task ? this.task.pause() : new Promise(function(resolve, reject) {
reject('No task included')
});
}
});
})()
</script>