@@ -7,7 +7,8 @@ class Autocomplete < Lissio::Component
7
7
class Section < Lissio ::Component
8
8
class Options
9
9
def initialize ( &block )
10
- @key = :id
10
+ @key = :id
11
+ @limit = 10
11
12
12
13
if block . arity . nonzero?
13
14
block . call ( self )
@@ -20,14 +21,22 @@ def title(value = nil)
20
21
value ? @title = value : @title
21
22
end
22
23
23
- def url ( value = nil )
24
- value ? @url = value : @url
24
+ def local ( value = nil )
25
+ value ? @local = value : @local
26
+ end
27
+
28
+ def remote ( value = nil )
29
+ value ? @remote = value : @remote
25
30
end
26
31
27
32
def key ( value = nil )
28
33
value ? @key = value : @key
29
34
end
30
35
36
+ def limit ( value = nil )
37
+ value ? @limit = value : @limit
38
+ end
39
+
31
40
def select ( &block )
32
41
block ? @select = block : @select
33
42
end
@@ -103,10 +112,12 @@ def section(&block)
103
112
end
104
113
105
114
@autocompleters << {
106
- url : options . url ,
107
115
title : options . title ,
108
- select : options . select ,
116
+ local : options . local ,
117
+ remote : options . remote ,
109
118
key : options . key ,
119
+ limit : options . limit ,
120
+ select : options . select ,
110
121
section : section
111
122
}
112
123
end
@@ -132,15 +143,25 @@ def query
132
143
remove_old_completions
133
144
134
145
comps = @autocompleters . map do |ac |
135
- url = " #{ ac [ :url ] } ?q= #{ query . value } "
146
+ local_completions = get_local_completions ( ac )
136
147
137
- Browser ::HTTP . get ( url ) . then do |response |
138
- [ ac , response ]
148
+ if local_completions . count < ac [ :limit ] and ac [ :remote ]
149
+ url = "#{ ac [ :remote ] } ?q=#{ query . value } "
150
+
151
+ Browser ::HTTP . get ( url ) . then do |response |
152
+ [ ac , local_completions , response ]
153
+ end
154
+ else
155
+ [ ac , local_completions , nil ]
139
156
end
140
157
end
141
158
142
- Promise . when ( *comps ) . each do |ac , response |
143
- append_completions ( ac , response . json )
159
+ Promise . when ( *comps ) . each do |ac , completions , response |
160
+ if response
161
+ completions += response . json . take ( ac [ :limit ] - completions . size )
162
+ end
163
+
164
+ append_completions ( ac , completions )
144
165
end
145
166
end
146
167
@@ -190,6 +211,17 @@ def set_hint(comps, ac)
190
211
end
191
212
end
192
213
214
+ def get_local_completions ( ac )
215
+ return [ ] unless ac [ :local ]
216
+
217
+ key = ac [ :key ]
218
+ q = query . value
219
+
220
+ ac [ :local ] . select do |comp |
221
+ comp [ key ] . match ( q )
222
+ end . take ( ac [ :limit ] )
223
+ end
224
+
193
225
def append_completions ( ac , comps )
194
226
if comps . empty?
195
227
hide_completions unless @some_results
0 commit comments