gitlab-org--gitlab-foss/app/assets/javascripts/pager.js.coffee

43 lines
941 B
CoffeeScript
Raw Normal View History

2013-01-27 16:47:19 +00:00
@Pager =
init: (@limit = 0, preload, @disable = false) ->
@loading = $(".loading")
2013-01-27 16:47:19 +00:00
if preload
@offset = 0
@getOld()
else
@offset = @limit
2013-01-27 16:47:19 +00:00
@initLoadMore()
getOld: ->
@loading.show()
2013-01-27 16:47:19 +00:00
$.ajax
type: "GET"
url: $(".content_list").data('href') || location.href
2013-01-27 16:47:19 +00:00
data: "limit=" + @limit + "&offset=" + @offset
complete: =>
@loading.hide()
success: (data) ->
Pager.append(data.count, data.html)
dataType: "json"
2013-01-27 16:47:19 +00:00
append: (count, html) ->
$(".content_list").append html
if count > 0
@offset += count
else
@disable = true
initLoadMore: ->
$(document).unbind('scroll')
2013-01-27 16:47:19 +00:00
$(document).endlessScroll
bottomPixels: 400
fireDelay: 1000
fireOnce: true
ceaseFire: ->
Pager.disable
callback: (i) =>
unless @loading.is(':visible')
@loading.show()
Pager.getOld()