2019-06-04 20:40:21 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module CommentHelper
|
|
|
|
def comment_action_url(comment)
|
|
|
|
case comment.type
|
|
|
|
when 'StepComment'
|
|
|
|
step_step_comment_path(comment.step, comment, format: :json)
|
|
|
|
when 'ResultComment'
|
|
|
|
result_result_comment_path(comment.result, comment, format: :json)
|
|
|
|
when 'ProjectComment'
|
|
|
|
project_project_comment_path(comment.project, comment, format: :json)
|
|
|
|
when 'TaskComment'
|
|
|
|
my_module_my_module_comment_path(comment.my_module, comment, format: :json)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-01-08 19:32:59 +08:00
|
|
|
def comment_index_helper(comments, more_url, partial = nil)
|
2019-06-04 20:40:21 +08:00
|
|
|
partial ||= 'shared/comments/list.html.erb'
|
2020-01-08 19:32:59 +08:00
|
|
|
render json: {
|
2019-06-04 20:40:21 +08:00
|
|
|
perPage: @per_page,
|
|
|
|
resultsNumber: comments.size,
|
|
|
|
moreUrl: more_url,
|
|
|
|
html: render_to_string(
|
|
|
|
partial: partial, locals: { comments: comments }
|
|
|
|
)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2020-12-04 16:38:34 +08:00
|
|
|
def comment_create_helper(comment, partial = 'item', comment_count)
|
2019-06-04 20:40:21 +08:00
|
|
|
if comment.save
|
|
|
|
case comment.type
|
|
|
|
when 'StepComment'
|
2020-11-21 03:25:28 +08:00
|
|
|
step_comment_annotation_notification(comment)
|
|
|
|
log_step_activity(:add_comment_to_step, comment)
|
2019-06-04 20:40:21 +08:00
|
|
|
when 'ResultComment'
|
2020-11-21 03:25:28 +08:00
|
|
|
result_comment_annotation_notification(comment)
|
|
|
|
log_result_activity(:add_comment_to_result, comment)
|
2019-06-04 20:40:21 +08:00
|
|
|
when 'ProjectComment'
|
2020-11-21 03:25:28 +08:00
|
|
|
project_comment_annotation_notification(comment)
|
|
|
|
log_project_activity(:add_comment_to_project, comment)
|
2019-06-04 20:40:21 +08:00
|
|
|
when 'TaskComment'
|
2020-11-21 03:25:28 +08:00
|
|
|
my_module_comment_annotation_notification(comment)
|
|
|
|
log_my_module_activity(:add_comment_to_module, comment)
|
2019-06-04 20:40:21 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
render json: {
|
2020-12-04 16:38:34 +08:00
|
|
|
comment_count: comment_count,
|
2019-06-04 20:40:21 +08:00
|
|
|
html: render_to_string(
|
2020-11-21 03:25:28 +08:00
|
|
|
partial: "/shared/comments/#{partial}.html.erb",
|
2019-06-04 20:40:21 +08:00
|
|
|
locals: {
|
|
|
|
comment: comment
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
else
|
2020-11-21 03:25:28 +08:00
|
|
|
render json: { errors: comment.errors.to_hash(true) }, status: :unprocessable_entity
|
2019-06-04 20:40:21 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-01-08 19:32:59 +08:00
|
|
|
def comment_editable?(comment)
|
|
|
|
case comment.type
|
|
|
|
when 'TaskComment', 'StepComment', 'ResultComment'
|
|
|
|
can_manage_comment_in_module?(comment.becomes(Comment))
|
|
|
|
when 'ProjectComment'
|
|
|
|
can_manage_comment_in_project?(comment)
|
|
|
|
else
|
|
|
|
false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-11-21 03:25:28 +08:00
|
|
|
def comment_update_helper(comment, old_text, partial = nil)
|
2019-06-04 20:40:21 +08:00
|
|
|
if comment.save
|
|
|
|
case comment.type
|
|
|
|
when 'StepComment'
|
2020-11-21 03:25:28 +08:00
|
|
|
step_comment_annotation_notification(comment, old_text)
|
|
|
|
log_step_activity(:edit_step_comment, comment)
|
2019-06-04 20:40:21 +08:00
|
|
|
when 'ResultComment'
|
2020-11-21 03:25:28 +08:00
|
|
|
result_comment_annotation_notification(comment, old_text)
|
|
|
|
log_result_activity(:edit_result_comment, comment)
|
2019-06-04 20:40:21 +08:00
|
|
|
when 'ProjectComment'
|
2020-11-21 03:25:28 +08:00
|
|
|
project_comment_annotation_notification(comment, old_text)
|
|
|
|
log_project_activity(:edit_project_comment, comment)
|
2019-06-04 20:40:21 +08:00
|
|
|
when 'TaskComment'
|
2020-11-21 03:25:28 +08:00
|
|
|
my_module_comment_annotation_notification(comment, old_text)
|
|
|
|
log_my_module_activity(:edit_module_comment, comment)
|
2019-06-04 20:40:21 +08:00
|
|
|
end
|
|
|
|
|
2020-11-21 03:25:28 +08:00
|
|
|
if partial
|
|
|
|
render json: {
|
|
|
|
html: render_to_string(
|
|
|
|
partial: "/shared/comments/#{partial}.html.erb",
|
|
|
|
locals: {
|
|
|
|
comment: comment
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
else
|
|
|
|
message = custom_auto_link(comment.message, team: current_team, simple_format: true)
|
|
|
|
render json: { comment: message }, status: :ok
|
|
|
|
end
|
2019-06-04 20:40:21 +08:00
|
|
|
else
|
|
|
|
render json: { errors: comment.errors.to_hash(true) },
|
|
|
|
status: :unprocessable_entity
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-12-04 16:38:34 +08:00
|
|
|
def comment_destroy_helper(comment, comment_count)
|
2019-06-04 20:40:21 +08:00
|
|
|
if comment.destroy
|
|
|
|
case comment.type
|
|
|
|
when 'StepComment'
|
2020-11-21 03:25:28 +08:00
|
|
|
log_step_activity(:delete_step_comment, comment)
|
2019-06-04 20:40:21 +08:00
|
|
|
when 'ResultComment'
|
2020-11-21 03:25:28 +08:00
|
|
|
log_result_activity(:delete_result_comment, comment)
|
2019-06-04 20:40:21 +08:00
|
|
|
when 'ProjectComment'
|
2020-11-21 03:25:28 +08:00
|
|
|
log_project_activity(:delete_project_comment, comment)
|
2019-06-04 20:40:21 +08:00
|
|
|
when 'TaskComment'
|
2020-11-21 03:25:28 +08:00
|
|
|
log_my_module_activity(:delete_module_comment, comment)
|
2019-06-04 20:40:21 +08:00
|
|
|
end
|
2020-12-04 16:38:34 +08:00
|
|
|
render json: { comment_count: comment_count }, status: :ok
|
2019-06-04 20:40:21 +08:00
|
|
|
else
|
|
|
|
render json: { message: I18n.t('comments.delete_error') },
|
|
|
|
status: :unprocessable_entity
|
|
|
|
end
|
|
|
|
end
|
2020-11-21 03:25:28 +08:00
|
|
|
|
|
|
|
def result_comment_annotation_notification(comment, old_text = nil)
|
|
|
|
result = comment.result
|
|
|
|
smart_annotation_notification(
|
|
|
|
old_text: old_text,
|
|
|
|
new_text: comment.message,
|
|
|
|
title: t('notifications.result_comment_annotation_title',
|
|
|
|
result: result.name,
|
|
|
|
user: current_user.full_name),
|
|
|
|
message: t('notifications.result_annotation_message_html',
|
|
|
|
project: link_to(result.my_module.experiment.project.name,
|
|
|
|
project_url(result.my_module
|
|
|
|
.experiment
|
|
|
|
.project)),
|
|
|
|
experiment: link_to(result.my_module.experiment.name,
|
|
|
|
canvas_experiment_url(result.my_module
|
|
|
|
.experiment)),
|
|
|
|
my_module: link_to(result.my_module.name,
|
|
|
|
protocols_my_module_url(
|
|
|
|
result.my_module
|
|
|
|
)))
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def project_comment_annotation_notification(comment, old_text = nil)
|
|
|
|
project = comment.project
|
|
|
|
smart_annotation_notification(
|
|
|
|
old_text: old_text,
|
|
|
|
new_text: comment.message,
|
|
|
|
title: t('notifications.project_comment_annotation_title',
|
|
|
|
project: project.name,
|
|
|
|
user: current_user.full_name),
|
|
|
|
message: t('notifications.project_annotation_message_html',
|
|
|
|
project: link_to(project.name, project_url(project)))
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def step_comment_annotation_notification(comment, old_text = nil)
|
|
|
|
step = comment.step
|
|
|
|
smart_annotation_notification(
|
|
|
|
old_text: old_text,
|
|
|
|
new_text: comment.message,
|
|
|
|
title: t('notifications.step_comment_annotation_title',
|
|
|
|
step: step.name,
|
|
|
|
user: current_user.full_name),
|
|
|
|
message: t('notifications.step_annotation_message_html',
|
|
|
|
project: link_to(step.my_module.experiment.project.name,
|
|
|
|
project_url(step.my_module
|
|
|
|
.experiment
|
|
|
|
.project)),
|
|
|
|
experiment: link_to(step.my_module.experiment.name,
|
|
|
|
canvas_experiment_url(step.my_module
|
|
|
|
.experiment)),
|
|
|
|
my_module: link_to(step.my_module.name,
|
|
|
|
protocols_my_module_url(
|
|
|
|
step.my_module
|
|
|
|
)),
|
|
|
|
step: link_to(step.name,
|
|
|
|
protocols_my_module_url(step.my_module)))
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def my_module_comment_annotation_notification(comment, old_text = nil)
|
|
|
|
my_module = comment.my_module
|
|
|
|
smart_annotation_notification(
|
|
|
|
old_text: old_text,
|
|
|
|
new_text: comment.message,
|
|
|
|
title: t('notifications.my_module_comment_annotation_title',
|
|
|
|
my_module: my_module.name,
|
|
|
|
user: current_user.full_name),
|
|
|
|
message: t('notifications.my_module_annotation_message_html',
|
|
|
|
project: link_to(my_module.experiment.project.name,
|
|
|
|
project_url(my_module
|
|
|
|
.experiment
|
|
|
|
.project)),
|
|
|
|
experiment: link_to(my_module.experiment.name,
|
|
|
|
canvas_experiment_url(my_module
|
|
|
|
.experiment)),
|
|
|
|
my_module: link_to(my_module.name,
|
|
|
|
protocols_my_module_url(
|
|
|
|
my_module
|
|
|
|
)))
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def log_my_module_activity(type_of, comment)
|
|
|
|
my_module = comment.my_module
|
|
|
|
Activities::CreateActivityService
|
|
|
|
.call(activity_type: type_of,
|
|
|
|
owner: current_user,
|
|
|
|
team: my_module.experiment.project.team,
|
|
|
|
project: my_module.experiment.project,
|
|
|
|
subject: my_module,
|
|
|
|
message_items: { my_module: my_module.id })
|
|
|
|
end
|
|
|
|
|
|
|
|
def log_project_activity(type_of, comment)
|
|
|
|
project = comment.project
|
|
|
|
Activities::CreateActivityService
|
|
|
|
.call(activity_type: type_of,
|
|
|
|
owner: current_user,
|
|
|
|
subject: project,
|
|
|
|
team: project.team,
|
|
|
|
project: project,
|
|
|
|
message_items: { project: project.id })
|
|
|
|
end
|
|
|
|
|
|
|
|
def log_step_activity(type_of, comment)
|
|
|
|
step = comment.step
|
|
|
|
Activities::CreateActivityService
|
|
|
|
.call(activity_type: type_of,
|
|
|
|
owner: current_user,
|
|
|
|
subject: step.protocol,
|
|
|
|
team: step.my_module.experiment.project.team,
|
|
|
|
project: step.my_module.experiment.project,
|
|
|
|
message_items: {
|
|
|
|
my_module: step.my_module.id,
|
|
|
|
step: step.id,
|
|
|
|
step_position: { id: step.id, value_for: 'position_plus_one' }
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
def log_result_activity(type_of, comment)
|
|
|
|
result = comment.result
|
|
|
|
Activities::CreateActivityService
|
|
|
|
.call(activity_type: type_of,
|
|
|
|
owner: current_user,
|
|
|
|
subject: result,
|
|
|
|
team: result.my_module.experiment.project.team,
|
|
|
|
project: result.my_module.experiment.project,
|
|
|
|
message_items: { result: result.id })
|
|
|
|
end
|
2020-11-30 22:55:20 +08:00
|
|
|
|
|
|
|
def has_unseen_comments?(commentable)
|
|
|
|
commentable.comments.where('? = ANY (unseen_by)', current_user.id).any?
|
|
|
|
end
|
2019-06-04 20:40:21 +08:00
|
|
|
end
|