forked from FirebaseExtended/polymerfire
-
Notifications
You must be signed in to change notification settings - Fork 0
/
firebase-common-behavior.html
68 lines (59 loc) · 1.6 KB
/
firebase-common-behavior.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
<!--
@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="../app-storage/app-network-status-behavior.html">
<link rel="import" href="firebase-app-script.html">
<script>
(function() {
'use strict';
/** @polymerBehavior Polymer.FirebaseCommonBehavior */
Polymer.FirebaseCommonBehaviorImpl = {
properties: {
app: {
type: Object,
notify: true,
observer: '__appChanged'
},
appName: {
type: String,
notify: true,
value: '',
observer: '__appNameChanged'
}
},
__appNameChanged: function(appName) {
if (this.app && this.app.name === appName) {
return;
}
try {
if (appName == null) {
this.app = firebase.app();
} else {
this.app = firebase.app(appName);
}
} catch (e) {
// appropriate app hasn't been initialized yet
}
},
__appChanged: function(app) {
if (app && app.name === this.appName) {
return;
}
this.appName = app ? app.name : '';
},
__onError: function(err) {
this.fire('error', err);
}
};
/** @polymerBehavior */
Polymer.FirebaseCommonBehavior = [
Polymer.AppNetworkStatusBehavior,
Polymer.FirebaseCommonBehaviorImpl
];
})();
</script>