-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlite-signal.html
70 lines (60 loc) · 2.38 KB
/
lite-signal.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
<!--
@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-element.html">
<script>
(function() {
// private list of subscribers
var subscribers = []
function getNewSignal(name, data) {
// convert generic-signal event to named-signal event
return new CustomEvent('lite-signal-' + name, {
// if subscribers bubble, it's easy to get confusing duplicates
// (1) listen on a container on behalf of local child
// (2) some deep child ignores the event and it bubbles
// up to said container
// (3) local child event bubbles up to container
// also, for performance, we avoid subscribers flying up the
// tree from all over the place
bubbles: false,
detail: data,
});
}
// signal dispatcher
function notify(name, data) {
// dispatch named-signal to all 'subscribers' instances,
// only interested listeners will react
subscribers.forEach(function(sub) {
// Generate a new CustomEvent for each instance:
// Once an event is consumed, for some reason in FF it does not trigger anything in another subscriber
// listening on the same event (https://github.com/ernsheong/lite-signal/issues/4)
sub.dispatchEvent(getNewSignal(name, data));
});
}
class LiteSignal extends Polymer.Element {
static get is() {return "lite-signal"};
connectedCallback() {
super.connectedCallback();
subscribers.push(this);
}
disconnectedCallback() {
super.disconnectedCallback();
var i = subscribers.indexOf(this);
if (i >= 0) {
subscribers.splice(i, 1);
}
}
}
window.customElements.define(LiteSignal.is, LiteSignal);
// signal listener at document
document.addEventListener('lite-signal', function(e) {
notify(e.detail.name, e.detail.data);
});
})();
</script>