2015-09-11 14:41:01 +05:30
|
|
|
class Dashboard::ProjectsController < Dashboard::ApplicationController
|
2016-06-02 11:05:42 +05:30
|
|
|
include FilterProjects
|
|
|
|
|
2015-09-11 14:41:01 +05:30
|
|
|
before_action :event_filter
|
2015-04-26 12:48:37 +05:30
|
|
|
|
2015-09-25 12:07:36 +05:30
|
|
|
def index
|
2016-06-02 11:05:42 +05:30
|
|
|
@projects = current_user.authorized_projects.sorted_by_activity
|
|
|
|
@projects = filter_projects(@projects)
|
2015-09-25 12:07:36 +05:30
|
|
|
@projects = @projects.includes(:namespace)
|
2016-06-02 11:05:42 +05:30
|
|
|
@projects = @projects.sort(@sort = params[:sort])
|
|
|
|
@projects = @projects.page(params[:page])
|
2016-04-02 18:10:28 +05:30
|
|
|
|
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
|
2016-06-02 11:05:42 +05:30
|
|
|
@projects = current_user.viewable_starred_projects.sorted_by_activity
|
|
|
|
@projects = filter_projects(@projects)
|
2015-04-26 12:48:37 +05:30
|
|
|
@projects = @projects.includes(:namespace, :forked_from_project, :tags)
|
|
|
|
@projects = @projects.sort(@sort = params[:sort])
|
2016-06-02 11:05:42 +05:30
|
|
|
@projects = @projects.page(params[:page])
|
2016-04-02 18:10:28 +05:30
|
|
|
|
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
|