Pony.fm/resources/assets/scripts/app/directives/src-loader.coffee

26 lines
854 B
CoffeeScript
Raw Normal View History

2015-08-31 17:42:21 +02:00
angular.module('ponyfm').directive 'pfmSrcLoader', () ->
2015-10-25 03:35:37 +01:00
(scope, element, attrs) ->
size = attrs.pfmSrcSize || 'normal'
element.css {opacity: .5}
2015-08-31 17:42:21 +02:00
2015-10-25 03:35:37 +01:00
update = (val) ->
element.attr 'src', '/images/icons/loading_' + size + '.png'
2015-08-31 17:42:21 +02:00
2015-10-25 03:35:37 +01:00
image = element.clone()
image.removeAttr 'pfm-src-loader'
image.removeAttr 'pfm-src-size'
2015-08-31 17:42:21 +02:00
2015-10-25 03:35:37 +01:00
# If the given value is null, don't bother trying to
# load something - it will result in an HTTP error.
if val
image[0].onload = ->
element.attr 'src', val
element.css {opacity: 0}
element.animate {opacity: 1}, 250
2015-08-31 17:42:21 +02:00
2015-10-25 03:35:37 +01:00
image[0].src = val
2015-08-31 17:42:21 +02:00
2015-10-25 03:35:37 +01:00
update scope.$eval attrs.pfmSrcLoader
2015-08-31 17:42:21 +02:00
2015-10-25 03:35:37 +01:00
scope.$watch attrs.pfmSrcLoader, update