forked from Meteor-Community-Packages/meteor-autocomplete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
templates.coffee
50 lines (39 loc) · 1.59 KB
/
templates.coffee
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
# Events on template instances, sent to the autocomplete class
acEvents =
"keydown": (e, t) -> t.ac.onKeyDown(e)
"keyup": (e, t) -> t.ac.onKeyUp(e)
"focus": (e, t) -> t.ac.onFocus(e)
"blur": (e, t) -> t.ac.onBlur(e)
Template.inputAutocomplete.events(acEvents)
Template.textareaAutocomplete.events(acEvents)
attributes = -> _.omit(@, 'settings') # Render all but the settings parameter
autocompleteHelpers = {
attributes,
autocompleteContainer: new Template('AutocompleteContainer', ->
ac = new AutoComplete( Blaze.getData().settings )
# Set the autocomplete object on the parent template instance
this.parentView.templateInstance().ac = ac
# Set nodes on render in the autocomplete class
this.onViewReady ->
ac.element = this.parentView.firstNode()
ac.$element = $(ac.element)
return Blaze.With(ac, -> Template._autocompleteContainer)
)
}
Template.inputAutocomplete.helpers(autocompleteHelpers)
Template.textareaAutocomplete.helpers(autocompleteHelpers)
Template._autocompleteContainer.rendered = ->
@data.tmplInst = this
Template._autocompleteContainer.destroyed = ->
# Meteor._debug "autocomplete destroyed"
@data.teardown()
###
List rendering helpers
###
Template._autocompleteContainer.events
# t.data is the AutoComplete instance; `this` is the data item
"click .-autocomplete-item": (e, t) -> t.data.onItemClick(this, e)
"mouseenter .-autocomplete-item": (e, t) -> t.data.onItemHover(this, e)
Template._autocompleteContainer.helpers
empty: -> @filteredList().count() is 0
noMatchTemplate: -> @matchedRule().noMatchTemplate || Template._noMatch