|
| 1 | +var Class = require('../core/class'); |
| 2 | + |
| 3 | +module.exports = Class({ |
| 4 | + |
| 5 | + // placement |
| 6 | + |
| 7 | + _resetPlacement: function(){ |
| 8 | + var container = this.parentNode; |
| 9 | + if (container){ |
| 10 | + var previous = this.previousSibling, next = this.nextSibling; |
| 11 | + if (previous){ |
| 12 | + previous.nextSibling = next; |
| 13 | + } else { |
| 14 | + container.firstChild = next; |
| 15 | + } |
| 16 | + if (next){ |
| 17 | + next.previousSibling = previous; |
| 18 | + } else { |
| 19 | + container.lastChild = this.previousSibling; |
| 20 | + } |
| 21 | + } |
| 22 | + this.previousSibling = null; |
| 23 | + this.nextSibling = null; |
| 24 | + this.parentNode = null; |
| 25 | + return this; |
| 26 | + }, |
| 27 | + |
| 28 | + inject: function(container){ |
| 29 | + this._resetPlacement(); |
| 30 | + var last = container.lastChild; |
| 31 | + if (last){ |
| 32 | + last.nextSibling = this; |
| 33 | + this.previousSibling = last; |
| 34 | + } else { |
| 35 | + container.firstChild = this; |
| 36 | + } |
| 37 | + container.lastChild = this; |
| 38 | + this.parentNode = container; |
| 39 | + this._place(); |
| 40 | + return this; |
| 41 | + }, |
| 42 | + |
| 43 | + injectBefore: function(sibling){ |
| 44 | + this._resetPlacement(); |
| 45 | + var container = sibling.parentNode; |
| 46 | + if (!container) return this; |
| 47 | + var previous = sibling.previousSibling; |
| 48 | + if (previous){ |
| 49 | + previous.nextSibling = this; |
| 50 | + this.previousSibling = previous; |
| 51 | + } else { |
| 52 | + container.firstChild = this; |
| 53 | + } |
| 54 | + sibling.previousSibling = this; |
| 55 | + this.nextSibling = sibling; |
| 56 | + this.parentNode = container; |
| 57 | + this._place(); |
| 58 | + return this; |
| 59 | + }, |
| 60 | + |
| 61 | + eject: function(){ |
| 62 | + this._resetPlacement(); |
| 63 | + this._place(); |
| 64 | + return this; |
| 65 | + }, |
| 66 | + |
| 67 | + _place: function(){}, |
| 68 | + |
| 69 | + // events |
| 70 | + |
| 71 | + dispatch: function(event){ |
| 72 | + var events = this._events, |
| 73 | + listeners = events && events[event.type]; |
| 74 | + if (listeners){ |
| 75 | + listeners = listeners.slice(0); |
| 76 | + for (var i = 0, l = listeners.length; i < l; i++){ |
| 77 | + var fn = listeners[i], result; |
| 78 | + if (typeof fn == 'function') |
| 79 | + result = fn.call(this, event); |
| 80 | + else |
| 81 | + result = fn.handleEvent(event); |
| 82 | + if (result === false) event.preventDefault(); |
| 83 | + } |
| 84 | + } |
| 85 | + if (this.parentNode && this.parentNode.dispatch){ |
| 86 | + this.parentNode.dispatch(event); |
| 87 | + } |
| 88 | + }, |
| 89 | + |
| 90 | + subscribe: function(type, fn, bind){ |
| 91 | + if (typeof type != 'string'){ // listen type / fn with object |
| 92 | + var subscriptions = []; |
| 93 | + for (var t in type) subscriptions.push(this.subscribe(t, type[t])); |
| 94 | + return function(){ // unsubscribe |
| 95 | + for (var i = 0, l = subscriptions.length; i < l; i++) |
| 96 | + subscriptions[i](); |
| 97 | + return this; |
| 98 | + }; |
| 99 | + } else { // listen to one |
| 100 | + var bound = typeof fn === 'function' ? fn.bind(bind || this) : fn, |
| 101 | + events = this._events || (this._events = {}), |
| 102 | + listeners = events[type] || (events[type] = []); |
| 103 | + listeners.push(bound); |
| 104 | + return function(){ |
| 105 | + // unsubscribe |
| 106 | + for (var i = 0, l = listeners.length; i < l; i++){ |
| 107 | + if (listeners[i] === bound){ |
| 108 | + listeners.splice(i, 1); |
| 109 | + break; |
| 110 | + } |
| 111 | + } |
| 112 | + } |
| 113 | + } |
| 114 | + } |
| 115 | + |
| 116 | +}); |
0 commit comments