mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
4380f8a633
`settings_form` was previously executing the block while still in the
class context. `instance_exec` ensures the block runs with `self` set to
the form instance. As such `settings_form` now behaves like its standard
`form` counterpart, i.e. the following works as expected:
class MySettingsForm < ApplicationForm
settings_form do |f|
f.text_field(name: :my_setting, caption: text_field_caption) # now resolves correctly
end
private
def text_field_caption
"A long caption"
end
end
Also removes `render_inline_form` in favour of the namesake method
provided by upstream Primer.
57 lines
1.9 KiB
Ruby
57 lines
1.9 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.
|
|
#++
|
|
|
|
class ApplicationForm < Primer::Forms::Base
|
|
include AttributeHelpTexts::FormHelper
|
|
|
|
def self.settings_form(&)
|
|
form do |f|
|
|
instance_exec(Settings::FormObjectDecorator.new(f), &)
|
|
end
|
|
end
|
|
|
|
def url_helpers
|
|
Rails.application.routes.url_helpers
|
|
end
|
|
|
|
# @return [ActiveRecord::Base] the model instance given to the form builder
|
|
def model
|
|
@builder.object
|
|
end
|
|
|
|
# Forwards all arguments to ActiveRecord's human_attribute_name.
|
|
#
|
|
# @param args [Array] Arguments to pass to human_attribute_name (e.g., attribute name, options)
|
|
# @return [String] The human-readable name of the specified attribute
|
|
def attribute_name(...)
|
|
model.class.human_attribute_name(...)
|
|
end
|
|
end
|