Page MenuHomePhabricator

Implement "Group by Owner" on Workboards
ClosedPublic

Authored by epriestley on Mar 11 2019, 5:01 AM.
Tags
None
Referenced Files
Unknown Object (File)
Sun, Apr 21, 4:20 PM
Unknown Object (File)
Fri, Apr 19, 3:03 AM
Unknown Object (File)
Thu, Apr 11, 7:30 AM
Unknown Object (File)
Sat, Mar 30, 7:40 AM
Unknown Object (File)
Fri, Mar 29, 4:39 PM
Unknown Object (File)
Mar 18 2024, 5:17 AM
Unknown Object (File)
Mar 5 2024, 1:22 PM
Unknown Object (File)
Mar 1 2024, 4:52 AM
Subscribers
None
Tokens
"Love" token, awarded by leoluk.

Details

Summary

Depends on D20269. Ref T10333. Now that orderings are modularized, this is fairly easy to implement. This isn't super fancy for now (e.g., no profile images) but I'll touch it up in a general polish followup.

Test Plan

Screen Shot 2019-03-10 at 10.00.50 PM.png (629×380 px, 40 KB)

Diff Detail

Repository
rP Phabricator
Branch
grip6
Lint
Lint Passed
Unit
Tests Passed
Build Status
Buildable 22248
Build 30421: Run Core Tests
Build 30420: arc lint + arc unit

Event Timeline

amckinley added inline comments.
src/applications/project/order/PhabricatorProjectColumnOwnerOrder.php
72

"by the owner's"

81–83

Maybe sort them all into a single "Invalid Owner" bucket?

This revision is now accepted and ready to land.Mar 12 2019, 7:53 PM
  • Typo correction.

I think the "Invalid Owner" case is likely very rare and having more information may be helpful in sorting it out, but there's no reason we couldn't do a single "invalid" bucket if that doesn't prove to be the case.

Other groupings like "priority" and "status" can end up with database values that have no display value, and I think the extra headers are probably helpful on the balance there, since sometimes they point directly at a corrective action (usually: reverting changes to configuration to put back priorities or statuses that you incorrectly got rid of). In these cases, at least, it seems more helpful to have an Unknown Status ("waylayed") header than an Invalid Status header, although admittedly it's less likely that anyone can take specific corrective action based on Unknown User ("PHID-USER-xyz") vs Invalid Owner.

This revision was automatically updated to reflect the committed changes.