Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F552436
HarbormasterUnitPropertyView.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
3 KB
Referenced Files
None
Subscribers
None
HarbormasterUnitPropertyView.php
View Options
<?php
final
class
HarbormasterUnitPropertyView
extends
AphrontView
{
private
$pathURIMap
=
array
();
private
$unitMessages
=
array
();
private
$limit
;
private
$fullResultsURI
;
private
$notice
;
public
function
setPathURIMap
(
array
$map
)
{
$this
->
pathURIMap
=
$map
;
return
$this
;
}
public
function
setUnitMessages
(
array
$messages
)
{
assert_instances_of
(
$messages
,
'HarbormasterBuildUnitMessage'
);
$this
->
unitMessages
=
$messages
;
return
$this
;
}
public
function
setLimit
(
$limit
)
{
$this
->
limit
=
$limit
;
return
$this
;
}
public
function
setFullResultsURI
(
$full_results_uri
)
{
$this
->
fullResultsURI
=
$full_results_uri
;
return
$this
;
}
public
function
setNotice
(
$notice
)
{
$this
->
notice
=
$notice
;
return
$this
;
}
public
function
render
()
{
$viewer
=
$this
->
getViewer
();
$messages
=
$this
->
unitMessages
;
$messages
=
msort
(
$messages
,
'getSortKey'
);
$limit
=
$this
->
limit
;
if
(
$this
->
limit
)
{
$display_messages
=
array_slice
(
$messages
,
0
,
$limit
);
}
else
{
$display_messages
=
$messages
;
}
$rows
=
array
();
$any_duration
=
false
;
foreach
(
$display_messages
as
$message
)
{
$status
=
$message
->
getResult
();
$icon_icon
=
HarbormasterUnitStatus
::
getUnitStatusIcon
(
$status
);
$icon_color
=
HarbormasterUnitStatus
::
getUnitStatusColor
(
$status
);
$icon_label
=
HarbormasterUnitStatus
::
getUnitStatusLabel
(
$status
);
$result_icon
=
id
(
new
PHUIIconView
())
->
setIcon
(
"{$icon_icon} {$icon_color}"
)
->
addSigil
(
'has-tooltip'
)
->
setMetadata
(
array
(
'tip'
=>
$icon_label
,
));
$duration
=
$message
->
getDuration
();
if
(
$duration
!==
null
)
{
$any_duration
=
true
;
$duration
=
pht
(
'%s ms'
,
new
PhutilNumber
((
int
)(
1000
*
$duration
)));
}
$name
=
$message
->
getUnitMessageDisplayName
();
$uri
=
$message
->
getURI
();
if
(
$uri
)
{
$name
=
phutil_tag
(
'a'
,
array
(
'href'
=>
$uri
,
),
$name
);
}
$name
=
array
(
$name
,
$message
->
newUnitMessageDetailsView
(
$viewer
,
true
),
);
$rows
[]
=
array
(
$result_icon
,
$duration
,
$name
,
);
}
$full_uri
=
$this
->
fullResultsURI
;
if
(
$full_uri
&&
(
count
(
$messages
)
>
$limit
))
{
$counts
=
array
();
$groups
=
mgroup
(
$messages
,
'getResult'
);
foreach
(
$groups
as
$status
=>
$group
)
{
$counts
[]
=
HarbormasterUnitStatus
::
getUnitStatusCountLabel
(
$status
,
count
(
$group
));
}
$link_text
=
pht
(
'View Full Test Results (%s)'
,
implode
(
"
\x
C2
\x
B7 "
,
$counts
));
$full_link
=
phutil_tag
(
'a'
,
array
(
'href'
=>
$full_uri
,
),
$link_text
);
$link_icon
=
id
(
new
PHUIIconView
())
->
setIcon
(
'fa-ellipsis-h lightgreytext'
);
$rows
[]
=
array
(
$link_icon
,
null
,
$full_link
);
}
$table
=
id
(
new
AphrontTableView
(
$rows
))
->
setHeaders
(
array
(
null
,
pht
(
'Time'
),
pht
(
'Test'
),
))
->
setColumnClasses
(
array
(
'top center'
,
'top right'
,
'top wide'
,
))
->
setColumnWidths
(
array
(
'32px'
,
'64px'
,
))
->
setColumnVisibility
(
array
(
true
,
$any_duration
,
));
if
(
$this
->
notice
)
{
$table
->
setNotice
(
$this
->
notice
);
}
return
$table
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 4:25 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
123557
Default Alt Text
HarbormasterUnitPropertyView.php (3 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment