mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
73 lines
3.0 KiB
Ruby
73 lines
3.0 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::CustomFields
|
|
extend ActiveSupport::Concern
|
|
|
|
include ActsAsCustomizable::CalculatedValue
|
|
|
|
included do
|
|
has_many :project_custom_field_project_mappings, class_name: "ProjectCustomFieldProjectMapping",
|
|
foreign_key: :project_id, dependent: :destroy,
|
|
inverse_of: :project
|
|
has_many :project_custom_fields, through: :project_custom_field_project_mappings,
|
|
class_name: "ProjectCustomField"
|
|
|
|
def enabled_custom_field_ids
|
|
project_custom_field_project_mappings.map(&:custom_field_id)
|
|
end
|
|
|
|
def available_custom_fields
|
|
return all_visible_custom_fields if new_record?
|
|
|
|
all_visible_custom_fields.where(id: project_custom_field_project_mappings.select(:custom_field_id))
|
|
end
|
|
|
|
# Note:
|
|
#
|
|
# The UI allows the enabled attributes only via the project_custom_field_project_mappings.
|
|
# The API still provides the old behaviour where all the custom fields are available regardless
|
|
# of the enabled mapping. Once the api behaviour is aligned to the UI behaviour, this method
|
|
# can be removed in favour of the available_custom_fields.
|
|
# As a future improvement a flag `via_api=true` can be set on the project when the
|
|
# modification happens via the api, then set the available_custom_fields accordingly. This allows
|
|
# the extension to be completely removed from the acts_as_customizable plugin.
|
|
def all_available_custom_fields
|
|
ProjectCustomField
|
|
.includes(:project_custom_field_section)
|
|
.order("custom_field_sections.position", :position_in_custom_field_section)
|
|
end
|
|
|
|
def all_visible_custom_fields
|
|
all_available_custom_fields.visible(project: self)
|
|
end
|
|
end
|
|
end
|