mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-10 17:36:33 +08:00
41 lines
955 B
Ruby
41 lines
955 B
Ruby
class ActivitiesController < ApplicationController
|
|
include ActivityHelper
|
|
|
|
def index
|
|
@vars = local_vars
|
|
respond_to do |format|
|
|
format.json do
|
|
render json: {
|
|
more_url: local_vars.fetch(:more_activities_url),
|
|
html: render_to_string(
|
|
partial: 'list.html.erb', locals: @vars
|
|
)
|
|
}
|
|
end
|
|
format.html
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def local_vars
|
|
page = (params[:page] || 1).to_i
|
|
activities = current_user.last_activities
|
|
.page(page)
|
|
.per(Constants::ACTIVITY_AND_NOTIF_SEARCH_LIMIT)
|
|
unless activities.blank? || activities.last_page?
|
|
more_url = url_for(
|
|
activities_url(
|
|
format: :json,
|
|
page: page + 1,
|
|
last_activity: activities.last.id
|
|
)
|
|
)
|
|
end
|
|
{
|
|
activities: activities,
|
|
more_activities_url: more_url,
|
|
page: page
|
|
}
|
|
end
|
|
end
|