mirror of
https://we.phorge.it/source/phorge.git
synced 2025-04-04 16:38:24 +02:00
Summary: This attempts some consistency in form layouts. Notably, they all now contain headers and are 16px off the sides and tops of pages. Also updated dialogs to the same look and feel. I think I got 98% of forms with this pass, but it's likely I missed some buried somewhere. TODO: will take another pass as consolidating these colors and new gradients in another diff. Test Plan: Played in my sandbox all week. Please play with it too and let me know how they feel. Reviewers: epriestley, btrahan Reviewed By: epriestley CC: Korvin, aran Differential Revision: https://secure.phabricator.com/D6806
134 lines
3.3 KiB
PHP
134 lines
3.3 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @group phame
|
|
*/
|
|
final class PhamePostNewController extends PhameController {
|
|
|
|
private $id;
|
|
|
|
public function willProcessRequest(array $data) {
|
|
$this->id = idx($data, 'id');
|
|
}
|
|
|
|
public function processRequest() {
|
|
$request = $this->getRequest();
|
|
$user = $request->getUser();
|
|
|
|
$post = null;
|
|
$view_uri = null;
|
|
if ($this->id) {
|
|
$post = id(new PhamePostQuery())
|
|
->setViewer($user)
|
|
->withIDs(array($this->id))
|
|
->requireCapabilities(
|
|
array(
|
|
PhabricatorPolicyCapability::CAN_EDIT,
|
|
))
|
|
->executeOne();
|
|
if (!$post) {
|
|
return new Aphront404Response();
|
|
}
|
|
|
|
$view_uri = '/post/view/'.$post->getID().'/';
|
|
$view_uri = $this->getApplicationURI($view_uri);
|
|
|
|
if ($request->isFormPost()) {
|
|
$blog = id(new PhameBlogQuery())
|
|
->setViewer($user)
|
|
->withIDs(array($request->getInt('blog')))
|
|
->requireCapabilities(
|
|
array(
|
|
PhabricatorPolicyCapability::CAN_JOIN,
|
|
))
|
|
->executeOne();
|
|
|
|
if ($blog) {
|
|
$post->setBlogPHID($blog->getPHID());
|
|
$post->save();
|
|
|
|
return id(new AphrontRedirectResponse())->setURI($view_uri);
|
|
}
|
|
}
|
|
|
|
$title = pht('Move Post');
|
|
} else {
|
|
$title = pht('Create Post');
|
|
$view_uri = $this->getApplicationURI('/post/new');
|
|
}
|
|
|
|
$blogs = id(new PhameBlogQuery())
|
|
->setViewer($user)
|
|
->requireCapabilities(
|
|
array(
|
|
PhabricatorPolicyCapability::CAN_JOIN,
|
|
))
|
|
->execute();
|
|
|
|
$nav = $this->renderSideNavFilterView();
|
|
$nav->selectFilter('post/new');
|
|
|
|
$crumbs = $this->buildApplicationCrumbs();
|
|
$crumbs->addCrumb(
|
|
id(new PhabricatorCrumbView())
|
|
->setName($title)
|
|
->setHref($view_uri));
|
|
$nav->appendChild($crumbs);
|
|
|
|
if (!$blogs) {
|
|
$notification = id(new AphrontErrorView())
|
|
->setSeverity(AphrontErrorView::SEVERITY_NODATA)
|
|
->appendChild(
|
|
pht('You do not have permission to join any blogs. Create a blog '.
|
|
'first, then you can post to it.'));
|
|
|
|
$nav->appendChild($notification);
|
|
} else {
|
|
$options = mpull($blogs, 'getName', 'getID');
|
|
asort($options);
|
|
|
|
$selected_value = null;
|
|
if ($post && $post->getBlog()) {
|
|
$selected_value = $post->getBlog()->getID();
|
|
}
|
|
|
|
$form = id(new AphrontFormView())
|
|
->setUser($user)
|
|
->appendChild(
|
|
id(new AphrontFormSelectControl())
|
|
->setLabel(pht('Blog'))
|
|
->setName('blog')
|
|
->setOptions($options)
|
|
->setValue($selected_value));
|
|
|
|
if ($post) {
|
|
$form
|
|
->appendChild(
|
|
id(new AphrontFormSubmitControl())
|
|
->setValue(pht('Move Post'))
|
|
->addCancelButton($view_uri));
|
|
} else {
|
|
$form
|
|
->setAction($this->getApplicationURI('post/edit/'))
|
|
->setMethod('GET')
|
|
->appendChild(
|
|
id(new AphrontFormSubmitControl())
|
|
->setValue(pht('Continue')));
|
|
}
|
|
|
|
|
|
$form_box = id(new PHUIFormBoxView())
|
|
->setHeaderText($title)
|
|
->setForm($form);
|
|
|
|
$nav->appendChild($form_box);
|
|
}
|
|
|
|
return $this->buildApplicationPage(
|
|
$nav,
|
|
array(
|
|
'title' => $title,
|
|
'device' => true,
|
|
));
|
|
}
|
|
}
|