* Internal method which gives you array of all event handlers that will be triggered by the given `name`.
**
> Arguments
**
- name (string) name of the event, dot (`.`) or slash (`/`) separated
**
= (array) array of event handlers
\*/
eve.listeners=function(name){
varnames=name.split(separator),
e=events,
item,
items,
k,
i,
ii,
j,
jj,
nes,
es=[e],
out=[];
for(i=0,ii=names.length;i<ii;i++){
nes=[];
for(j=0,jj=es.length;j<jj;j++){
e=es[j].n;
items=[e[names[i]],e[wildcard]];
k=2;
while(k--){
item=items[k];
if(item){
nes.push(item);
out=out.concat(item.f||[]);
}
}
}
es=nes;
}
returnout;
};
/*\
* eve.on
[ method ]
**
* Binds given event handler with a given name. You can use wildcards “`*`” for the names:
| eve.on("*.under.*", f);
| eve("mouse.under.floor"); // triggers f
* Use @eve to trigger the listener.
**
> Arguments
**
- name (string) name of the event, dot (`.`) or slash (`/`) separated, with optional wildcards
- f (function) event handler function
**
= (function) returned function accept one number parameter that represents z-index of the handler. It is optional feature and only used when you need to ensure that some subset of handlers will be invoked in a given order, despite of the order of assignment.
> Example:
| eve.on("mouse", eat)(2);
| eve.on("mouse", scream);
| eve.on("mouse", catch)(1);
* This will ensure that `catch` function will be called before `eat`.
* If you want to put you hadler before not indexed handlers specify negative value.
* Note: I assume most of the time you don’t need to worry about z-index, but it’s nice to have this feature “just in case”.
\*/
eve.on=function(name,f){
varnames=name.split(separator),
e=events;
for(vari=0,ii=names.length;i<ii;i++){
e=e.n;
!e[names[i]]&&(e[names[i]]={n:{}});
e=e[names[i]];
}
e.f=e.f||[];
for(i=0,ii=e.f.length;i<ii;i++)if(e.f[i]==f){
returnfun;
}
e.f.push(f);
returnfunction(zIndex){
if(+zIndex==+zIndex){
f.zIndex=+zIndex;
}
};
};
/*\
* eve.nt
[ method ]
**
* Could be used inside event handler to figure out actual name of the event.
**
> Arguments
**
- subname (string) #optional subname of the event
**
= (string) name of the event, if `subname` is not specified
* or
= (boolean) `true`, if current event’s name contains `subname`