Make filtering a bit more snappy

This commit is contained in:
Piotr Sarnacki 2015-01-26 11:16:22 +01:00
parent 54007ee78a
commit 0baf5dc6d0
5 changed files with 33 additions and 3 deletions

View File

@ -14,4 +14,14 @@ Controller = Ember.Controller.extend
).property('filter', 'model')
updateFilter: () ->
value = @get('_lastFilterValue')
@transitionToRoute queryParams: { filter: value }
#@set('filter', value)
actions:
updateFilter: (value) ->
@set('_lastFilterValue', value)
Ember.run.throttle this, @updateFilter, [], 200, false
Travis.DashboardRepositoriesController = Controller

View File

@ -19,12 +19,14 @@ require 'helpers/format_message'
require 'helpers/format_config'
require 'helpers/short_compare_shas'
require 'helpers/mb'
require 'helpers/filter-input'
Ember.Handlebars.registerHelper('label', Travis.Handlebars.label)
Ember.Handlebars.registerHelper('input', Travis.Handlebars.input)
Ember.Handlebars.registerHelper('tipsy', Travis.Handlebars.tipsy)
Ember.Handlebars.registerHelper('travis-errors', Travis.Handlebars.travisErrors)
Ember.Handlebars.registerHelper('travis-field', Travis.Handlebars.travisField)
Ember.Handlebars.registerHelper('filter-input', Travis.Handlebars.filterInput)
Ember.Handlebars.registerBoundHelper('capitalize', Travis.Handlebars.capitalize)
Ember.Handlebars.registerBoundHelper('githubCommitLink', Travis.Handlebars.githubCommitLink)

View File

@ -0,0 +1,16 @@
TextField = Ember.TextField.extend
keyUp: (event) ->
@sendAction('action', @get('_value'), event)
_elementValueDidChange: ->
@set('_value', @$().val());
fn = (options) ->
Ember.assert('You can only pass attributes to the `input` helper, not arguments', arguments.length < 2)
onEvent = options.hash.on
delete options.hash.on
options.hash.onEvent = onEvent || 'enter'
return Ember.Handlebars.helpers.view.call(this, TextField, options)
Travis.Handlebars.filterInput = fn

View File

@ -29,7 +29,8 @@
</li>
</ul>
</div> -->
{{input placeholder="Search all repositories" class="search-field" value=filter}}
{{filter-input placeholder="Search all repositories" class="search-field"
value=filter action="updateFilter" on="key-up"}}
</div>
</div>

View File

@ -365,12 +365,13 @@ a {
.search-field {
background-image : url('/images/dashboard/search-icon.svg');
background-repeat : no-repeat;
background-position: right center;
background-position: right 5px center;
display : inline-block;
float : right;
border : 1px solid #666;
padding : 0.5em;
width : 100px;
width : 300px;
background-size : 16px 16px;
}
.tiles {