Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F107137768
DiffusionBrowseTableView.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
Sat, Apr 5, 04:04
Size
3 KB
Mime Type
text/x-php
Expires
Mon, Apr 7, 04:04 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25324547
Attached To
rPH Phabricator
DiffusionBrowseTableView.php
View Options
<?php
final
class
DiffusionBrowseTableView
extends
DiffusionView
{
private
$paths
;
private
$handles
=
array
();
public
function
setPaths
(
array
$paths
)
{
assert_instances_of
(
$paths
,
'DiffusionRepositoryPath'
);
$this
->
paths
=
$paths
;
return
$this
;
}
public
function
setHandles
(
array
$handles
)
{
assert_instances_of
(
$handles
,
'PhabricatorObjectHandle'
);
$this
->
handles
=
$handles
;
return
$this
;
}
public
function
render
()
{
$request
=
$this
->
getDiffusionRequest
();
$repository
=
$request
->
getRepository
();
$base_path
=
trim
(
$request
->
getPath
(),
'/'
);
if
(
$base_path
)
{
$base_path
=
$base_path
.
'/'
;
}
$need_pull
=
array
();
$rows
=
array
();
$show_edit
=
false
;
foreach
(
$this
->
paths
as
$path
)
{
$full_path
=
$base_path
.
$path
->
getPath
();
$dir_slash
=
null
;
$file_type
=
$path
->
getFileType
();
if
(
$file_type
==
DifferentialChangeType
::
FILE_DIRECTORY
)
{
$browse_text
=
$path
->
getPath
().
'/'
;
$dir_slash
=
'/'
;
$browse_link
=
phutil_tag
(
'strong'
,
array
(),
$this
->
linkBrowse
(
$full_path
.
$dir_slash
,
array
(
'type'
=>
$file_type
,
'name'
=>
$browse_text
,
)));
$history_path
=
$full_path
.
'/'
;
}
else
if
(
$file_type
==
DifferentialChangeType
::
FILE_SUBMODULE
)
{
$browse_text
=
$path
->
getPath
().
'/'
;
$browse_link
=
phutil_tag
(
'strong'
,
array
(),
$this
->
linkBrowse
(
null
,
array
(
'type'
=>
$file_type
,
'name'
=>
$browse_text
,
'hash'
=>
$path
->
getHash
(),
'external'
=>
$path
->
getExternalURI
(),
)));
$history_path
=
$full_path
.
'/'
;
}
else
{
$browse_text
=
$path
->
getPath
();
$browse_link
=
$this
->
linkBrowse
(
$full_path
,
array
(
'type'
=>
$file_type
,
'name'
=>
$browse_text
,
));
$history_path
=
$full_path
;
}
$history_link
=
$this
->
linkHistory
(
$history_path
);
$dict
=
array
(
'lint'
=>
celerity_generate_unique_node_id
(),
'commit'
=>
celerity_generate_unique_node_id
(),
'date'
=>
celerity_generate_unique_node_id
(),
'author'
=>
celerity_generate_unique_node_id
(),
'details'
=>
celerity_generate_unique_node_id
(),
);
$need_pull
[
$full_path
.
$dir_slash
]
=
$dict
;
foreach
(
$dict
as
$k
=>
$uniq
)
{
$dict
[
$k
]
=
phutil_tag
(
'span'
,
array
(
'id'
=>
$uniq
),
''
);
}
$rows
[]
=
array
(
$history_link
,
$browse_link
,
idx
(
$dict
,
'lint'
),
$dict
[
'commit'
],
$dict
[
'details'
],
$dict
[
'date'
],
);
}
if
(
$need_pull
)
{
Javelin
::
initBehavior
(
'diffusion-pull-lastmodified'
,
array
(
'uri'
=>
(
string
)
$request
->
generateURI
(
array
(
'action'
=>
'lastmodified'
,
'stable'
=>
true
,
)),
'map'
=>
$need_pull
,
));
}
$branch
=
$this
->
getDiffusionRequest
()->
loadBranch
();
$show_lint
=
(
$branch
&&
$branch
->
getLintCommit
());
$lint
=
$request
->
getLint
();
$view
=
new
AphrontTableView
(
$rows
);
$view
->
setHeaders
(
array
(
null
,
pht
(
'Path'
),
(
$lint
?
$lint
:
pht
(
'Lint'
)),
pht
(
'Modified'
),
pht
(
'Details'
),
pht
(
'Committed'
),
));
$view
->
setColumnClasses
(
array
(
'nudgeright'
,
''
,
''
,
''
,
'wide'
,
'right'
,
));
$view
->
setColumnVisibility
(
array
(
true
,
true
,
$show_lint
,
true
,
true
,
true
,
));
$view
->
setDeviceVisibility
(
array
(
true
,
true
,
false
,
false
,
true
,
false
,
));
return
$view
->
render
();
}
}
Event Timeline
Log In to Comment