mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
86 lines
2.7 KiB
Ruby
86 lines
2.7 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 Projects::CreationWizardStatusComponent < ApplicationComponent
|
|
include ApplicationHelper
|
|
include ProjectsHelper
|
|
|
|
attr_reader :project, :current_user,
|
|
:artifact_id, :artifact_work_package
|
|
|
|
def initialize(project:, current_user: User.current)
|
|
super
|
|
|
|
@project = project
|
|
@current_user = current_user
|
|
@artifact_id = project.project_creation_wizard_artifact_work_package_id.presence
|
|
@artifact_work_package = find_artifact if artifact_id.present?
|
|
end
|
|
|
|
def before_render
|
|
@status_text = set_status_text
|
|
@status_explanation = set_status_explanation
|
|
end
|
|
|
|
def render?
|
|
return false unless project.project_creation_wizard_enabled
|
|
|
|
if artifact_id
|
|
current_user.allowed_in_project?(:view_work_packages, project)
|
|
else
|
|
current_user.allowed_in_project?(:edit_project_attributes, project)
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def set_status_text
|
|
if artifact_id
|
|
t("settings.project_initiation_request.status.submitted",
|
|
wizard_name: project_creation_wizard_name(project))
|
|
else
|
|
t("settings.project_initiation_request.status.not_completed",
|
|
wizard_name: project_creation_wizard_name(project))
|
|
end
|
|
end
|
|
|
|
def set_status_explanation
|
|
if artifact_work_package
|
|
t("settings.project_initiation_request.status.submitted_description")
|
|
elsif !artifact_id
|
|
t("settings.project_initiation_request.status.not_completed_description")
|
|
end
|
|
end
|
|
|
|
def find_artifact
|
|
WorkPackage.visible.find_by(id: artifact_id)
|
|
end
|
|
end
|