Files
openproject/app/components/projects/table_component.rb
T
Alexander Brandon Coles 2b144e8542 Fix wording: Change "Favored" to "Favorited"
Favorite is the correct term in the context of expressing a preference
for a particular project / other OpenProject domain object.

Updates `ActsAsFavorable` to `ActsAsFavoritable`, as well as filenames,
identifiers and strings to:

    favored => favorited
    favorable => favoritable
    favoring => favoriting
2025-09-10 19:08:15 +01:00

211 lines
5.6 KiB
Ruby

# frozen_string_literal: true
#-- copyright
# OpenProject is an open source project management software.
# Copyright (C) the OpenProject GmbH
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License version 3.
#
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
# Copyright (C) 2006-2013 Jean-Philippe Lang
# Copyright (C) 2010-2013 the ChiliProject Team
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# See COPYRIGHT and LICENSE files for more details.
#++
module Projects
class TableComponent < ::TableComponent
include OpTurbo::Streamable
options :params # We read collapsed state from params
options :current_user # adds this option to those of the base class
options :query
def initialize(**)
super(rows: [], **)
end
def before_render
@model = projects(query)
super
end
def initial_sort
%i[lft asc]
end
def self.wrapper_key
"projects-table"
end
def table_id
"project-table"
end
def container_class
"generic-table--container_visible-overflow generic-table--container_height-100"
end
##
# The project sort by is handled differently
def quick_action_table_header(column, options)
helpers.projects_sort_header_tag(column, query.selects.map(&:attribute), **options, param: :json)
end
# We don't return the project row
# but the [project, level] array from the helper
def rows
@rows ||= begin
projects_enumerator = ->(model) { to_enum(:projects_with_levels_order_sensitive, model).to_a }
instance_exec(model, &projects_enumerator)
end
end
def initialize_sorted_model
helpers.sort_clear
orders = query.orders.select(&:valid?).map { |o| [o.attribute.to_s, o.direction.to_s] }
helpers.sort_init orders
helpers.sort_update orders.map(&:first)
end
def paginated?
true
end
def pagination_options
default_pagination_options.merge(optional_pagination_options)
end
def default_pagination_options
{
allowed_params: %i[query_id filters columns sortBy],
turbo: true
}
end
def optional_pagination_options
{}
end
def deactivate_class_on_lft_sort
if sorted_by_lft?
"spot-link_inactive"
end
end
def href_only_when_not_sort_lft
unless sorted_by_lft?
projects_path(
sortBy: JSON.dump([%w[lft asc]]),
**helpers.projects_query_params.slice(*helpers.projects_query_param_names_for_sort)
)
end
end
def order_options(select, turbo: false)
options = {
caption: select.caption,
sortable: sortable_column?(select)
}
if turbo
options[:data] = { "turbo-stream": true }
end
options
end
def sortable_column?(select)
sortable? && query.known_order?(select.attribute)
end
def use_quick_action_table_headers?
true
end
def columns
@columns ||= begin
columns = query.selects.reject { |select| select.is_a?(::Queries::Selects::NotExistingSelect) }
index = columns.index { |column| column.attribute == :name }
columns.insert(index, ::Queries::Projects::Selects::Default.new(:hierarchy)) if index
columns
end
end
def projects(query)
scope = query.results
# The two columns associated with the
# * disk storage
# * latest activity
# information are only available to admins.
# For non admins, the performance penalty of fetching the information therefore needs never be paid.
if User.current.admin?
scope = scope
.with_required_storage
.with_latest_activity
end
scope
.includes(:custom_values, :enabled_modules)
.paginate(page: helpers.page_param(params), per_page: helpers.per_page_param(params))
end
def projects_with_levels_order_sensitive(projects, &)
if sorted_by_lft?
Project.project_tree(projects, &)
else
projects_with_level(projects, &)
end
end
def projects_with_level(projects, &)
ancestors = []
projects.each do |project|
while !ancestors.empty? && !project.is_descendant_of?(ancestors.last)
ancestors.pop
end
yield project, ancestors.count
ancestors << project
end
end
def favorited_project_ids
@favorited_project_ids ||= Favorite.where(user: current_user, favorited_type: "Project").pluck(:favorited_id)
end
def project_phase_by_definition(definition, project)
@project_phases_by_definition ||= Project::Phase
.visible
.index_by { |s| [s.definition_id, s.project_id] }
@project_phases_by_definition[[definition.id, project.id]]
end
def sorted_by_lft?
query.orders.first&.attribute == :lft
end
end
end