forked from PolymerEl/paper-tags
-
Notifications
You must be signed in to change notification settings - Fork 0
/
value-array-firebase-behavior.html
133 lines (122 loc) · 3.78 KB
/
value-array-firebase-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
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
<!--
@license
Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
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
Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
-->
<link rel="import" href="../polymer/polymer.html">
<script>
/**
* `Polymer.ValueArrayFirebaseBehavior` ensures the binding between array values and firebase objects.
*
* @demo demo/index.html
* @polymerBehavior Polymer.ValueArrayFirebaseBehavior
*/
Polymer.ValueArrayFirebaseBehavior = {
properties: {
/**
* `valueObject` store value as object keys `{"value1": true, "value2": true}`
*/
valueObject: {
type: Object,
notify: true
},
/**
* `valueArray` store value as array `["value1", "value2"]`
*/
valueArray: {
type: Array,
notify: true
},
/**
* `valueJoin` joins values in a string
*/
valueJoin: {
type: String,
notify: true,
readOnly: true,
}
},
observers: [
'_observeValueObject(valueObject.*)',
'_observeValueArrayInit(valueArray)',
'_observeValueArray(valueArray.splices)',
],
//called when we set/reset valueArray
_observeValueArrayInit: function(valueArray) {
this._isInitiatingValueArray = true;
if (valueArray && !this._isUpdatingValueObject) {
var o = {};
this.valueArray.forEach(function(item) {
o[item] = true;
});
this.set('valueObject', o);
this._setValueJoin(this.valueArray.join(', '));
}
delete this._isInitiatingValueArray;
},
/**
* `_observeValueArray` ensures valueArray and valueObject are in sync
*/
_observeValueArray: function(splices) {
if (!splices) {
return;
}
this._isUpdatingValueArray = true;
// console.log('ARRAY SPLICE', splices);
if (!this._isUpdatingValueObject) {
splices.indexSplices.forEach(function(splice) {
splice.removed.forEach(function(removed) {
this.set('valueObject.' + removed, null); // so that it is deleted at firebase level
this.fire('tag-removed', removed);
}, this);
if (splice.addedCount) {
for (var i = 0; i < splice.addedCount; i++) {
var index = splice.index + i;
var newValue = splice.object[index];
this.set('valueObject.' + newValue, true);
this.fire('tag-added', newValue);
}
}
}, this);
this._setValueJoin((this.valueArray || []).join(', '));
}
delete this._isUpdatingValueArray;
},
/**
* `_observeValueObject` ensures valueArray and valueObject are in sync
*/
_observeValueObject: function(obj) {
this._isUpdatingValueObject = true;
if (!this._isUpdatingValueArray && !this._isInitiatingValueArray) {
var keys = Object.keys(this.valueObject).filter(function(item) {
return !!item;
});
this.syncValueArrayWithKeys(keys);
this._setValueJoin(this.valueArray.join(', '));
}
delete this._isUpdatingValueObject;
},
syncValueArrayWithKeys: function(keys) {
if (!this.valueArray) {
this.valueArray = [];
}
// removed values not present in keys
var tmpArray = [].concat(this.valueArray);
tmpArray.forEach(function(v) {
if (keys.indexOf(v) < 0) {
this.splice('valueArray', this.valueArray.indexOf(v), 1);
}
}, this);
// add all missing keys
keys.forEach(function(k) {
if (this.valueArray.indexOf(k) < 0) {
this.push('valueArray', k);
}
}, this);
}
};
</script>