mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
191 lines
5.6 KiB
Ruby
191 lines
5.6 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 WorkPackages::ProgressController < ApplicationController
|
|
ERROR_PRONE_ATTRIBUTES = %i[status_id
|
|
estimated_hours
|
|
remaining_hours
|
|
done_ratio].freeze
|
|
|
|
layout false
|
|
authorization_checked! :new, :edit, :create, :update
|
|
|
|
def new
|
|
make_fake_initial_work_package
|
|
set_progress_attributes_to_work_package
|
|
|
|
render progress_modal_component
|
|
end
|
|
|
|
def edit
|
|
find_work_package
|
|
set_progress_attributes_to_work_package
|
|
|
|
render progress_modal_component
|
|
end
|
|
|
|
# rubocop:disable Metrics/AbcSize
|
|
def create
|
|
make_fake_initial_work_package
|
|
service_call = set_progress_attributes_to_work_package
|
|
|
|
if service_call.errors
|
|
.map(&:attribute)
|
|
.intersect?(ERROR_PRONE_ATTRIBUTES)
|
|
respond_to do |format|
|
|
format.turbo_stream do
|
|
# Bundle 422 status code into stream response so
|
|
# Angular has context as to the success or failure of
|
|
# the request in order to fetch the new set of Work Package
|
|
# attributes in the ancestry solely on success.
|
|
render turbo_stream: [
|
|
turbo_stream.morph("work_package_progress_modal", progress_modal_component)
|
|
], status: :unprocessable_entity
|
|
end
|
|
end
|
|
else
|
|
render json: { estimatedTime: formatted_duration(@work_package.estimated_hours),
|
|
remainingTime: formatted_duration(@work_package.remaining_hours),
|
|
percentageDone: @work_package.done_ratio }
|
|
end
|
|
end
|
|
# rubocop:enable Metrics/AbcSize
|
|
|
|
def update
|
|
find_work_package
|
|
service_call = WorkPackages::UpdateService
|
|
.new(user: current_user,
|
|
model: @work_package)
|
|
.call(work_package_progress_params)
|
|
|
|
if service_call.success?
|
|
respond_to do |format|
|
|
format.turbo_stream do
|
|
render turbo_stream: []
|
|
end
|
|
end
|
|
else
|
|
respond_to do |format|
|
|
format.turbo_stream do
|
|
# Bundle 422 status code into stream response so
|
|
# Angular has context as to the success or failure of
|
|
# the request in order to fetch the new set of Work Package
|
|
# attributes in the ancestry solely on success.
|
|
render turbo_stream: [
|
|
turbo_stream.morph("work_package_progress_modal", progress_modal_component)
|
|
], status: :unprocessable_entity
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def progress_modal_component
|
|
modal_class.new(@work_package, focused_field:, touched_field_map:)
|
|
end
|
|
|
|
def modal_class
|
|
if WorkPackage.status_based_mode?
|
|
WorkPackages::Progress::StatusBased::ModalBodyComponent
|
|
else
|
|
WorkPackages::Progress::WorkBased::ModalBodyComponent
|
|
end
|
|
end
|
|
|
|
def focused_field
|
|
params[:field]
|
|
end
|
|
|
|
def find_work_package
|
|
@work_package = WorkPackage.visible.find(params[:work_package_id])
|
|
end
|
|
|
|
def make_fake_initial_work_package
|
|
initial_params = params["work_package"]["initial"]
|
|
.slice(*%w[estimated_hours remaining_hours done_ratio status_id])
|
|
.permit!
|
|
@work_package = WorkPackage.new(initial_params)
|
|
@work_package.clear_changes_information
|
|
end
|
|
|
|
def touched_field_map
|
|
params.require(:work_package)
|
|
.slice("estimated_hours_touched",
|
|
"remaining_hours_touched",
|
|
"done_ratio_touched",
|
|
"status_id_touched")
|
|
.transform_values { it == "true" }
|
|
.permit!
|
|
end
|
|
|
|
def work_package_progress_params
|
|
params.require(:work_package)
|
|
.slice(*allowed_touched_params)
|
|
.permit!
|
|
end
|
|
|
|
def allowed_touched_params
|
|
allowed_params.filter { touched?(it) }
|
|
end
|
|
|
|
def allowed_params
|
|
if WorkPackage.status_based_mode?
|
|
%i[estimated_hours status_id]
|
|
else
|
|
%i[estimated_hours remaining_hours done_ratio]
|
|
end
|
|
end
|
|
|
|
def touched?(field)
|
|
touched_field_map[:"#{field}_touched"]
|
|
end
|
|
|
|
def set_progress_attributes_to_work_package
|
|
WorkPackages::SetAttributesService
|
|
.new(user: current_user,
|
|
model: @work_package,
|
|
contract_class:)
|
|
.call(work_package_progress_params)
|
|
end
|
|
|
|
def contract_class
|
|
if @work_package.new_record?
|
|
WorkPackages::CreateContract
|
|
else
|
|
WorkPackages::UpdateContract
|
|
end
|
|
end
|
|
|
|
def formatted_duration(hours)
|
|
API::V3::Utilities::DateTimeFormatter.format_duration_from_hours(hours, allow_nil: true)
|
|
end
|
|
end
|