Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98148504
HarbormasterLintPropertyView.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
Fri, Jan 10, 07:38
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Jan 12, 07:38 (2 d)
Engine
blob
Format
Raw Data
Handle
23517590
Attached To
rPH Phabricator
HarbormasterLintPropertyView.php
View Options
<?php
final
class
HarbormasterLintPropertyView
extends
AphrontView
{
private
$pathURIMap
=
array
();
private
$lintMessages
=
array
();
private
$limit
;
public
function
setPathURIMap
(
array
$map
)
{
$this
->
pathURIMap
=
$map
;
return
$this
;
}
public
function
setLintMessages
(
array
$messages
)
{
assert_instances_of
(
$messages
,
'HarbormasterBuildLintMessage'
);
$this
->
lintMessages
=
$messages
;
return
$this
;
}
public
function
setLimit
(
$limit
)
{
$this
->
limit
=
$limit
;
return
$this
;
}
public
function
render
()
{
$messages
=
$this
->
lintMessages
;
$messages
=
msort
(
$messages
,
'getSortKey'
);
if
(
$this
->
limit
)
{
$messages
=
array_slice
(
$messages
,
0
,
$this
->
limit
);
}
$rows
=
array
();
foreach
(
$messages
as
$message
)
{
$path
=
$message
->
getPath
();
$line
=
$message
->
getLine
();
$href
=
null
;
if
(
strlen
(
idx
(
$this
->
pathURIMap
,
$path
)))
{
$href
=
$this
->
pathURIMap
[
$path
].
max
(
$line
,
1
);
}
$severity
=
$this
->
renderSeverity
(
$message
->
getSeverity
());
$location
=
$path
.
':'
.
$line
;
if
(
strlen
(
$href
))
{
$location
=
phutil_tag
(
'a'
,
array
(
'href'
=>
$href
,
),
$location
);
}
$rows
[]
=
array
(
$severity
,
$location
,
$message
->
getCode
(),
$message
->
getName
(),
);
}
$table
=
id
(
new
AphrontTableView
(
$rows
))
->
setHeaders
(
array
(
pht
(
'Severity'
),
pht
(
'Location'
),
pht
(
'Code'
),
pht
(
'Message'
),
))
->
setColumnClasses
(
array
(
null
,
'pri'
,
null
,
'wide'
,
));
return
$table
;
}
private
function
renderSeverity
(
$severity
)
{
$names
=
ArcanistLintSeverity
::
getLintSeverities
();
$name
=
idx
(
$names
,
$severity
,
$severity
);
// TODO: Add some color here?
return
$name
;
}
}
Event Timeline
Log In to Comment