Page MenuHomePhabricator

Modernize PonderQuestion with EditEngine
ClosedPublic

Authored by chad on May 1 2017, 8:35 PM.
Tags
None
Referenced Files
F18738769: D17812.diff
Wed, Oct 1, 5:05 PM
F18568078: D17812.id42856.diff
Tue, Sep 9, 10:47 PM
F18568077: D17812.id42836.diff
Tue, Sep 9, 10:47 PM
F18568076: D17812.id42830.diff
Tue, Sep 9, 10:47 PM
F18566248: D17812.id.diff
Tue, Sep 9, 2:25 PM
F18500942: D17812.diff
Sep 4 2025, 9:26 PM
F18183448: D17812.id42856.diff
Aug 16 2025, 11:40 AM
F18103173: D17812.id42830.diff
Aug 10 2025, 2:31 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
Lint
Lint Not Applicable
Unit
Tests Not Applicable

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.