@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Move "Calendar" above "Badges" on user profiles

Summary:
Ref T11809. As we move toward unprototyping, this panel is probably more relevant/dynamic/interesting more often than the badges panel, I think?

Particularly, I want to make the red dots a little easier to understand, and I think putting this above the fold will help aid discovery (red dot -> click -> see red dot -> see "away until ..." -> see calendar -> "oh they're at a meeting"?).

This is entirely a product/subjective thing so I'm fine with not doing it or using a different order.

I think there's maybe even an argument for putting this above "Projects", but "Projects" feels more core to me, at least for now.

Test Plan: Viewed a user profile, saw "Calendar" above "Badges".

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T11809

Differential Revision: https://secure.phabricator.com/D16790

+2 -2
+2 -2
src/applications/people/controller/PhabricatorPeopleProfileViewController.php
··· 58 58 ->appendChild($feed); 59 59 60 60 $projects = $this->buildProjectsView($user); 61 - $badges = $this->buildBadgesView($user); 62 61 $calendar = $this->buildCalendarDayView($user); 62 + $badges = $this->buildBadgesView($user); 63 63 require_celerity_resource('project-view-css'); 64 64 65 65 $home = id(new PHUITwoColumnView()) ··· 73 73 ->setSideColumn( 74 74 array( 75 75 $projects, 76 - $badges, 77 76 $calendar, 77 + $badges, 78 78 )); 79 79 80 80 $nav = $this->getProfileMenu();