mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-11 17:32:41 +01:00
b2f3001ec4
Summary: The removes the sprite sheet 'icons' and replaces it with FontAwesome fonts. Test Plan: - Grep for SPRITE_ICONS and replace - Grep for sprite-icons and replace - Grep for PhabricatorActionList and choose all new icons - Grep for Crumbs and fix icons - Test/Replace PHUIList Icon support - Test/Replace ObjectList Icon support (foot, epoch, etc) - Browse as many pages as I could get to - Remove sprite-icons and move remarkup to own sheet - Review this diff in Differential Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin, hach-que Differential Revision: https://secure.phabricator.com/D9052
200 lines
5.3 KiB
PHP
200 lines
5.3 KiB
PHP
<?php
|
|
|
|
final class PHUIButtonExample extends PhabricatorUIExample {
|
|
|
|
public function getName() {
|
|
return 'Buttons';
|
|
}
|
|
|
|
public function getDescription() {
|
|
return hsprintf('Use <tt><button></tt> to render buttons.');
|
|
}
|
|
|
|
public function renderExample() {
|
|
$request = $this->getRequest();
|
|
$user = $request->getUser();
|
|
|
|
$colors = array('', 'green', 'grey', 'black', 'disabled');
|
|
$sizes = array('', 'small');
|
|
$tags = array('a', 'button');
|
|
|
|
// phutil_tag
|
|
|
|
$column = array();
|
|
foreach ($tags as $tag) {
|
|
foreach ($colors as $color) {
|
|
foreach ($sizes as $key => $size) {
|
|
$class = implode(' ', array($color, $size));
|
|
|
|
if ($tag == 'a') {
|
|
$class .= ' button';
|
|
}
|
|
|
|
$column[$key][] = phutil_tag(
|
|
$tag,
|
|
array(
|
|
'class' => $class,
|
|
),
|
|
phutil_utf8_ucwords($size.' '.$color.' '.$tag));
|
|
|
|
$column[$key][] = hsprintf('<br /><br />');
|
|
}
|
|
}
|
|
}
|
|
|
|
$column3 = array();
|
|
foreach ($colors as $color) {
|
|
$caret = phutil_tag('span', array('class' => 'caret'), '');
|
|
$column3[] = phutil_tag(
|
|
'a',
|
|
array(
|
|
'class' => $color.' button dropdown'
|
|
),
|
|
array(
|
|
phutil_utf8_ucwords($color.' Dropdown'),
|
|
$caret,
|
|
));
|
|
$column3[] = hsprintf('<br /><br />');
|
|
}
|
|
|
|
$layout1 = id(new AphrontMultiColumnView())
|
|
->addColumn($column[0])
|
|
->addColumn($column[1])
|
|
->addColumn($column3)
|
|
->setFluidLayout(true)
|
|
->setGutter(AphrontMultiColumnView::GUTTER_MEDIUM);
|
|
|
|
// PHUIButtonView
|
|
|
|
$colors = array(null,
|
|
PHUIButtonView::GREEN,
|
|
PHUIButtonView::GREY,
|
|
PHUIButtonView::BLACK,
|
|
PHUIButtonView::DISABLED);
|
|
$sizes = array(null, PHUIButtonView::SMALL);
|
|
$column = array();
|
|
foreach ($colors as $color) {
|
|
foreach ($sizes as $key => $size) {
|
|
$column[$key][] = id(new PHUIButtonView())
|
|
->setColor($color)
|
|
->setSize($size)
|
|
->setTag('a')
|
|
->setText('Clicky');
|
|
$column[$key][] = hsprintf('<br /><br />');
|
|
}
|
|
}
|
|
foreach ($colors as $color) {
|
|
$column[2][] = id(new PHUIButtonView())
|
|
->setColor($color)
|
|
->setTag('button')
|
|
->setText('Button')
|
|
->setDropdown(true);
|
|
$column[2][] = hsprintf('<br /><br />');
|
|
}
|
|
|
|
$layout2 = id(new AphrontMultiColumnView())
|
|
->addColumn($column[0])
|
|
->addColumn($column[1])
|
|
->addColumn($column[2])
|
|
->setFluidLayout(true)
|
|
->setGutter(AphrontMultiColumnView::GUTTER_MEDIUM);
|
|
|
|
// Icon Buttons
|
|
|
|
$column = array();
|
|
$icons = array(
|
|
'Comment' => 'fa-comment',
|
|
'Give Token' => 'fa-trophy',
|
|
'Reverse Time' => 'fa-clock-o',
|
|
'Implode Earth' => 'fa-exclamation-triangle red');
|
|
foreach ($icons as $text => $icon) {
|
|
$image = id(new PHUIIconView())
|
|
->setIconFont($icon);
|
|
$column[] = id(new PHUIButtonView())
|
|
->setTag('a')
|
|
->setColor(PHUIButtonView::GREY)
|
|
->setIcon($image)
|
|
->setText($text)
|
|
->addClass(PHUI::MARGIN_SMALL_RIGHT);
|
|
}
|
|
|
|
$column2 = array();
|
|
$icons = array(
|
|
'Subscribe' => 'fa-check-circle bluegrey',
|
|
'Edit' => 'fa-pencil bluegrey');
|
|
foreach ($icons as $text => $icon) {
|
|
$image = id(new PHUIIconView())
|
|
->setIconFont($icon);
|
|
$column2[] = id(new PHUIButtonView())
|
|
->setTag('a')
|
|
->setColor(PHUIButtonView::SIMPLE)
|
|
->setIcon($image)
|
|
->setText($text)
|
|
->addClass(PHUI::MARGIN_SMALL_RIGHT);
|
|
}
|
|
|
|
$layout3 = id(new AphrontMultiColumnView())
|
|
->addColumn($column)
|
|
->addColumn($column2)
|
|
->setFluidLayout(true)
|
|
->setGutter(AphrontMultiColumnView::GUTTER_MEDIUM);
|
|
|
|
|
|
// Baby Got Back Buttons
|
|
|
|
$column = array();
|
|
$icons = array('Asana', 'Github', 'Facebook', 'Google', 'LDAP');
|
|
foreach ($icons as $icon) {
|
|
$image = id(new PHUIIconView())
|
|
->setSpriteSheet(PHUIIconView::SPRITE_LOGIN)
|
|
->setSpriteIcon($icon);
|
|
$column[] = id(new PHUIButtonView())
|
|
->setTag('a')
|
|
->setSize(PHUIButtonView::BIG)
|
|
->setColor(PHUIButtonView::GREY)
|
|
->setIcon($image)
|
|
->setText('Login or Register')
|
|
->setSubtext($icon)
|
|
->addClass(PHUI::MARGIN_MEDIUM_RIGHT);
|
|
}
|
|
|
|
$layout4 = id(new AphrontMultiColumnView())
|
|
->addColumn($column)
|
|
->setFluidLayout(true)
|
|
->setGutter(AphrontMultiColumnView::GUTTER_MEDIUM);
|
|
|
|
|
|
// Set it and forget it
|
|
|
|
$head1 = id(new PHUIHeaderView())
|
|
->setHeader('phutil_tag');
|
|
|
|
$head2 = id(new PHUIHeaderView())
|
|
->setHeader('PHUIButtonView');
|
|
|
|
$head3 = id(new PHUIHeaderView())
|
|
->setHeader('Icon Buttons');
|
|
|
|
$head4 = id(new PHUIHeaderView())
|
|
->setHeader('Big Icon Buttons');
|
|
|
|
$wrap1 = id(new PHUIBoxView())
|
|
->appendChild($layout1)
|
|
->addMargin(PHUI::MARGIN_LARGE);
|
|
|
|
$wrap2 = id(new PHUIBoxView())
|
|
->appendChild($layout2)
|
|
->addMargin(PHUI::MARGIN_LARGE);
|
|
|
|
$wrap3 = id(new PHUIBoxView())
|
|
->appendChild($layout3)
|
|
->addMargin(PHUI::MARGIN_LARGE);
|
|
|
|
$wrap4 = id(new PHUIBoxView())
|
|
->appendChild($layout4)
|
|
->addMargin(PHUI::MARGIN_LARGE);
|
|
|
|
return array($head1, $wrap1, $head2, $wrap2, $head3, $wrap3,
|
|
$head4, $wrap4);
|
|
}
|
|
}
|