summaryrefslogtreecommitdiffstats
path: root/coffee/directives/whenscrolled.coffee
blob: e4a00bec10c881b0c2a830c7d2d8ca08500c8334 (plain)
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
51
52
53
54
55
56
###
# ownCloud news app
#
# @author Alessandro Cosentino
# @author Bernhard Posselt
# Copyright (c) 2012 - Alessandro Cosentino <cosenal@gmail.com>
# Copyright (c) 2012 - Bernhard Posselt <nukeawhale@gmail.com>
#
# This file is licensed under the Affero General Public License version 3 or
# later.
#
# See the COPYING-README file
#
###

scrolling = true
markingRead = true

angular.module('News').directive 'whenScrolled',
['$rootScope', 'Config',
($rootScope, Config) ->

	return (scope, elm, attr) ->

		elm.bind 'scroll', ->
			# prevent from doing to many scroll actions
			# the first timeout prevents accidental and too early marking as read
			if scrolling
				scrolling = false
				setTimeout ->
					scrolling = true
				, Config.ScrollTimeout

				if markingRead
					markingRead = false
					setTimeout ->
						markingRead = true
						# only broadcast elements that are not already read
						# and that are beyond the top border
						$elems = $(elm).find('.feed_item:not(.read)')

						for feedItem in $elems
							offset = $(feedItem).position().top
							if offset <= -50
								id = parseInt($(feedItem).data('id'), 10)
								feed = parseInt($(feedItem).data('feed'), 10)
								$rootScope.$broadcast('read', {id: id, feed: feed})
							else
								break

					, Config.MarkReadTimeout

				scope.$apply attr.whenScrolled

]