kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
2.8 KiB
77 lines
2.8 KiB
#-- copyright
|
|
# OpenProject is an open source project management software.
|
|
# Copyright (C) 2012-2022 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 MailDigestHelper
|
|
def digest_summary_text(notification_count, mentioned_count)
|
|
mentioned = mentioned_count > 1 ? 'plural' : 'singular'
|
|
notifications = notification_count > 1 ? 'plural' : 'singular'
|
|
|
|
summary = I18n.t(:"mail.digests.unread_notification_#{notifications}",
|
|
number_unread: notification_count).to_s
|
|
|
|
unless mentioned_count === 0
|
|
summary << " #{I18n.t(:"mail.digests.including_mention_#{mentioned}",
|
|
number_mentioned: mentioned_count)}"
|
|
end
|
|
|
|
summary
|
|
end
|
|
|
|
def digest_notification_timestamp_text(notification, html: true)
|
|
journal = notification.journal
|
|
user = html ? link_to_user(journal.user, only_path: false) : journal.user.name
|
|
|
|
timestamp_text(user, journal)
|
|
end
|
|
|
|
def digest_additional_author_text(notifications)
|
|
number_of_additional_authors = number_of_authors(notifications) - 1
|
|
|
|
if notifications.length > 1 && number_of_additional_authors > 0
|
|
amount = number_of_additional_authors === 1 ? 'one' : 'other'
|
|
I18n.t(:"js.notifications.center.and_more_users.#{amount}", count: number_of_additional_authors)
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def timestamp_text(user, journal)
|
|
value = journal.initial? ? "created" : "updated"
|
|
sanitize(
|
|
I18n.t(:"mail.work_packages.#{value}_at",
|
|
user:,
|
|
timestamp: journal.created_at.strftime(
|
|
"#{I18n.t(:'date.formats.default')}, #{I18n.t(:'time.formats.time')}"
|
|
))
|
|
)
|
|
end
|
|
|
|
def number_of_authors(notifications)
|
|
notifications.group_by { |n| n[:actor_id] }.count
|
|
end
|
|
end
|
|
|