Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F106424061
PHUIRemarkupPreviewPanel.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Tue, Mar 25, 15:32
Size
2 KB
Mime Type
text/x-php
Expires
Thu, Mar 27, 15:32 (2 d)
Engine
blob
Format
Raw Data
Handle
25182281
Attached To
rPH Phabricator
PHUIRemarkupPreviewPanel.php
View Options
<?php
/**
* Render a simple preview panel for a bound Remarkup text control.
*/
final
class
PHUIRemarkupPreviewPanel
extends
AphrontTagView
{
private
$header
;
private
$loadingText
;
private
$controlID
;
private
$previewURI
;
protected
function
canAppendChild
()
{
return
false
;
}
public
function
setPreviewURI
(
$preview_uri
)
{
$this
->
previewURI
=
$preview_uri
;
return
$this
;
}
public
function
setControlID
(
$control_id
)
{
$this
->
controlID
=
$control_id
;
return
$this
;
}
public
function
setHeader
(
$header
)
{
$this
->
header
=
$header
;
return
$this
;
}
public
function
setLoadingText
(
$loading_text
)
{
$this
->
loadingText
=
$loading_text
;
return
$this
;
}
protected
function
getTagName
()
{
return
'div'
;
}
protected
function
getTagAttributes
()
{
$classes
=
array
();
$classes
[]
=
'phui-remarkup-preview'
;
return
array
(
'class'
=>
$classes
,
);
}
protected
function
getTagContent
()
{
if
(
$this
->
previewURI
===
null
)
{
throw
new
PhutilInvalidStateException
(
'setPreviewURI'
);
}
if
(
$this
->
controlID
===
null
)
{
throw
new
PhutilInvalidStateException
(
'setControlID'
);
}
$preview_id
=
celerity_generate_unique_node_id
();
require_celerity_resource
(
'phui-remarkup-preview-css'
);
Javelin
::
initBehavior
(
'remarkup-preview'
,
array
(
'previewID'
=>
$preview_id
,
'controlID'
=>
$this
->
controlID
,
'uri'
=>
$this
->
previewURI
,
));
$loading
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'phui-preview-loading-text'
,
),
nonempty
(
$this
->
loadingText
,
pht
(
'Loading preview...'
)));
$header
=
null
;
if
(
$this
->
header
)
{
$header
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'phui-preview-header'
,
),
$this
->
header
);
}
$preview
=
phutil_tag
(
'div'
,
array
(
'id'
=>
$preview_id
,
'class'
=>
'phabricator-remarkup'
,
),
$loading
);
$content
=
array
(
$header
,
$preview
);
return
id
(
new
PHUIBoxView
())
->
appendChild
(
$content
)
->
setBorder
(
true
)
->
addMargin
(
PHUI
::
MARGIN_LARGE
)
->
addPadding
(
PHUI
::
PADDING_LARGE
)
->
addClass
(
'phui-panel-preview'
);
}
}
Event Timeline
Log In to Comment