2015-09-11 14:41:01 +05:30
|
|
|
class Dashboard::ProjectsController < Dashboard::ApplicationController
|
|
|
|
before_action :event_filter
|
2015-04-26 12:48:37 +05:30
|
|
|
|
2015-09-25 12:07:36 +05:30
|
|
|
def index
|
|
|
|
@projects = current_user.authorized_projects.sorted_by_activity.non_archived
|
2016-04-02 18:10:28 +05:30
|
|
|
@projects = @projects.sort(@sort = params[:sort])
|
2015-09-25 12:07:36 +05:30
|
|
|
@projects = @projects.includes(:namespace)
|
2016-04-02 18:10:28 +05:30
|
|
|
|
|
|
|
terms = params[:filter_projects]
|
|
|
|
|
|
|
|
if terms.present?
|
|
|
|
@projects = @projects.search(terms)
|
|
|
|
end
|
|
|
|
|
|
|
|
@projects = @projects.page(params[:page]).per(PER_PAGE)
|
2015-09-25 12:07:36 +05:30
|
|
|
@last_push = current_user.recent_push
|
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html
|
|
|
|
format.atom do
|
|
|
|
event_filter
|
|
|
|
load_events
|
|
|
|
render layout: false
|
|
|
|
end
|
2016-04-02 18:10:28 +05:30
|
|
|
format.json do
|
|
|
|
render json: {
|
|
|
|
html: view_to_html_string("dashboard/projects/_projects", locals: { projects: @projects })
|
|
|
|
}
|
|
|
|
end
|
2015-09-25 12:07:36 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
def starred
|
|
|
|
@projects = current_user.starred_projects
|
|
|
|
@projects = @projects.includes(:namespace, :forked_from_project, :tags)
|
|
|
|
@projects = @projects.sort(@sort = params[:sort])
|
2016-04-02 18:10:28 +05:30
|
|
|
|
|
|
|
terms = params[:filter_projects]
|
|
|
|
|
|
|
|
if terms.present?
|
|
|
|
@projects = @projects.search(terms)
|
|
|
|
end
|
|
|
|
|
|
|
|
@projects = @projects.page(params[:page]).per(PER_PAGE)
|
2015-10-24 18:46:33 +05:30
|
|
|
@last_push = current_user.recent_push
|
2015-04-26 12:48:37 +05:30
|
|
|
@groups = []
|
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html
|
|
|
|
|
|
|
|
format.json do
|
2016-04-02 18:10:28 +05:30
|
|
|
render json: {
|
|
|
|
html: view_to_html_string("dashboard/projects/_projects", locals: { projects: @projects })
|
|
|
|
}
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def load_events
|
2016-04-02 18:10:28 +05:30
|
|
|
@events = Event.in_projects(@projects)
|
2015-04-26 12:48:37 +05:30
|
|
|
@events = @event_filter.apply_filter(@events).with_associations
|
|
|
|
@events = @events.limit(20).offset(params[:offset] || 0)
|
|
|
|
end
|
|
|
|
end
|