mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-23 21:18:19 +01:00
0bbcd3888c
Summary: Updates Dashboards Test Plan: Bounced around lists, installed, history, create panel, create dashboard, etc. Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin Maniphest Tasks: T8628 Differential Revision: https://secure.phabricator.com/D13680
71 lines
2 KiB
PHP
71 lines
2 KiB
PHP
<?php
|
|
|
|
final class PhabricatorDashboardMovePanelController
|
|
extends PhabricatorDashboardController {
|
|
|
|
public function handleRequest(AphrontRequest $request) {
|
|
$viewer = $request->getViewer();
|
|
$id = $request->getURIData('id');
|
|
|
|
$column_id = $request->getStr('columnID');
|
|
$panel_phid = $request->getStr('objectPHID');
|
|
$after_phid = $request->getStr('afterPHID');
|
|
$before_phid = $request->getStr('beforePHID');
|
|
|
|
$dashboard = id(new PhabricatorDashboardQuery())
|
|
->setViewer($viewer)
|
|
->withIDs(array($id))
|
|
->needPanels(true)
|
|
->requireCapabilities(
|
|
array(
|
|
PhabricatorPolicyCapability::CAN_VIEW,
|
|
PhabricatorPolicyCapability::CAN_EDIT,
|
|
))
|
|
->executeOne();
|
|
if (!$dashboard) {
|
|
return new Aphront404Response();
|
|
}
|
|
$panels = mpull($dashboard->getPanels(), null, 'getPHID');
|
|
$panel = idx($panels, $panel_phid);
|
|
if (!$panel) {
|
|
return new Aphront404Response();
|
|
}
|
|
|
|
$layout_config = $dashboard->getLayoutConfigObject();
|
|
$layout_config->removePanel($panel_phid);
|
|
$panel_location_grid = $layout_config->getPanelLocations();
|
|
|
|
$column_phids = idx($panel_location_grid, $column_id, array());
|
|
$column_phids = array_values($column_phids);
|
|
if ($column_phids) {
|
|
$insert_at = 0;
|
|
foreach ($column_phids as $index => $phid) {
|
|
if ($phid === $before_phid) {
|
|
$insert_at = $index;
|
|
break;
|
|
}
|
|
if ($phid === $after_phid) {
|
|
$insert_at = $index + 1;
|
|
break;
|
|
}
|
|
}
|
|
|
|
$new_column_phids = $column_phids;
|
|
array_splice(
|
|
$new_column_phids,
|
|
$insert_at,
|
|
0,
|
|
array($panel_phid));
|
|
} else {
|
|
$new_column_phids = array(0 => $panel_phid);
|
|
}
|
|
|
|
$panel_location_grid[$column_id] = $new_column_phids;
|
|
$layout_config->setPanelLocations($panel_location_grid);
|
|
$dashboard->setLayoutConfigFromObject($layout_config);
|
|
$dashboard->save();
|
|
|
|
return id(new AphrontAjaxResponse())->setContent('');
|
|
}
|
|
|
|
}
|