Page MenuHomePhabricator

Modernize PonderQuestion with EditEngine
ClosedPublic

Authored by chad on May 1 2017, 8:35 PM.
Tags
None
Referenced Files
Unknown Object (File)
Wed, Sep 4, 7:11 PM
Unknown Object (File)
Tue, Sep 3, 5:34 AM
Unknown Object (File)
Mon, Sep 2, 11:01 PM
Unknown Object (File)
Thu, Aug 29, 6:14 PM
Unknown Object (File)
Aug 19 2024, 11:05 PM
Unknown Object (File)
Aug 18 2024, 12:13 PM
Unknown Object (File)
Aug 10 2024, 3:14 AM
Unknown Object (File)
Jul 30 2024, 9:28 AM
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 16762
Build 22363: Run Core Tests
Build 22362: 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
75

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.