mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-09 06:11:01 +01:00
3bc54c2041
Summary: Taking a pass at revamping the edit pages in Projects. Specifically: - Remove EditMainController - Move actions from EditMain to Profile - Move properties from EditMain to Profile - Move timeline from EditMain to Profile - Move Open Tasks from Profile to sidenavicon - Add custom icons and colors to timeline Feel free to bang on this a bit and give feedback, feels generally correct to me. Test Plan: Edit everything I could on various projects. Check links, timelines, actions. Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: Korvin, epriestley Differential Revision: https://secure.phabricator.com/D11421
106 lines
2.6 KiB
PHP
106 lines
2.6 KiB
PHP
<?php
|
|
|
|
final class PhabricatorProjectEditIconController
|
|
extends PhabricatorProjectController {
|
|
|
|
private $id;
|
|
|
|
public function willProcessRequest(array $data) {
|
|
$this->id = idx($data, 'id');
|
|
}
|
|
|
|
public function processRequest() {
|
|
$request = $this->getRequest();
|
|
$viewer = $request->getUser();
|
|
|
|
if ($this->id) {
|
|
$project = id(new PhabricatorProjectQuery())
|
|
->setViewer($viewer)
|
|
->withIDs(array($this->id))
|
|
->requireCapabilities(
|
|
array(
|
|
PhabricatorPolicyCapability::CAN_VIEW,
|
|
PhabricatorPolicyCapability::CAN_EDIT,
|
|
))
|
|
->executeOne();
|
|
if (!$project) {
|
|
return new Aphront404Response();
|
|
}
|
|
$cancel_uri = $this->getApplicationURI('profile/'.$project->getID().'/');
|
|
$project_icon = $project->getIcon();
|
|
} else {
|
|
$this->requireApplicationCapability(
|
|
ProjectCreateProjectsCapability::CAPABILITY);
|
|
|
|
$cancel_uri = '/project/';
|
|
$project_icon = $request->getStr('value');
|
|
}
|
|
|
|
require_celerity_resource('project-icon-css');
|
|
Javelin::initBehavior('phabricator-tooltips');
|
|
|
|
$project_icons = PhabricatorProjectIcon::getIconMap();
|
|
|
|
if ($request->isFormPost()) {
|
|
$v_icon = $request->getStr('icon');
|
|
|
|
return id(new AphrontAjaxResponse())->setContent(
|
|
array(
|
|
'value' => $v_icon,
|
|
'display' => PhabricatorProjectIcon::renderIconForChooser($v_icon),
|
|
));
|
|
}
|
|
|
|
$ii = 0;
|
|
$buttons = array();
|
|
foreach ($project_icons as $icon => $label) {
|
|
$view = id(new PHUIIconView())
|
|
->setIconFont($icon);
|
|
|
|
$aural = javelin_tag(
|
|
'span',
|
|
array(
|
|
'aural' => true,
|
|
),
|
|
pht('Choose "%s" Icon', $label));
|
|
|
|
if ($icon == $project_icon) {
|
|
$class_extra = ' selected';
|
|
} else {
|
|
$class_extra = null;
|
|
}
|
|
|
|
$buttons[] = javelin_tag(
|
|
'button',
|
|
array(
|
|
'class' => 'icon-button'.$class_extra,
|
|
'name' => 'icon',
|
|
'value' => $icon,
|
|
'type' => 'submit',
|
|
'sigil' => 'has-tooltip',
|
|
'meta' => array(
|
|
'tip' => $label,
|
|
),
|
|
),
|
|
array(
|
|
$aural,
|
|
$view,
|
|
));
|
|
if ((++$ii % 4) == 0) {
|
|
$buttons[] = phutil_tag('br');
|
|
}
|
|
}
|
|
|
|
$buttons = phutil_tag(
|
|
'div',
|
|
array(
|
|
'class' => 'icon-grid',
|
|
),
|
|
$buttons);
|
|
|
|
return $this->newDialog()
|
|
->setTitle(pht('Choose Project Icon'))
|
|
->appendChild($buttons)
|
|
->addCancelButton($cancel_uri);
|
|
}
|
|
}
|