mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
83 lines
2.8 KiB
Ruby
83 lines
2.8 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 ErrorMessageHelper
|
|
include ActionView::Helpers::OutputSafetyHelper
|
|
|
|
def error_messages_for(object)
|
|
object = instance_variable_get(:"@#{object}") unless object.respond_to?(:to_model)
|
|
object = convert_to_model(object)
|
|
return unless object
|
|
|
|
assign_flash_error(object.errors, object)
|
|
|
|
# Don't output anything for compability
|
|
nil
|
|
end
|
|
|
|
def assign_flash_error(errors, object)
|
|
return if errors.empty?
|
|
|
|
base_error_messages = errors.full_messages_for(:base)
|
|
fields_error_messages = errors.full_messages - base_error_messages
|
|
|
|
flash[:error] = {
|
|
message: error_message_header(object.class.model_name.human, base_error_messages.count + fields_error_messages.count),
|
|
description: error_flash_description(object, base_error_messages, fields_error_messages)
|
|
}
|
|
end
|
|
|
|
def error_message_header(object_name, count)
|
|
t("activerecord.errors.template.header", model: object_name, count:)
|
|
end
|
|
|
|
def error_flash_description(_object, base_error_messages, fields_error_messages)
|
|
safe_join([
|
|
list_of_messages(base_error_messages),
|
|
text_header_invalid_fields(base_error_messages, fields_error_messages),
|
|
list_of_messages(fields_error_messages)
|
|
].compact, tag(:br))
|
|
end
|
|
|
|
def text_header_invalid_fields(base_error_messages, fields_error_messages)
|
|
return if fields_error_messages.blank?
|
|
|
|
i18n_key = base_error_messages.present? ? "errors.header_additional_invalid_fields" : "errors.header_invalid_fields"
|
|
|
|
t(i18n_key, count: fields_error_messages.count)
|
|
end
|
|
|
|
def list_of_messages(messages)
|
|
return if messages.blank?
|
|
|
|
safe_join(messages, tag(:br))
|
|
end
|
|
end
|