mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-07 20:38:32 +01:00
Summary: Ref T3155. Also re-adds the ability to update Conpherence titles by letting user click the title and fill out a little dialogue. Also fixes a bunch of random bugs and what have you. I tried to make the javascript less mysterious by trying to code what's actually happening more explicitly. Still a work in progress all over the place but a good stopping point for feedback. Test Plan: played around with Conpherence. In particular, went to /conpherence/ and re-sized and went to /conpherence/X/ and re-sized. Also loaded up my no conpherneces user. Reviewers: epriestley Reviewed By: epriestley CC: chad, aran, Korvin Maniphest Tasks: T3155 Differential Revision: https://secure.phabricator.com/D6022
89 lines
1.8 KiB
PHP
89 lines
1.8 KiB
PHP
<?php
|
|
|
|
final class PhabricatorCrumbView extends AphrontView {
|
|
|
|
private $name;
|
|
private $href;
|
|
private $icon;
|
|
private $isLastCrumb;
|
|
private $workflow;
|
|
|
|
public function setWorkflow($workflow) {
|
|
$this->workflow = $workflow;
|
|
return $this;
|
|
}
|
|
|
|
public function setName($name) {
|
|
$this->name = $name;
|
|
return $this;
|
|
}
|
|
|
|
public function getName() {
|
|
return $this->name;
|
|
}
|
|
|
|
public function setHref($href) {
|
|
$this->href = $href;
|
|
return $this;
|
|
}
|
|
|
|
public function setIcon($icon) {
|
|
$this->icon = $icon;
|
|
return $this;
|
|
}
|
|
|
|
protected function canAppendChild() {
|
|
return false;
|
|
}
|
|
|
|
public function setIsLastCrumb($is_last_crumb) {
|
|
$this->isLastCrumb = $is_last_crumb;
|
|
return $this;
|
|
}
|
|
|
|
public function render() {
|
|
$classes = array(
|
|
'phabricator-crumb-view',
|
|
);
|
|
|
|
$icon = null;
|
|
if ($this->icon) {
|
|
$classes[] = 'phabricator-crumb-has-icon';
|
|
$icon = phutil_tag(
|
|
'span',
|
|
array(
|
|
'class' => 'phabricator-crumb-icon '.
|
|
'sprite-apps-large apps-'.$this->icon.'-dark-large',
|
|
),
|
|
'');
|
|
}
|
|
|
|
$name = phutil_tag(
|
|
'span',
|
|
array(
|
|
'class' => 'phabricator-crumb-name',
|
|
),
|
|
$this->name);
|
|
|
|
$divider = null;
|
|
if (!$this->isLastCrumb) {
|
|
$divider = phutil_tag(
|
|
'span',
|
|
array(
|
|
'class' => 'sprite-menu phabricator-crumb-divider',
|
|
),
|
|
'');
|
|
} else {
|
|
$classes[] = 'phabricator-last-crumb';
|
|
}
|
|
|
|
return javelin_tag(
|
|
$this->href ? 'a' : 'span',
|
|
array(
|
|
'sigil' => $this->workflow ? 'workflow' : null,
|
|
'href' => $this->href,
|
|
'class' => implode(' ', $classes),
|
|
),
|
|
array($icon, $name, $divider));
|
|
}
|
|
}
|