Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F959375
DifferentialLocalCommitsView.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
DifferentialLocalCommitsView.php
View Options
<?php
final
class
DifferentialLocalCommitsView
extends
AphrontView
{
private
$localCommits
;
public
function
setLocalCommits
(
$local_commits
)
{
$this
->
localCommits
=
$local_commits
;
return
$this
;
}
public
function
render
()
{
$user
=
$this
->
user
;
if
(!
$user
)
{
throw
new
Exception
(
"Call setUser() before render()-ing this view."
);
}
$local
=
$this
->
localCommits
;
if
(!
$local
)
{
return
null
;
}
require_celerity_resource
(
'differential-local-commits-view-css'
);
$has_tree
=
false
;
$has_local
=
false
;
foreach
(
$local
as
$commit
)
{
if
(
idx
(
$commit
,
'tree'
))
{
$has_tree
=
true
;
}
if
(
idx
(
$commit
,
'local'
))
{
$has_local
=
true
;
}
}
$rows
=
array
();
$highlight
=
true
;
foreach
(
$local
as
$commit
)
{
if
(
$highlight
)
{
$class
=
'alt'
;
$highlight
=
false
;
}
else
{
$class
=
''
;
$highlight
=
true
;
}
$row
=
array
();
if
(
idx
(
$commit
,
'commit'
))
{
$commit_hash
=
self
::
formatCommit
(
$commit
[
'commit'
]);
}
else
if
(
isset
(
$commit
[
'rev'
]))
{
$commit_hash
=
self
::
formatCommit
(
$commit
[
'rev'
]);
}
else
{
$commit_hash
=
null
;
}
$row
[]
=
phutil_tag
(
'td'
,
array
(),
$commit_hash
);
if
(
$has_tree
)
{
$tree
=
idx
(
$commit
,
'tree'
);
$tree
=
self
::
formatCommit
(
$tree
);
$row
[]
=
phutil_tag
(
'td'
,
array
(),
$tree
);
}
if
(
$has_local
)
{
$local_rev
=
idx
(
$commit
,
'local'
,
null
);
$row
[]
=
phutil_tag
(
'td'
,
array
(),
$local_rev
);
}
$parents
=
idx
(
$commit
,
'parents'
,
array
());
foreach
(
$parents
as
$k
=>
$parent
)
{
if
(
is_array
(
$parent
))
{
$parent
=
idx
(
$parent
,
'rev'
);
}
$parents
[
$k
]
=
self
::
formatCommit
(
$parent
);
}
$parents
=
phutil_implode_html
(
phutil_tag
(
'br'
),
$parents
);
$row
[]
=
phutil_tag
(
'td'
,
array
(),
$parents
);
$author
=
nonempty
(
idx
(
$commit
,
'user'
),
idx
(
$commit
,
'author'
));
$row
[]
=
phutil_tag
(
'td'
,
array
(),
$author
);
$message
=
idx
(
$commit
,
'message'
);
$summary
=
idx
(
$commit
,
'summary'
);
$summary
=
phutil_utf8_shorten
(
$summary
,
80
);
$view
=
new
AphrontMoreView
();
$view
->
setSome
(
$summary
);
if
(
$message
&&
(
trim
(
$summary
)
!=
trim
(
$message
)))
{
$view
->
setMore
(
phutil_escape_html_newlines
(
$message
));
}
$row
[]
=
phutil_tag
(
'td'
,
array
(
'class'
=>
'summary'
,
),
$view
->
render
());
$date
=
nonempty
(
idx
(
$commit
,
'date'
),
idx
(
$commit
,
'time'
));
if
(
$date
)
{
$date
=
phabricator_datetime
(
$date
,
$user
);
}
$row
[]
=
phutil_tag
(
'td'
,
array
(),
$date
);
$rows
[]
=
phutil_tag
(
'tr'
,
array
(
'class'
=>
$class
),
$row
);
}
$headers
=
array
();
$headers
[]
=
phutil_tag
(
'th'
,
array
(),
pht
(
'Commit'
));
if
(
$has_tree
)
{
$headers
[]
=
phutil_tag
(
'th'
,
array
(),
pht
(
'Tree'
));
}
if
(
$has_local
)
{
$headers
[]
=
phutil_tag
(
'th'
,
array
(),
pht
(
'Local'
));
}
$headers
[]
=
phutil_tag
(
'th'
,
array
(),
pht
(
'Parents'
));
$headers
[]
=
phutil_tag
(
'th'
,
array
(),
pht
(
'Author'
));
$headers
[]
=
phutil_tag
(
'th'
,
array
(),
pht
(
'Summary'
));
$headers
[]
=
phutil_tag
(
'th'
,
array
(),
pht
(
'Date'
));
$headers
=
phutil_tag
(
'tr'
,
array
(),
$headers
);
$content
=
phutil_tag_div
(
'differential-panel'
,
phutil_tag
(
'table'
,
array
(
'class'
=>
'differential-local-commits-table'
),
array
(
$headers
,
phutil_implode_html
(
"
\n
"
,
$rows
))));
return
id
(
new
PHUIObjectBoxView
())
->
setHeaderText
(
pht
(
'Local Commits'
))
->
appendChild
(
$content
);
}
private
static
function
formatCommit
(
$commit
)
{
return
substr
(
$commit
,
0
,
12
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Jun 17, 9:53 PM (1 d, 23 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
226065
Default Alt Text
DifferentialLocalCommitsView.php (3 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment