2011-03-07 17:25:47 -08:00
|
|
|
<?php
|
|
|
|
|
2011-03-12 16:17:34 -08:00
|
|
|
final class DiffusionBrowseTableView extends DiffusionView {
|
2011-03-07 17:25:47 -08:00
|
|
|
|
2011-03-08 17:31:44 -08:00
|
|
|
private $paths;
|
2011-04-02 16:39:23 -07:00
|
|
|
private $handles = array();
|
2011-03-07 17:25:47 -08:00
|
|
|
|
|
|
|
public function setPaths(array $paths) {
|
2012-04-25 16:23:06 -07:00
|
|
|
assert_instances_of($paths, 'DiffusionRepositoryPath');
|
2011-03-07 17:25:47 -08:00
|
|
|
$this->paths = $paths;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2011-04-02 16:39:23 -07:00
|
|
|
public function setHandles(array $handles) {
|
2012-04-03 16:22:31 -07:00
|
|
|
assert_instances_of($handles, 'PhabricatorObjectHandle');
|
2011-04-02 16:39:23 -07:00
|
|
|
$this->handles = $handles;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2011-03-07 17:25:47 -08:00
|
|
|
public function render() {
|
2011-03-12 16:17:34 -08:00
|
|
|
$request = $this->getDiffusionRequest();
|
2011-03-30 22:41:31 -07:00
|
|
|
$repository = $request->getRepository();
|
2011-03-12 16:17:34 -08:00
|
|
|
|
|
|
|
$base_path = trim($request->getPath(), '/');
|
|
|
|
if ($base_path) {
|
|
|
|
$base_path = $base_path.'/';
|
|
|
|
}
|
|
|
|
|
2011-03-30 23:27:06 -07:00
|
|
|
$need_pull = array();
|
2011-03-07 17:25:47 -08:00
|
|
|
$rows = array();
|
2012-08-02 12:22:50 -07:00
|
|
|
$show_edit = false;
|
2011-03-07 17:25:47 -08:00
|
|
|
foreach ($this->paths as $path) {
|
2011-03-12 16:17:34 -08:00
|
|
|
|
2012-04-25 10:27:56 -07:00
|
|
|
$dir_slash = null;
|
Improve Diffusion behavior for externals
Summary:
- Feature request from Airtime that I missed in the feedback notes, came up yesterday.
- Identify git submodules as "FILE_SUBMODULE", not "FILE_NORMAL".
- Link git submodules to an external resolver endpoint, which tries to find commits in tracked repositories.
- Identify git symlinks as "FILE_SYMLINK", not "FILE_NORMAL".
- Add folder, file, symlink and externals icons.
Test Plan:
- externals/javelin is now identified as a submoudule and links to Javelin, not identified as a file and links to error.
- bin/phd is now identified as a symlink.
- Interfaces have pretty icons.
Reviewers: btrahan, cpiro, ddfisher, keebuhm, allenjohnashton
Reviewed By: btrahan
CC: aran, epriestley
Differential Revision: https://secure.phabricator.com/D1975
2012-03-21 14:01:20 -07:00
|
|
|
$file_type = $path->getFileType();
|
|
|
|
if ($file_type == DifferentialChangeType::FILE_DIRECTORY) {
|
2011-03-12 16:17:34 -08:00
|
|
|
$browse_text = $path->getPath().'/';
|
|
|
|
$dir_slash = '/';
|
2011-03-30 22:41:31 -07:00
|
|
|
|
2013-02-13 14:50:15 -08:00
|
|
|
$browse_link = phutil_tag('strong', array(), $this->linkBrowse(
|
2011-03-30 22:41:31 -07:00
|
|
|
$base_path.$path->getPath().$dir_slash,
|
|
|
|
array(
|
2013-02-13 14:50:15 -08:00
|
|
|
'text' => $this->renderPathIcon('dir', $browse_text),
|
|
|
|
)));
|
Improve Diffusion behavior for externals
Summary:
- Feature request from Airtime that I missed in the feedback notes, came up yesterday.
- Identify git submodules as "FILE_SUBMODULE", not "FILE_NORMAL".
- Link git submodules to an external resolver endpoint, which tries to find commits in tracked repositories.
- Identify git symlinks as "FILE_SYMLINK", not "FILE_NORMAL".
- Add folder, file, symlink and externals icons.
Test Plan:
- externals/javelin is now identified as a submoudule and links to Javelin, not identified as a file and links to error.
- bin/phd is now identified as a symlink.
- Interfaces have pretty icons.
Reviewers: btrahan, cpiro, ddfisher, keebuhm, allenjohnashton
Reviewed By: btrahan
CC: aran, epriestley
Differential Revision: https://secure.phabricator.com/D1975
2012-03-21 14:01:20 -07:00
|
|
|
} else if ($file_type == DifferentialChangeType::FILE_SUBMODULE) {
|
|
|
|
$browse_text = $path->getPath().'/';
|
2013-02-13 14:50:15 -08:00
|
|
|
$browse_link = phutil_tag('strong', array(), $this->linkExternal(
|
|
|
|
$path->getHash(),
|
|
|
|
$path->getExternalURI(),
|
|
|
|
$this->renderPathIcon('ext', $browse_text)));
|
2011-03-12 16:17:34 -08:00
|
|
|
} else {
|
Improve Diffusion behavior for externals
Summary:
- Feature request from Airtime that I missed in the feedback notes, came up yesterday.
- Identify git submodules as "FILE_SUBMODULE", not "FILE_NORMAL".
- Link git submodules to an external resolver endpoint, which tries to find commits in tracked repositories.
- Identify git symlinks as "FILE_SYMLINK", not "FILE_NORMAL".
- Add folder, file, symlink and externals icons.
Test Plan:
- externals/javelin is now identified as a submoudule and links to Javelin, not identified as a file and links to error.
- bin/phd is now identified as a symlink.
- Interfaces have pretty icons.
Reviewers: btrahan, cpiro, ddfisher, keebuhm, allenjohnashton
Reviewed By: btrahan
CC: aran, epriestley
Differential Revision: https://secure.phabricator.com/D1975
2012-03-21 14:01:20 -07:00
|
|
|
if ($file_type == DifferentialChangeType::FILE_SYMLINK) {
|
|
|
|
$type = 'link';
|
|
|
|
} else {
|
|
|
|
$type = 'file';
|
|
|
|
}
|
2011-03-12 16:17:34 -08:00
|
|
|
$browse_text = $path->getPath();
|
2011-03-30 22:41:31 -07:00
|
|
|
$browse_link = $this->linkBrowse(
|
2012-04-25 10:27:56 -07:00
|
|
|
$base_path.$path->getPath(),
|
2011-03-30 22:41:31 -07:00
|
|
|
array(
|
2013-01-18 00:32:58 -08:00
|
|
|
'text' => $this->renderPathIcon($type, $browse_text),
|
2011-03-30 22:41:31 -07:00
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2014-05-10 15:57:16 -07:00
|
|
|
$dict = array(
|
|
|
|
'lint' => celerity_generate_unique_node_id(),
|
|
|
|
'commit' => celerity_generate_unique_node_id(),
|
|
|
|
'date' => celerity_generate_unique_node_id(),
|
|
|
|
'time' => celerity_generate_unique_node_id(),
|
|
|
|
'author' => celerity_generate_unique_node_id(),
|
|
|
|
'details' => celerity_generate_unique_node_id(),
|
|
|
|
);
|
|
|
|
|
|
|
|
$need_pull[$base_path.$path->getPath().$dir_slash] = $dict;
|
|
|
|
foreach ($dict as $k => $uniq) {
|
|
|
|
$dict[$k] = phutil_tag('span', array('id' => $uniq), '');
|
2011-03-12 16:17:34 -08:00
|
|
|
}
|
|
|
|
|
2011-03-07 17:25:47 -08:00
|
|
|
$rows[] = array(
|
2011-03-30 22:41:31 -07:00
|
|
|
$browse_link,
|
2013-01-22 12:26:52 -08:00
|
|
|
idx($dict, 'lint'),
|
2011-03-30 23:27:06 -07:00
|
|
|
$dict['commit'],
|
|
|
|
$dict['author'],
|
|
|
|
$dict['details'],
|
2014-05-12 19:57:12 -07:00
|
|
|
$dict['date'],
|
|
|
|
$dict['time'],
|
2011-03-07 17:25:47 -08:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2011-03-30 23:27:06 -07:00
|
|
|
if ($need_pull) {
|
2014-05-10 15:32:53 -07:00
|
|
|
Javelin::initBehavior(
|
|
|
|
'diffusion-pull-lastmodified',
|
|
|
|
array(
|
|
|
|
'uri' => (string)$request->generateURI(
|
|
|
|
array(
|
|
|
|
'action' => 'lastmodified',
|
2014-05-10 17:26:03 -07:00
|
|
|
'stable' => true,
|
2014-05-10 15:32:53 -07:00
|
|
|
)),
|
|
|
|
'map' => $need_pull,
|
|
|
|
));
|
2011-03-30 23:27:06 -07:00
|
|
|
}
|
|
|
|
|
2012-11-07 18:11:52 -08:00
|
|
|
$branch = $this->getDiffusionRequest()->loadBranch();
|
|
|
|
$show_lint = ($branch && $branch->getLintCommit());
|
2012-11-08 15:14:44 -08:00
|
|
|
$lint = $request->getLint();
|
2012-11-07 18:11:52 -08:00
|
|
|
|
2011-03-07 17:25:47 -08:00
|
|
|
$view = new AphrontTableView($rows);
|
|
|
|
$view->setHeaders(
|
|
|
|
array(
|
2013-05-11 08:23:19 -07:00
|
|
|
pht('Path'),
|
|
|
|
($lint ? $lint : pht('Lint')),
|
|
|
|
pht('Modified'),
|
|
|
|
pht('Author/Committer'),
|
|
|
|
pht('Details'),
|
2014-05-12 19:57:12 -07:00
|
|
|
pht('Date'),
|
|
|
|
pht('Time'),
|
2011-03-07 17:25:47 -08:00
|
|
|
));
|
2011-03-12 16:17:34 -08:00
|
|
|
$view->setColumnClasses(
|
|
|
|
array(
|
|
|
|
'',
|
2014-05-12 19:57:12 -07:00
|
|
|
'n',
|
2012-11-07 18:11:52 -08:00
|
|
|
'n',
|
2011-03-30 22:41:31 -07:00
|
|
|
'',
|
2014-05-12 19:57:12 -07:00
|
|
|
'wide',
|
2012-08-02 12:22:50 -07:00
|
|
|
'',
|
2011-03-30 22:41:31 -07:00
|
|
|
'right',
|
2011-03-12 16:17:34 -08:00
|
|
|
));
|
2012-08-02 12:22:50 -07:00
|
|
|
$view->setColumnVisibility(
|
|
|
|
array(
|
|
|
|
true,
|
2012-11-07 18:11:52 -08:00
|
|
|
$show_lint,
|
2012-08-02 12:22:50 -07:00
|
|
|
true,
|
|
|
|
true,
|
|
|
|
true,
|
|
|
|
true,
|
|
|
|
true,
|
|
|
|
));
|
2014-05-12 19:57:12 -07:00
|
|
|
|
|
|
|
$view->setDeviceVisibility(
|
|
|
|
array(
|
|
|
|
true,
|
|
|
|
false,
|
|
|
|
true,
|
|
|
|
false,
|
|
|
|
true,
|
|
|
|
false,
|
|
|
|
false,
|
|
|
|
));
|
|
|
|
|
|
|
|
|
2011-03-07 17:25:47 -08:00
|
|
|
return $view->render();
|
|
|
|
}
|
|
|
|
|
Improve Diffusion behavior for externals
Summary:
- Feature request from Airtime that I missed in the feedback notes, came up yesterday.
- Identify git submodules as "FILE_SUBMODULE", not "FILE_NORMAL".
- Link git submodules to an external resolver endpoint, which tries to find commits in tracked repositories.
- Identify git symlinks as "FILE_SYMLINK", not "FILE_NORMAL".
- Add folder, file, symlink and externals icons.
Test Plan:
- externals/javelin is now identified as a submoudule and links to Javelin, not identified as a file and links to error.
- bin/phd is now identified as a symlink.
- Interfaces have pretty icons.
Reviewers: btrahan, cpiro, ddfisher, keebuhm, allenjohnashton
Reviewed By: btrahan
CC: aran, epriestley
Differential Revision: https://secure.phabricator.com/D1975
2012-03-21 14:01:20 -07:00
|
|
|
private function renderPathIcon($type, $text) {
|
|
|
|
|
|
|
|
require_celerity_resource('diffusion-icons-css');
|
|
|
|
|
2013-01-17 18:43:35 -08:00
|
|
|
return phutil_tag(
|
Improve Diffusion behavior for externals
Summary:
- Feature request from Airtime that I missed in the feedback notes, came up yesterday.
- Identify git submodules as "FILE_SUBMODULE", not "FILE_NORMAL".
- Link git submodules to an external resolver endpoint, which tries to find commits in tracked repositories.
- Identify git symlinks as "FILE_SYMLINK", not "FILE_NORMAL".
- Add folder, file, symlink and externals icons.
Test Plan:
- externals/javelin is now identified as a submoudule and links to Javelin, not identified as a file and links to error.
- bin/phd is now identified as a symlink.
- Interfaces have pretty icons.
Reviewers: btrahan, cpiro, ddfisher, keebuhm, allenjohnashton
Reviewed By: btrahan
CC: aran, epriestley
Differential Revision: https://secure.phabricator.com/D1975
2012-03-21 14:01:20 -07:00
|
|
|
'span',
|
|
|
|
array(
|
|
|
|
'class' => 'diffusion-path-icon diffusion-path-icon-'.$type,
|
|
|
|
),
|
2013-01-17 18:43:35 -08:00
|
|
|
$text);
|
Improve Diffusion behavior for externals
Summary:
- Feature request from Airtime that I missed in the feedback notes, came up yesterday.
- Identify git submodules as "FILE_SUBMODULE", not "FILE_NORMAL".
- Link git submodules to an external resolver endpoint, which tries to find commits in tracked repositories.
- Identify git symlinks as "FILE_SYMLINK", not "FILE_NORMAL".
- Add folder, file, symlink and externals icons.
Test Plan:
- externals/javelin is now identified as a submoudule and links to Javelin, not identified as a file and links to error.
- bin/phd is now identified as a symlink.
- Interfaces have pretty icons.
Reviewers: btrahan, cpiro, ddfisher, keebuhm, allenjohnashton
Reviewed By: btrahan
CC: aran, epriestley
Differential Revision: https://secure.phabricator.com/D1975
2012-03-21 14:01:20 -07:00
|
|
|
}
|
|
|
|
|
2011-03-07 17:25:47 -08:00
|
|
|
}
|