Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15343116
D10935.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
3 KB
Referenced Files
None
Subscribers
None
D10935.diff
View Options
diff --git a/src/applications/differential/controller/DifferentialRevisionViewController.php b/src/applications/differential/controller/DifferentialRevisionViewController.php
--- a/src/applications/differential/controller/DifferentialRevisionViewController.php
+++ b/src/applications/differential/controller/DifferentialRevisionViewController.php
@@ -96,9 +96,7 @@
$props = mpull($props, 'getData', 'getName');
$all_changesets = $changesets;
- $inlines = $this->loadInlineComments(
- $revision,
- $all_changesets);
+ $inlines = $revision->loadInlineComments($all_changesets);
$object_phids = array_merge(
$revision->getReviewers(),
@@ -644,44 +642,6 @@
return $actions_dict;
}
- private function loadInlineComments(
- DifferentialRevision $revision,
- array &$changesets) {
- assert_instances_of($changesets, 'DifferentialChangeset');
-
- $inline_comments = array();
-
- $inline_comments = id(new DifferentialInlineCommentQuery())
- ->withRevisionIDs(array($revision->getID()))
- ->withNotDraft(true)
- ->execute();
-
- $load_changesets = array();
- foreach ($inline_comments as $inline) {
- $changeset_id = $inline->getChangesetID();
- if (isset($changesets[$changeset_id])) {
- continue;
- }
- $load_changesets[$changeset_id] = true;
- }
-
- $more_changesets = array();
- if ($load_changesets) {
- $changeset_ids = array_keys($load_changesets);
- $more_changesets += id(new DifferentialChangeset())
- ->loadAllWhere(
- 'id IN (%Ld)',
- $changeset_ids);
- }
-
- if ($more_changesets) {
- $changesets += $more_changesets;
- $changesets = msort($changesets, 'getSortKey');
- }
-
- return $inline_comments;
- }
-
private function loadChangesetsAndVsMap(
DifferentialDiff $target,
DifferentialDiff $diff_vs = null,
diff --git a/src/applications/differential/storage/DifferentialRevision.php b/src/applications/differential/storage/DifferentialRevision.php
--- a/src/applications/differential/storage/DifferentialRevision.php
+++ b/src/applications/differential/storage/DifferentialRevision.php
@@ -280,6 +280,44 @@
return $this;
}
+ public function loadInlineComments(
+ array &$changesets) {
+ assert_instances_of($changesets, 'DifferentialChangeset');
+
+ $inline_comments = array();
+
+ $inline_comments = id(new DifferentialInlineCommentQuery())
+ ->withRevisionIDs(array($this->getID()))
+ ->withNotDraft(true)
+ ->execute();
+
+ $load_changesets = array();
+ foreach ($inline_comments as $inline) {
+ $changeset_id = $inline->getChangesetID();
+ if (isset($changesets[$changeset_id])) {
+ continue;
+ }
+ $load_changesets[$changeset_id] = true;
+ }
+
+ $more_changesets = array();
+ if ($load_changesets) {
+ $changeset_ids = array_keys($load_changesets);
+ $more_changesets += id(new DifferentialChangeset())
+ ->loadAllWhere(
+ 'id IN (%Ld)',
+ $changeset_ids);
+ }
+
+ if ($more_changesets) {
+ $changesets += $more_changesets;
+ $changesets = msort($changesets, 'getSortKey');
+ }
+
+ return $inline_comments;
+ }
+
+
public function getCapabilities() {
return array(
PhabricatorPolicyCapability::CAN_VIEW,
@@ -495,6 +533,9 @@
->setViewer($request->getUser())
->withDiffs(array($right_diff))
->execute();
+ // NOTE: this mutates $changesets to include changesets for all inline
+ // comments...!
+ $inlines = $this->loadInlineComments($changesets);
$changesets = mpull($changesets, null, 'getID');
return $timeline
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Mon, Mar 10, 10:12 PM (3 w, 2 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7225233
Default Alt Text
D10935.diff (3 KB)
Attached To
Mode
D10935: Transactions - fix bug in differential where older inlines weren't appearing
Attached
Detach File
Event Timeline
Log In to Comment