mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 10:22:42 +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
163 lines
3.6 KiB
PHP
163 lines
3.6 KiB
PHP
<?php
|
|
|
|
final class DifferentialChangesetDetailView extends AphrontView {
|
|
|
|
private $changeset;
|
|
private $buttons = array();
|
|
private $editable;
|
|
private $symbolIndex;
|
|
private $id;
|
|
private $vsChangesetID;
|
|
|
|
public function setChangeset($changeset) {
|
|
$this->changeset = $changeset;
|
|
return $this;
|
|
}
|
|
|
|
public function addButton($button) {
|
|
$this->buttons[] = $button;
|
|
return $this;
|
|
}
|
|
|
|
public function setEditable($editable) {
|
|
$this->editable = $editable;
|
|
return $this;
|
|
}
|
|
|
|
public function setSymbolIndex($symbol_index) {
|
|
$this->symbolIndex = $symbol_index;
|
|
return $this;
|
|
}
|
|
|
|
public function getID() {
|
|
if (!$this->id) {
|
|
$this->id = celerity_generate_unique_node_id();
|
|
}
|
|
return $this->id;
|
|
}
|
|
|
|
public function setVsChangesetID($vs_changeset_id) {
|
|
$this->vsChangesetID = $vs_changeset_id;
|
|
return $this;
|
|
}
|
|
|
|
public function getVsChangesetID() {
|
|
return $this->vsChangesetID;
|
|
}
|
|
|
|
public function getFileIcon($filename) {
|
|
$path_info = pathinfo($filename);
|
|
$extension = idx($path_info, 'extension');
|
|
switch ($extension) {
|
|
case 'psd':
|
|
case 'ai':
|
|
$icon = 'fa-eye';
|
|
break;
|
|
case 'conf':
|
|
$icon = 'fa-wrench';
|
|
break;
|
|
case 'wav':
|
|
case 'mp3':
|
|
case 'aiff':
|
|
$icon = 'fa-music';
|
|
break;
|
|
case 'm4v':
|
|
case 'mov':
|
|
$icon = 'fa-film';
|
|
break;
|
|
case 'sql';
|
|
case 'db':
|
|
case 'csv':
|
|
$icon = 'fa-table';
|
|
break;
|
|
case 'ics':
|
|
$icon = 'fa-calendar';
|
|
break;
|
|
case 'zip':
|
|
case 'tar':
|
|
case 'bz':
|
|
case 'tgz':
|
|
case 'gz':
|
|
$icon = 'fa-archive';
|
|
break;
|
|
case 'png':
|
|
case 'jpg':
|
|
case 'bmp':
|
|
case 'gif':
|
|
$icon = 'fa-picture-o';
|
|
break;
|
|
default:
|
|
$icon = 'fa-file';
|
|
break;
|
|
}
|
|
return $icon;
|
|
}
|
|
|
|
public function render() {
|
|
$this->requireResource('differential-changeset-view-css');
|
|
$this->requireResource('syntax-highlighting-css');
|
|
|
|
Javelin::initBehavior('phabricator-oncopy', array());
|
|
|
|
$changeset = $this->changeset;
|
|
$class = 'differential-changeset';
|
|
if (!$this->editable) {
|
|
$class .= ' differential-changeset-immutable';
|
|
}
|
|
|
|
$buttons = null;
|
|
if ($this->buttons) {
|
|
$buttons = phutil_tag(
|
|
'div',
|
|
array(
|
|
'class' => 'differential-changeset-buttons',
|
|
),
|
|
$this->buttons);
|
|
}
|
|
|
|
$id = $this->getID();
|
|
|
|
if ($this->symbolIndex) {
|
|
Javelin::initBehavior(
|
|
'repository-crossreference',
|
|
array(
|
|
'container' => $id,
|
|
) + $this->symbolIndex);
|
|
}
|
|
|
|
$display_filename = $changeset->getDisplayFilename();
|
|
$display_icon = $this->getFileIcon($display_filename);
|
|
$icon = id(new PHUIIconView())
|
|
->setIconFont($display_icon);
|
|
|
|
return javelin_tag(
|
|
'div',
|
|
array(
|
|
'sigil' => 'differential-changeset',
|
|
'meta' => array(
|
|
'left' => nonempty(
|
|
$this->getVsChangesetID(),
|
|
$this->changeset->getID()),
|
|
'right' => $this->changeset->getID(),
|
|
),
|
|
'class' => $class,
|
|
'id' => $id,
|
|
),
|
|
array(
|
|
id(new PhabricatorAnchorView())
|
|
->setAnchorName($changeset->getAnchorName())
|
|
->setNavigationMarker(true)
|
|
->render(),
|
|
$buttons,
|
|
phutil_tag('h1',
|
|
array(
|
|
'class' => 'differential-file-icon-header'),
|
|
array(
|
|
$icon,
|
|
$display_filename)),
|
|
phutil_tag('div', array('style' => 'clear: both'), ''),
|
|
$this->renderChildren(),
|
|
));
|
|
}
|
|
|
|
}
|