mirror of
https://we.phorge.it/source/phorge.git
synced 2025-04-06 01:18:25 +02:00
render_tag -> tag: misc views
Summary: See inlines. Test Plan: See inlines. Reviewers: vrana Reviewed By: vrana CC: aran Maniphest Tasks: T2432 Differential Revision: https://secure.phabricator.com/D4768
This commit is contained in:
parent
41e0f97c19
commit
87dc464159
7 changed files with 52 additions and 29 deletions
|
@ -139,6 +139,14 @@ final class ConpherenceMenuItemView extends AphrontTagView {
|
||||||
(int)$this->unreadCount);
|
(int)$this->unreadCount);
|
||||||
}
|
}
|
||||||
|
|
||||||
return $image.$title.$subtitle.$message.$epoch.$unread_count;
|
return $this->renderHTMLView(
|
||||||
|
array(
|
||||||
|
$image,
|
||||||
|
$title,
|
||||||
|
$subtitle,
|
||||||
|
$message,
|
||||||
|
$epoch,
|
||||||
|
$unread_count,
|
||||||
|
));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -96,9 +96,9 @@ abstract class PhabricatorDirectoryController extends PhabricatorController {
|
||||||
|
|
||||||
$nav->addMenuItem($show_item);
|
$nav->addMenuItem($show_item);
|
||||||
$nav->addCustomBlock(
|
$nav->addCustomBlock(
|
||||||
'<div '.
|
hsprintf(
|
||||||
'id="'.phutil_escape_html($show_tiles_id).'"'.
|
'<div id="%s" style="display: none;">',
|
||||||
'style="display: none;">');
|
$show_tiles_id));
|
||||||
|
|
||||||
Javelin::initBehavior('phabricator-home-reveal-tiles', array(
|
Javelin::initBehavior('phabricator-home-reveal-tiles', array(
|
||||||
'tilesID' => $show_tiles_id,
|
'tilesID' => $show_tiles_id,
|
||||||
|
@ -128,19 +128,20 @@ abstract class PhabricatorDirectoryController extends PhabricatorController {
|
||||||
}
|
}
|
||||||
$nav->addLabel($groups[$group]);
|
$nav->addLabel($groups[$group]);
|
||||||
}
|
}
|
||||||
|
|
||||||
$nav->addCustomBlock(
|
$nav->addCustomBlock(
|
||||||
phutil_render_tag(
|
phutil_tag(
|
||||||
'div',
|
'div',
|
||||||
array(
|
array(
|
||||||
'class' => 'application-tile-group',
|
'class' => 'application-tile-group',
|
||||||
),
|
),
|
||||||
id(new AphrontNullView())->appendChild($tiles)->render()));
|
mpull($tiles, 'render')));
|
||||||
}
|
}
|
||||||
|
|
||||||
$is_hide = ($tile_display == PhabricatorApplication::TILE_HIDE);
|
$is_hide = ($tile_display == PhabricatorApplication::TILE_HIDE);
|
||||||
if ($is_hide) {
|
if ($is_hide) {
|
||||||
$nav->addMenuItem($hide_item);
|
$nav->addMenuItem($hide_item);
|
||||||
$nav->addCustomBlock('</div>');
|
$nav->addCustomBlock(hsprintf('</div>'));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -87,7 +87,7 @@ abstract class AphrontTagView extends AphrontView {
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function getTagContent() {
|
protected function getTagContent() {
|
||||||
return $this->renderChildren();
|
return $this->renderHTMLChildren();
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function willRender() {
|
protected function willRender() {
|
||||||
|
@ -150,7 +150,7 @@ abstract class AphrontTagView extends AphrontView {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return javelin_render_tag(
|
return javelin_tag(
|
||||||
$this->getTagName(),
|
$this->getTagName(),
|
||||||
$attributes,
|
$attributes,
|
||||||
$this->getTagContent());
|
$this->getTagContent());
|
||||||
|
|
|
@ -26,27 +26,34 @@ final class PhabricatorObjectListView extends AphrontView {
|
||||||
foreach ($handles as $handle) {
|
foreach ($handles as $handle) {
|
||||||
$buttons = idx($this->buttons, $handle->getPHID(), array());
|
$buttons = idx($this->buttons, $handle->getPHID(), array());
|
||||||
if ($buttons) {
|
if ($buttons) {
|
||||||
$buttons =
|
$buttons = phutil_tag(
|
||||||
'<div class="phabricator-object-list-view-buttons">'.
|
'div',
|
||||||
implode('', $buttons).
|
array(
|
||||||
'</div>';
|
'class' => 'phabricator-object-list-view-buttons',
|
||||||
|
),
|
||||||
|
$buttons);
|
||||||
} else {
|
} else {
|
||||||
$buttons = null;
|
$buttons = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
$out[] = javelin_render_tag(
|
$out[] = javelin_tag(
|
||||||
'div',
|
'div',
|
||||||
array(
|
array(
|
||||||
'class' => 'phabricator-object-list-view-item',
|
'class' => 'phabricator-object-list-view-item',
|
||||||
'style' => 'background-image: url('.$handle->getImageURI().');',
|
'style' => 'background-image: url('.$handle->getImageURI().');',
|
||||||
),
|
),
|
||||||
$handle->renderLink().$buttons);
|
array(
|
||||||
|
$handle->renderLink(),
|
||||||
|
$buttons,
|
||||||
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
return
|
return phutil_tag(
|
||||||
'<div class="phabricator-object-list-view">'.
|
'div',
|
||||||
implode("\n", $out).
|
array(
|
||||||
'</div>';
|
'class' => 'phabricator-object-list-view',
|
||||||
|
),
|
||||||
|
$out);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -220,14 +220,17 @@ final class AphrontSideNavFilterView extends AphrontView {
|
||||||
),
|
),
|
||||||
'');
|
'');
|
||||||
|
|
||||||
$local_menu = $menu_background.phutil_render_tag(
|
$local_menu = $this->renderHTMLView(
|
||||||
'div',
|
|
||||||
array(
|
array(
|
||||||
'class' => 'phabricator-nav-local phabricator-side-menu',
|
$menu_background,
|
||||||
'id' => $local_id,
|
phutil_tag(
|
||||||
),
|
'div',
|
||||||
self::renderSingleView($this->menu->setID($this->getMenuID()))
|
array(
|
||||||
);
|
'class' => 'phabricator-nav-local phabricator-side-menu',
|
||||||
|
'id' => $local_id,
|
||||||
|
),
|
||||||
|
self::renderSingleView($this->menu->setID($this->getMenuID()))),
|
||||||
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
$crumbs = null;
|
$crumbs = null;
|
||||||
|
|
|
@ -126,7 +126,11 @@ final class PhabricatorMenuItemView extends AphrontTagView {
|
||||||
$this->name.$external);
|
$this->name.$external);
|
||||||
}
|
}
|
||||||
|
|
||||||
return $this->renderChildren().$name;
|
return $this->renderHTMLView(
|
||||||
|
array(
|
||||||
|
$this->renderHTMLChildren(),
|
||||||
|
$name,
|
||||||
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,12 +28,12 @@ final class PhabricatorMainMenuGroupView extends AphrontView {
|
||||||
$classes = array_merge($classes, $this->classes);
|
$classes = array_merge($classes, $this->classes);
|
||||||
}
|
}
|
||||||
|
|
||||||
return phutil_render_tag(
|
return phutil_tag(
|
||||||
'div',
|
'div',
|
||||||
array(
|
array(
|
||||||
'class' => implode(' ', $classes),
|
'class' => implode(' ', $classes),
|
||||||
),
|
),
|
||||||
$this->renderChildren());
|
$this->renderHTMLChildren());
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue