Move some helpers from ext/jquery to utils/helpers

This commit is contained in:
Piotr Sarnacki 2015-02-02 11:56:43 +01:00
parent 051562540c
commit bf33ffce41
2 changed files with 23 additions and 2 deletions

View File

@ -4,8 +4,6 @@ config_keys_map = Travis.CONFIG_KEYS_MAP
config = ENV.config
githubCommitUrl = Travis.Urls.githubCommit
timeago = $.timeago
intersect = $.intersect
only = $.only
mapObject = $.map
colors = {
@ -16,6 +14,28 @@ colors = {
canceled: 'gray'
}
mapObject = (elems, callback, arg) ->
value = undefined
key = undefined
ret = []
i = 0
for key of elems
value = callback(elems[key], key, arg)
ret[ret.length] = value if value?
ret.concat.apply [], ret
only = (object) ->
keys = Array::slice.apply(arguments)
object = (if (typeof keys[0] is 'object') then keys.shift() else this)
result = {}
for key of object
result[key] = object[key] unless keys.indexOf(key) is -1
result
intersect = (array, other) ->
array.filter (element) ->
other.indexOf(element) != -1
compact = (object) ->
result = {}
(result[key] = value unless Ember.isEmpty(value)) for key, value of object || {}

View File

@ -21,6 +21,7 @@ if charm_key = $('meta[name="travis.charm_key"]').attr('value')
require 'utils/ajax'
require 'utils/keys-map'
require 'utils/urls'
require 'utils/helpers'
require 'utils/status-image-formats'