1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-22 14:52:41 +01:00

Clean up AphrontError boxes, Diffusion Headers

Summary: Two basic changes here, first we fixed up the Diffusion headers to roll out more PHUIObjectBoxes. Second we added some specific styles for when Errors are inside an ObjectBox at the first position.

Test Plan: Tested a number of different layouts for browsing respositories as well as wherever I could find cases with PHUIObjectBox Form Errors (see images attached). Still some minor tightening due after this diff, but didnt want to overload it.

Reviewers: epriestley, btrahan

Reviewed By: epriestley

CC: Korvin, epriestley, aran

Differential Revision: https://secure.phabricator.com/D7914
This commit is contained in:
Chad Little 2014-01-09 08:51:57 -08:00
parent 6639f93153
commit 3c5756adf9
7 changed files with 79 additions and 43 deletions

View file

@ -7,7 +7,7 @@
return array( return array(
'names' => 'names' =>
array( array(
'core.pkg.css' => '5ebae357', 'core.pkg.css' => '3c41daee',
'core.pkg.js' => 'c907bd96', 'core.pkg.js' => 'c907bd96',
'darkconsole.pkg.js' => 'ca8671ce', 'darkconsole.pkg.js' => 'ca8671ce',
'differential.pkg.css' => '827749c1', 'differential.pkg.css' => '827749c1',
@ -23,7 +23,7 @@ return array(
'rsrc/css/aphront/context-bar.css' => '1c3b0529', 'rsrc/css/aphront/context-bar.css' => '1c3b0529',
'rsrc/css/aphront/dark-console.css' => '6378ef3d', 'rsrc/css/aphront/dark-console.css' => '6378ef3d',
'rsrc/css/aphront/dialog-view.css' => 'dd9db96c', 'rsrc/css/aphront/dialog-view.css' => 'dd9db96c',
'rsrc/css/aphront/error-view.css' => '3281a87d', 'rsrc/css/aphront/error-view.css' => '472968e0',
'rsrc/css/aphront/lightbox-attachment.css' => '686f8885', 'rsrc/css/aphront/lightbox-attachment.css' => '686f8885',
'rsrc/css/aphront/list-filter-view.css' => '9577c6da', 'rsrc/css/aphront/list-filter-view.css' => '9577c6da',
'rsrc/css/aphront/multi-column.css' => '05bbd016', 'rsrc/css/aphront/multi-column.css' => '05bbd016',
@ -136,7 +136,7 @@ return array(
'rsrc/css/phui/phui-icon.css' => '29e83226', 'rsrc/css/phui/phui-icon.css' => '29e83226',
'rsrc/css/phui/phui-info-panel.css' => '27ea50a1', 'rsrc/css/phui/phui-info-panel.css' => '27ea50a1',
'rsrc/css/phui/phui-list.css' => '2edb76cf', 'rsrc/css/phui/phui-list.css' => '2edb76cf',
'rsrc/css/phui/phui-object-box.css' => '90077bf8', 'rsrc/css/phui/phui-object-box.css' => '4f916b80',
'rsrc/css/phui/phui-object-item-list-view.css' => 'd65c06e7', 'rsrc/css/phui/phui-object-item-list-view.css' => 'd65c06e7',
'rsrc/css/phui/phui-pinboard-view.css' => '53c5fca0', 'rsrc/css/phui/phui-pinboard-view.css' => '53c5fca0',
'rsrc/css/phui/phui-property-list-view.css' => '354465ae', 'rsrc/css/phui/phui-property-list-view.css' => '354465ae',
@ -475,7 +475,7 @@ return array(
'aphront-contextbar-view-css' => '1c3b0529', 'aphront-contextbar-view-css' => '1c3b0529',
'aphront-dark-console-css' => '6378ef3d', 'aphront-dark-console-css' => '6378ef3d',
'aphront-dialog-view-css' => 'dd9db96c', 'aphront-dialog-view-css' => 'dd9db96c',
'aphront-error-view-css' => '3281a87d', 'aphront-error-view-css' => '472968e0',
'aphront-list-filter-view-css' => '9577c6da', 'aphront-list-filter-view-css' => '9577c6da',
'aphront-multi-column-view-css' => '05bbd016', 'aphront-multi-column-view-css' => '05bbd016',
'aphront-notes' => '6acadd3f', 'aphront-notes' => '6acadd3f',
@ -740,7 +740,7 @@ return array(
'phui-icon-view-css' => '29e83226', 'phui-icon-view-css' => '29e83226',
'phui-info-panel-css' => '27ea50a1', 'phui-info-panel-css' => '27ea50a1',
'phui-list-view-css' => '2edb76cf', 'phui-list-view-css' => '2edb76cf',
'phui-object-box-css' => '90077bf8', 'phui-object-box-css' => '4f916b80',
'phui-object-item-list-view-css' => 'd65c06e7', 'phui-object-item-list-view-css' => 'd65c06e7',
'phui-pinboard-view-css' => '53c5fca0', 'phui-pinboard-view-css' => '53c5fca0',
'phui-property-list-view-css' => '354465ae', 'phui-property-list-view-css' => '354465ae',

View file

@ -84,17 +84,18 @@ final class DifferentialDiffCreateController extends DifferentialController {
$form_box = id(new PHUIObjectBoxView()) $form_box = id(new PHUIObjectBoxView())
->setHeaderText(pht('Create New Diff')) ->setHeaderText(pht('Create New Diff'))
->setFormError($errors)
->setForm($form); ->setForm($form);
if ($errors) {
$error_view = id(new AphrontErrorView())
->setSeverity(AphrontErrorView::SEVERITY_ERROR)
->appendChild($errors);
$form_box->setFormError($error_view);
}
$crumbs = $this->buildApplicationCrumbs(); $crumbs = $this->buildApplicationCrumbs();
$crumbs->addTextCrumb(pht('Create Diff')); $crumbs->addTextCrumb(pht('Create Diff'));
if ($errors) {
$errors = id(new AphrontErrorView())
->setErrors($errors);
}
return $this->buildApplicationPage( return $this->buildApplicationPage(
array( array(
$crumbs, $crumbs,

View file

@ -247,17 +247,21 @@ final class DiffusionCommitController extends DiffusionController {
// changes inline even if there are more than the soft limit. // changes inline even if there are more than the soft limit.
$show_all_details = $request->getBool('show_all'); $show_all_details = $request->getBool('show_all');
$change_panel = new AphrontPanelView(); $change_panel = new PHUIObjectBoxView();
$change_panel->setHeader("Changes (".number_format($count).")"); $header = new PHUIHeaderView();
$header->setHeader("Changes (".number_format($count).")");
$change_panel->setID('toc'); $change_panel->setID('toc');
if ($count > self::CHANGES_LIMIT && !$show_all_details) { if ($count > self::CHANGES_LIMIT && !$show_all_details) {
$show_all_button = phutil_tag(
'a', $icon = id(new PHUIIconView())
array( ->setSpriteSheet(PHUIIconView::SPRITE_ICONS)
'class' => 'button green', ->setSpriteIcon('transcript');
'href' => '?show_all=true',
), $button = id(new PHUIButtonView())
pht('Show All Changes')); ->setText(pht('Show All Changes'))
->setHref('?show_all=true')
->setTag('a')
->setIcon($icon);
$warning_view = id(new AphrontErrorView()) $warning_view = id(new AphrontErrorView())
->setSeverity(AphrontErrorView::SEVERITY_WARNING) ->setSeverity(AphrontErrorView::SEVERITY_WARNING)
@ -265,12 +269,12 @@ final class DiffusionCommitController extends DiffusionController {
->appendChild( ->appendChild(
pht("This commit is very large. Load each file individually.")); pht("This commit is very large. Load each file individually."));
$change_panel->appendChild($warning_view); $change_panel->setFormError($warning_view);
$change_panel->addButton($show_all_button); $header->addActionLink($button);
} }
$change_panel->appendChild($change_table); $change_panel->appendChild($change_table);
$change_panel->setNoBackground(); $change_panel->setHeader($header);
$content[] = $change_panel; $content[] = $change_panel;

View file

@ -294,9 +294,14 @@ final class DiffusionRepositoryController extends DiffusionController {
$header->setSubHeader(pht('Showing %d branches.', $limit)); $header->setSubHeader(pht('Showing %d branches.', $limit));
} }
$icon = id(new PHUIIconView())
->setSpriteSheet(PHUIIconView::SPRITE_ICONS)
->setSpriteIcon('fork');
$button = new PHUIButtonView(); $button = new PHUIButtonView();
$button->setText(pht("Show All Branches")); $button->setText(pht("Show All Branches"));
$button->setTag('a'); $button->setTag('a');
$button->setIcon($icon);
$button->setHref($drequest->generateURI( $button->setHref($drequest->generateURI(
array( array(
'action' => 'branches', 'action' => 'branches',
@ -455,20 +460,26 @@ final class DiffusionRepositoryController extends DiffusionController {
} }
$history_table->setIsHead(true); $history_table->setIsHead(true);
$callsign = $drequest->getRepository()->getCallsign(); $callsign = $drequest->getRepository()->getCallsign();
$all = phutil_tag(
'a', $icon = id(new PHUIIconView())
array( ->setSpriteSheet(PHUIIconView::SPRITE_ICONS)
'href' => $drequest->generateURI( ->setSpriteIcon('transcript');
array(
'action' => 'history', $button = id(new PHUIButtonView())
)), ->setText(pht('View Full History'))
), ->setHref($drequest->generateURI(
pht('View Full Commit History')); array(
'action' => 'history',
)))
->setTag('a')
->setIcon($icon);
$panel = new PHUIObjectBoxView(); $panel = new PHUIObjectBoxView();
$panel->setHeaderText(pht("Recent Commits · %s", $all)); $header = id(new PHUIHeaderView())
->setHeader(pht('Recent Commits'))
->addActionLink($button);
$panel->setHeader($header);
$panel->appendChild($history_table); $panel->appendChild($history_table);
return $panel; return $panel;
@ -509,11 +520,21 @@ final class DiffusionRepositoryController extends DiffusionController {
$browse_uri = $drequest->generateURI(array('action' => 'browse')); $browse_uri = $drequest->generateURI(array('action' => 'browse'));
$browse_panel = new PHUIObjectBoxView(); $browse_panel = new PHUIObjectBoxView();
$browse_panel->setHeaderText( $header = id(new PHUIHeaderView())
phutil_tag( ->setHeader(pht('Repository'));
'a',
array('href' => $browse_uri), $icon = id(new PHUIIconView())
pht('Browse Repository'))); ->setSpriteSheet(PHUIIconView::SPRITE_ICONS)
->setSpriteIcon('data');
$button = new PHUIButtonView();
$button->setText(pht('Browse Repository'));
$button->setTag('a');
$button->setIcon($icon);
$button->setHref($browse_uri);
$header->addActionLink($button);
$browse_panel->setHeader($header);
$browse_panel->appendChild($browse_table); $browse_panel->appendChild($browse_table);
return $browse_panel; return $browse_panel;

View file

@ -8,6 +8,7 @@ final class PHUIObjectBoxView extends AphrontView {
private $validationException; private $validationException;
private $header; private $header;
private $flush; private $flush;
private $id;
private $tabs = array(); private $tabs = array();
private $propertyLists = array(); private $propertyLists = array();
@ -73,6 +74,11 @@ final class PHUIObjectBoxView extends AphrontView {
return $this; return $this;
} }
public function setID($id) {
$this->id = $id;
return $this;
}
public function setHeader(PHUIHeaderView $header) { public function setHeader(PHUIHeaderView $header) {
$this->header = $header; $this->header = $header;
return $this; return $this;
@ -196,6 +202,7 @@ final class PHUIObjectBoxView extends AphrontView {
$this->renderChildren(), $this->renderChildren(),
)) ))
->setBorder(true) ->setBorder(true)
->setID($this->id)
->addMargin(PHUI::MARGIN_LARGE_TOP) ->addMargin(PHUI::MARGIN_LARGE_TOP)
->addMargin(PHUI::MARGIN_LARGE_LEFT) ->addMargin(PHUI::MARGIN_LARGE_LEFT)
->addMargin(PHUI::MARGIN_LARGE_RIGHT) ->addMargin(PHUI::MARGIN_LARGE_RIGHT)

View file

@ -16,7 +16,7 @@ form.aphront-dialog-view .aphront-error-view {
margin: 16px; margin: 16px;
} }
.aphront-error-view-dialogue { .aphront-error-view-dialogue {
margin: 0px 0px 16px 0px; margin: 0 0 16px 0;
} }
.device-phone .aphront-error-view { .device-phone .aphront-error-view {
@ -33,8 +33,9 @@ form.aphront-dialog-view .aphront-error-view {
} }
h1.aphront-error-view-head { h1.aphront-error-view-head {
padding: 10px 10px 0 10px; padding: 12px 8px 0 12px;
font-weight: bold; font-weight: bold;
font-size: 15px;
color: {$darkgreytext}; color: {$darkgreytext};
} }

View file

@ -22,8 +22,10 @@
padding: 8px 0; padding: 8px 0;
} }
.phui-object-box .aphront-error-view { .phui-object-box .phui-header-shell + .aphront-error-view {
margin-bottom: 0; margin: 0;
border-width: 0;
border-bottom: 1px solid {$lightblueborder};
} }
.device-phone .phui-object-box { .device-phone .phui-object-box {