scinote-web/app/services/toolbars/projects_service.rb

208 lines
5.4 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
module Toolbars
class ProjectsService
attr_reader :current_user
include Canaid::Helpers::PermissionsHelper
include Rails.application.routes.url_helpers
2023-11-10 20:34:36 +08:00
def initialize(current_user, items: [])
@current_user = current_user
2023-11-10 20:34:36 +08:00
project_ids = items.select { |i| i['type'] == 'projects' }.map { |i| i['id'] }
project_folder_ids = items.select { |i| i['type'] == 'project_folders' }.map { |i| i['id'] }
@projects = current_user.current_team.projects.where(id: project_ids)
@project_folders = current_user.current_team.project_folders.where(id: project_folder_ids)
@items = @projects + @project_folders
@single = @items.length == 1
@item_type = if project_ids.blank? && project_folder_ids.blank?
:none
elsif project_ids.present? && project_folder_ids.present?
:any
elsif project_folder_ids.present?
:project_folder
else
:project
end
end
def actions
return [] if @item_type == :none
[
restore_action,
edit_action,
access_action,
move_action,
export_action,
archive_action,
comments_action,
activities_action,
delete_folder_action
].compact
end
private
def edit_action
return unless @single
2023-12-01 07:01:08 +08:00
action = {
name: 'edit',
label: I18n.t('projects.index.edit_option'),
icon: 'sn-icon sn-icon-edit',
button_class: 'edit-btn',
type: :emit
}
if @items.first.is_a?(Project)
2023-12-01 07:01:08 +08:00
return unless can_manage_project?(@items.first)
else
2023-12-01 07:01:08 +08:00
return unless can_create_project_folders?(@items.first.team)
end
2023-12-01 07:01:08 +08:00
action
end
def access_action
return unless @single
return unless @item_type == :project
project = @items.first
return unless can_manage_team?(project.team) || can_read_project?(project)
{
name: 'access',
label: I18n.t('general.access'),
2023-12-12 19:17:38 +08:00
icon: 'sn-icon sn-icon-project-member-access',
2023-11-10 20:34:36 +08:00
type: :emit
}
end
def move_action
return unless can_manage_team?(@items.first.team) &&
@items.all? { |item| item.is_a?(Project) ? can_read_project?(item) : true }
{
name: 'move',
label: I18n.t('projects.index.move_button'),
2023-06-08 14:33:37 +08:00
icon: 'sn-icon sn-icon-move',
path: move_to_modal_project_folders_path,
2023-11-10 20:34:36 +08:00
type: :emit
}
end
def export_action
return unless @items.all? { |item| item.is_a?(Project) ? can_export_project?(item) : true }
2023-12-01 07:01:08 +08:00
num_projects = @items.length
limit = TeamZipExport.exports_limit
num_of_requests_left = @current_user.exports_left - 1
team = @items.first.team
message = "<p>#{I18n.t('projects.export_projects.modal_text_p1_html', num_projects: num_projects, team: team)}</p>
<p>#{I18n.t('projects.export_projects.modal_text_p2_html')}</p>"
unless limit.zero?
message += "<p><i>#{I18n.t('projects.export_projects.modal_text_p3_html', limit: limit, num: num_of_requests_left)}</i></p>"
end
{
2023-12-01 07:01:08 +08:00
items: @items,
name: 'export',
label: I18n.t('projects.export_projects.export_button'),
2023-06-08 14:33:37 +08:00
icon: 'sn-icon sn-icon-export',
2023-12-01 07:01:08 +08:00
message: message,
path: export_projects_team_path(team),
2023-11-10 20:34:36 +08:00
type: :emit
}
end
def archive_action
return unless @items.all? do |item|
item.is_a?(Project) && can_archive_project?(item)
end
{
name: 'archive',
label: I18n.t('projects.index.archive_button'),
2023-06-08 14:33:37 +08:00
icon: 'sn-icon sn-icon-archive',
path: archive_group_projects_path,
2023-11-10 20:34:36 +08:00
type: :emit,
}
end
def restore_action
return unless @items.all? do |item|
item.is_a?(Project) && can_restore_project?(item)
end
{
name: 'restore',
label: I18n.t('projects.index.restore_button'),
2023-06-08 14:33:37 +08:00
icon: 'sn-icon sn-icon-restore',
button_class: 'restore-projects-btn',
path: restore_group_projects_path,
2023-11-10 20:34:36 +08:00
type: :emit
}
end
def delete_folder_action
return unless @items.all? do |item|
item.is_a?(ProjectFolder) && can_delete_project_folder?(item)
end
{
name: 'delete_folders',
label: I18n.t('general.delete'),
2023-06-08 14:33:37 +08:00
icon: 'sn-icon sn-icon-delete',
2023-12-01 07:01:08 +08:00
path: destroy_project_folders_path,
2023-11-10 20:34:36 +08:00
type: :emit
}
end
def comments_action
return unless @single
return unless @item_type == :project
project = @items.first
return unless can_read_project?(project)
{
name: 'comments',
label: I18n.t('Comments'),
2023-06-08 14:33:37 +08:00
icon: 'sn-icon sn-icon-comments',
2023-11-10 20:34:36 +08:00
type: :emit
}
end
def activities_action
return unless @single
return unless @item_type == :project
project = @items.first
return unless can_read_project?(project)
activity_url_params = Activity.url_search_query({ subjects: { Project: [project] } })
{
name: 'activities',
label: I18n.t('nav.label.activities'),
2023-06-08 14:33:37 +08:00
icon: 'sn-icon sn-icon-activities',
button_class: 'project-activities-btn',
path: "/global_activities?#{activity_url_params}",
type: :link
}
end
end
end