Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F14409250
D15576.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
7 KB
Referenced Files
None
Subscribers
None
D15576.diff
View Options
diff --git a/src/applications/legalpad/controller/LegalpadDocumentEditController.php b/src/applications/legalpad/controller/LegalpadDocumentEditController.php
--- a/src/applications/legalpad/controller/LegalpadDocumentEditController.php
+++ b/src/applications/legalpad/controller/LegalpadDocumentEditController.php
@@ -220,27 +220,30 @@
$submit->addCancelButton($this->getApplicationURI());
$title = pht('Create Document');
$short = pht('Create');
+ $header_icon = 'fa-plus-square';
} else {
$submit->setValue(pht('Save Document'));
$submit->addCancelButton(
$this->getApplicationURI('view/'.$document->getID()));
- $title = pht('Edit Document');
+ $title = pht('Edit Document: %s', $document->getTitle());
$short = pht('Edit');
+ $header_icon = 'fa-pencil';
$crumbs->addTextCrumb(
$document->getMonogram(),
$this->getApplicationURI('view/'.$document->getID()));
}
- $form
- ->appendChild($submit);
+ $form->appendChild($submit);
$form_box = id(new PHUIObjectBoxView())
- ->setHeaderText($title)
+ ->setHeaderText(pht('Document'))
->setFormErrors($errors)
+ ->setBackground(PHUIObjectBoxView::BLUE_PROPERTY)
->setForm($form);
$crumbs->addTextCrumb($short);
+ $crumbs->setBorder(true);
$preview = id(new PHUIRemarkupPreviewPanel())
->setHeader($document->getTitle())
@@ -248,15 +251,22 @@
->setControlID('document-text')
->setPreviewType(PHUIRemarkupPreviewPanel::DOCUMENT);
- return $this->buildApplicationPage(
- array(
- $crumbs,
+ $header = id(new PHUIHeaderView())
+ ->setHeader($title)
+ ->setHeaderIcon($header_icon);
+
+ $view = id(new PHUITwoColumnView())
+ ->setHeader($header)
+ ->setFooter(array(
$form_box,
$preview,
- ),
- array(
- 'title' => $title,
));
+
+ return $this->newPage()
+ ->setTitle($title)
+ ->setCrumbs($crumbs)
+ ->appendChild($view);
+
}
}
diff --git a/src/applications/legalpad/controller/LegalpadDocumentManageController.php b/src/applications/legalpad/controller/LegalpadDocumentManageController.php
--- a/src/applications/legalpad/controller/LegalpadDocumentManageController.php
+++ b/src/applications/legalpad/controller/LegalpadDocumentManageController.php
@@ -43,10 +43,12 @@
$header = id(new PHUIHeaderView())
->setHeader($title)
->setUser($viewer)
- ->setPolicyObject($document);
+ ->setPolicyObject($document)
+ ->setHeaderIcon('fa-gavel');
- $actions = $this->buildActionView($document);
- $properties = $this->buildPropertyView($document, $engine, $actions);
+ $curtain = $this->buildCurtainView($document);
+ $properties = $this->buildPropertyView($document, $engine);
+ $document_view = $this->buildDocumentView($document, $engine);
$comment_form_id = celerity_generate_unique_node_id();
@@ -57,48 +59,58 @@
$document->getMonogram(),
'/'.$document->getMonogram());
$crumbs->addTextCrumb(pht('Manage'));
+ $crumbs->setBorder(true);
- $object_box = id(new PHUIObjectBoxView())
+
+ $view = id(new PHUITwoColumnView())
->setHeader($header)
- ->addPropertyList($properties)
- ->addPropertyList($this->buildDocument($engine, $document_body));
-
- $content = array(
- $crumbs,
- $object_box,
- $timeline,
- $add_comment,
- );
-
- return $this->buildApplicationPage(
- $content,
- array(
- 'title' => $title,
- 'pageObjects' => array($document->getPHID()),
+ ->setCurtain($curtain)
+ ->setMainColumn(array(
+ $properties,
+ $document_view,
+ $timeline,
+ $add_comment,
));
+
+ return $this->newPage()
+ ->setTitle($title)
+ ->setCrumbs($crumbs)
+ ->setPageObjectPHIDs(array($document->getPHID()))
+ ->appendChild($view);
}
- private function buildDocument(
- PhabricatorMarkupEngine
- $engine, LegalpadDocumentBody $body) {
+ private function buildDocumentView(
+ LegalpadDocument $document,
+ PhabricatorMarkupEngine $engine) {
- $view = new PHUIPropertyListView();
- $view->addClass('legalpad');
- $view->addSectionHeader(
- pht('Document'), 'fa-file-text-o');
- $view->addTextContent(
- $engine->getOutput($body, LegalpadDocumentBody::MARKUP_FIELD_TEXT));
+ $viewer = $this->getViewer();
- return $view;
+ $view = id(new PHUIPropertyListView())
+ ->setUser($viewer);
+ $document_body = $document->getDocumentBody();
+ $document_text = $engine->getOutput(
+ $document_body, LegalpadDocumentBody::MARKUP_FIELD_TEXT);
+
+ $preamble_box = null;
+ if (strlen($document->getPreamble())) {
+ $preamble_text = new PHUIRemarkupView($viewer, $document->getPreamble());
+ $view->addTextContent($preamble_text);
+ $view->addSectionHeader('');
+ $view->addTextContent($document_text);
+ } else {
+ $view->addTextContent($document_text);
+ }
+ return id(new PHUIObjectBoxView())
+ ->setHeaderText(pht('DOCUMENT'))
+ ->addPropertyList($view)
+ ->setBackground(PHUIObjectBoxView::BLUE_PROPERTY);
}
- private function buildActionView(LegalpadDocument $document) {
+ private function buildCurtainView(LegalpadDocument $document) {
$viewer = $this->getViewer();
- $actions = id(new PhabricatorActionListView())
- ->setUser($viewer)
- ->setObject($document);
+ $curtain = $this->newCurtainView($document);
$can_edit = PhabricatorPolicyFilter::hasCapability(
$viewer,
@@ -107,13 +119,13 @@
$doc_id = $document->getID();
- $actions->addAction(
+ $curtain->addAction(
id(new PhabricatorActionView())
->setIcon('fa-pencil-square')
->setName(pht('View/Sign Document'))
->setHref('/'.$document->getMonogram()));
- $actions->addAction(
+ $curtain->addAction(
id(new PhabricatorActionView())
->setIcon('fa-pencil')
->setName(pht('Edit Document'))
@@ -121,26 +133,23 @@
->setDisabled(!$can_edit)
->setWorkflow(!$can_edit));
- $actions->addAction(
+ $curtain->addAction(
id(new PhabricatorActionView())
->setIcon('fa-terminal')
->setName(pht('View Signatures'))
->setHref($this->getApplicationURI('/signatures/'.$doc_id.'/')));
- return $actions;
+ return $curtain;
}
private function buildPropertyView(
LegalpadDocument $document,
- PhabricatorMarkupEngine $engine,
- PhabricatorActionListView $actions) {
+ PhabricatorMarkupEngine $engine) {
$viewer = $this->getViewer();
$properties = id(new PHUIPropertyListView())
- ->setUser($viewer)
- ->setObject($document)
- ->setActionList($actions);
+ ->setUser($viewer);
$properties->addProperty(
pht('Signature Type'),
@@ -166,9 +175,10 @@
->setAsInline(true));
}
- $properties->invokeWillRenderEvent();
-
- return $properties;
+ return id(new PHUIObjectBoxView())
+ ->setHeaderText(pht('PROPERTIES'))
+ ->addPropertyList($properties)
+ ->setBackground(PHUIObjectBoxView::BLUE_PROPERTY);
}
private function buildAddCommentView(
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Wed, Dec 25, 6:16 AM (9 h, 41 m)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
6925219
Default Alt Text
D15576.diff (7 KB)
Attached To
Mode
D15576: Update Legalpad with modern UI
Attached
Detach File
Event Timeline
Log In to Comment