Page MenuHomePhabricator

Modernize PonderQuestion with EditEngine
ClosedPublic

Authored by chad on May 1 2017, 8:35 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sun, Feb 9, 3:56 AM
Unknown Object (File)
Fri, Jan 24, 8:37 PM
Unknown Object (File)
Jan 21 2025, 10:34 AM
Unknown Object (File)
Jan 17 2025, 9:40 PM
Unknown Object (File)
Jan 14 2025, 8:20 PM
Unknown Object (File)
Jan 13 2025, 7:13 PM
Unknown Object (File)
Jan 2 2025, 11:27 PM
Unknown Object (File)
Jan 2 2025, 1:40 PM
Subscribers

Details

Summary

Just a small touch up to move this to edit engine.

Test Plan
  • Create a question
  • Edit a question
  • Close question
  • Test NUX state

Diff Detail

Repository
rP Phabricator
Branch
ponder-answer-feed (branched from master)
Lint
Lint Passed
Unit
Tests Passed
Build Status
Buildable 16757
Build 22356: Run Core Tests
Build 22355: arc lint + arc unit

Event Timeline

I can't get this to work, obviously every conversion comes with little bugs. Specifically I get "bad setter call getEditPolicy" which isn't set because we use a moderator policy for Ponder. It's automatically being set on the EditEngine and I'm not sure how to decline setting it.

I think the issue is that PonderQuestionEditor->getTransactionTypes() currently looks like this:

public function getTransactionTypes() {
  $types = parent::getTransactionTypes();

  $types[] = PhabricatorTransactions::TYPE_COMMENT;
  $types[] = PhabricatorTransactions::TYPE_VIEW_POLICY;
  $types[] = PhabricatorTransactions::TYPE_EDIT_POLICY;
  $types[] = PhabricatorTransactions::TYPE_SPACE;

  return $types;
}

I believe:

  • COMMENT and SPACE get determined automatically by using instanceof to identify interfaces the object implements, and can be removed.
  • EDIT is wrong (you can not edit the edit policy of a question) and should be removed.
  • VIEW is correct.

Removing EDIT should fix the getEditPolicy() issue, I think.

src/applications/ponder/editor/PonderQuestionEditor.php
76

Comment also still needed, not modernized.

I considered trying to vet this thoroughly locally but I imagine I'll just hit 200 pre-existing bugs and we're better off not knowing they exist.

This revision is now accepted and ready to land.May 3 2017, 5:31 PM
This revision was automatically updated to reflect the committed changes.