Page MenuHomePhabricator

Add similiar questions sidebar to Ponder
ClosedPublic

Authored by chad on Aug 10 2015, 8:13 PM.
Tags
None
Referenced Files
Unknown Object (File)
Mon, Mar 25, 1:37 AM
Unknown Object (File)
Sun, Mar 10, 3:50 AM
Unknown Object (File)
Feb 25 2024, 11:24 AM
Unknown Object (File)
Feb 23 2024, 3:09 AM
Unknown Object (File)
Feb 14 2024, 10:52 PM
Unknown Object (File)
Feb 14 2024, 10:52 PM
Unknown Object (File)
Feb 14 2024, 4:22 PM
Unknown Object (File)
Feb 8 2024, 8:55 AM
Subscribers

Details

Reviewers
epriestley
Maniphest Tasks
T9099: Redesign Ponder
Commits
Restricted Diffusion Commit
rPb4e038d2af49: Add similiar questions sidebar to Ponder
Summary

Ref T9099. Testing out a two column layout in Ponder, with the main idea being creating a more browsable, discoverable product. I'd like the side column though to be a little smarter and provide project based searching. Ideally, if I'm reading Resolved Maniphest questions, other Resolved Maniphest questions are likely interesting. Another scenario is if I'm answering questions, in which case browsing more Open questions would also be interesting. Ponder "Main Column" still needs to be redesigned.

Test Plan

Browse open questions, resolved questions.

Diff Detail

Repository
rP Phabricator
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

chad retitled this revision from to Add similiar questions sidebar to Ponder.
chad updated this object.
chad edited the test plan for this revision. (Show Details)
chad added a reviewer: epriestley.
src/applications/ponder/controller/PonderQuestionViewController.php
420

To find questions which share any of the same projects as this question:

->withEdgeLogicPHIDs(
  PhabricatorProjectObjectHasProjectEdgeType::EDGECONST,
  PhabricatorQueryConstraint::OPERATOR_OR,
  $project_phids_to_search_for)
421
->setLimit(10)
epriestley edited edge metadata.
epriestley added inline comments.
src/applications/ponder/controller/PonderQuestionViewController.php
418–421

Or just $project_phids = $question->getProjectPHIDs();?

423–427

Remove now?

This revision is now accepted and ready to land.Aug 10 2015, 9:35 PM
chad marked 4 inline comments as done.
chad edited edge metadata.
  • per comets
This revision was automatically updated to reflect the committed changes.