1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-18 19:40:55 +01:00

Improve some commenting/editing behaviors for recurring events

Summary:
Ref T11809. Currently, commenting on a recurring event hits the same "one or all?" dialog that other edits do.

For comments and edits submitted via the comment widget, we can safely assume that you mean "just this one", since it doesn't really make sense to try to bulk-edit an event from that UI.

Test Plan: Commented on a recurring event parent and an event in the series.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T11809

Differential Revision: https://secure.phabricator.com/D16795
This commit is contained in:
epriestley 2016-11-02 13:34:58 -07:00
parent 64cf9204c1
commit 29313372e7
5 changed files with 68 additions and 6 deletions

View file

@ -34,7 +34,17 @@ final class PhabricatorCalendarEventEditController
->addCancelButton($cancel_uri); ->addCancelButton($cancel_uri);
} }
} else if ($event->getIsRecurring()) { } else if ($event->getIsRecurring()) {
// If the user submits a comment or makes an edit via comment actions,
// always target only the current event. It doesn't make sense to add
// comments to every instance of an event, and the other actions don't
// make much sense to apply to all instances either.
if ($engine->isCommentAction()) {
$mode = PhabricatorCalendarEventEditEngine::MODE_THIS;
} else {
$mode = $request->getStr('mode'); $mode = $request->getStr('mode');
}
if (!$mode) { if (!$mode) {
$form = id(new AphrontFormView()) $form = id(new AphrontFormView())
->setViewer($viewer) ->setViewer($viewer)
@ -60,7 +70,6 @@ final class PhabricatorCalendarEventEditController
->addSubmitButton(pht('Continue')) ->addSubmitButton(pht('Continue'))
->addCancelButton($cancel_uri) ->addCancelButton($cancel_uri)
->setDisableWorkflowOnSubmit(true); ->setDisableWorkflowOnSubmit(true);
} }
$engine $engine

View file

@ -295,7 +295,7 @@ final class PhabricatorCalendarEventEditEngine
protected function willApplyTransactions($object, array $xactions) { protected function willApplyTransactions($object, array $xactions) {
$viewer = $this->getViewer(); $viewer = $this->getViewer();
$this->rawTransactions = $xactions; $this->rawTransactions = $this->cloneTransactions($xactions);
$is_parent = $object->isParentEvent(); $is_parent = $object->isParentEvent();
$is_child = $object->isChildEvent(); $is_child = $object->isChildEvent();
@ -304,6 +304,30 @@ final class PhabricatorCalendarEventEditEngine
$must_fork = ($is_child && $is_future) || $must_fork = ($is_child && $is_future) ||
($is_parent && !$is_future); ($is_parent && !$is_future);
if ($is_parent && !$is_future) {
// We don't necessarily need to fork if whatever we're editing is not
// inherited by children. For example, we can add a comment to the parent
// event without needing to fork. Test all the stuff we're doing and see
// if anything is actually inherited.
$inherited_edit = false;
foreach ($xactions as $xaction) {
$modular_type = $xaction->getTransactionImplementation();
if ($modular_type instanceof PhabricatorCalendarEventTransactionType) {
$inherited_edit = $modular_type->isInheritedEdit();
if ($inherited_edit) {
break;
}
}
}
// Nothing the user is trying to do requires us to fork, so we can just
// apply the changes normally.
if (!$inherited_edit) {
$must_fork = false;
}
}
if ($must_fork) { if ($must_fork) {
$fork_target = $object->loadForkTarget($viewer); $fork_target = $object->loadForkTarget($viewer);
if ($fork_target) { if ($fork_target) {
@ -340,7 +364,7 @@ final class PhabricatorCalendarEventEditEngine
} }
foreach ($targets as $target) { foreach ($targets as $target) {
$apply = clone $this->rawTransactions; $apply = $this->cloneTransactions($this->rawTransactions);
$this->applyTransactions($target, $apply); $this->applyTransactions($target, $apply);
} }
} }
@ -366,4 +390,12 @@ final class PhabricatorCalendarEventEditEngine
} }
} }
private function cloneTransactions(array $xactions) {
$result = array();
foreach ($xactions as $xaction) {
$result[] = clone $xaction;
}
return $result;
}
} }

View file

@ -8,6 +8,10 @@ abstract class PhabricatorCalendarEventReplyTransaction
return $object->getUserInviteStatus($actor_phid); return $object->getUserInviteStatus($actor_phid);
} }
public function isInheritedEdit() {
return false;
}
public function applyExternalEffects($object, $value) { public function applyExternalEffects($object, $value) {
$acting_phid = $this->getActingAsPHID(); $acting_phid = $this->getActingAsPHID();

View file

@ -1,4 +1,10 @@
<?php <?php
abstract class PhabricatorCalendarEventTransactionType abstract class PhabricatorCalendarEventTransactionType
extends PhabricatorModularTransactionType {} extends PhabricatorModularTransactionType {
public function isInheritedEdit() {
return true;
}
}

View file

@ -780,7 +780,7 @@ abstract class PhabricatorEditEngine
$controller = $this->getController(); $controller = $this->getController();
$request = $controller->getRequest(); $request = $controller->getRequest();
$action = $request->getURIData('editAction'); $action = $this->getEditAction();
$capabilities = array(); $capabilities = array();
$use_default = false; $use_default = false;
@ -2098,6 +2098,17 @@ abstract class PhabricatorEditEngine
PhabricatorPolicyCapability::CAN_EDIT); PhabricatorPolicyCapability::CAN_EDIT);
} }
public function isCommentAction() {
return ($this->getEditAction() == 'comment');
}
public function getEditAction() {
$controller = $this->getController();
$request = $controller->getRequest();
return $request->getURIData('editAction');
}
/* -( Form Pages )--------------------------------------------------------- */ /* -( Form Pages )--------------------------------------------------------- */