Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F1504558
PhabricatorProjectBoardReorderController.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
4 KB
Referenced Files
None
Subscribers
None
PhabricatorProjectBoardReorderController.php
View Options
<?php
final
class
PhabricatorProjectBoardReorderController
extends
PhabricatorProjectBoardController
{
private
$projectID
;
public
function
willProcessRequest
(
array
$data
)
{
$this
->
projectID
=
$data
[
'projectID'
];
}
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$viewer
=
$request
->
getUser
();
$project
=
id
(
new
PhabricatorProjectQuery
())
->
setViewer
(
$viewer
)
->
requireCapabilities
(
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
))
->
withIDs
(
array
(
$this
->
projectID
))
->
executeOne
();
if
(!
$project
)
{
return
new
Aphront404Response
();
}
$this
->
setProject
(
$project
);
$project_id
=
$project
->
getID
();
$board_uri
=
$this
->
getApplicationURI
(
"board/{$project_id}/"
);
$reorder_uri
=
$this
->
getApplicationURI
(
"board/{$project_id}/reorder/"
);
if
(
$request
->
isFormPost
())
{
// User clicked "Done", make sure the page reloads to show the new
// column order.
return
id
(
new
AphrontRedirectResponse
())->
setURI
(
$board_uri
);
}
$columns
=
id
(
new
PhabricatorProjectColumnQuery
())
->
setViewer
(
$viewer
)
->
withProjectPHIDs
(
array
(
$project
->
getPHID
()))
->
execute
();
$columns
=
msort
(
$columns
,
'getSequence'
);
$column_phid
=
$request
->
getStr
(
'columnPHID'
);
if
(
$column_phid
&&
$request
->
validateCSRF
())
{
$columns
=
mpull
(
$columns
,
null
,
'getPHID'
);
if
(
empty
(
$columns
[
$column_phid
]))
{
return
new
Aphront404Response
();
}
// TODO: We could let you move the backlog column around if you really
// want, but for now we use sequence position 0 as magic.
$target_column
=
$columns
[
$column_phid
];
$new_sequence
=
$request
->
getInt
(
'sequence'
);
if
(
$target_column
->
isDefaultColumn
()
||
$new_sequence
<
1
)
{
return
new
Aphront404Response
();
}
// TODO: For now, we're not recording any transactions here. We probably
// should, but this sort of edit is extremely trivial.
// Resequence the columns so that the moved column has the correct
// sequence number. Move columns after it up one place in the sequence.
$new_map
=
array
();
foreach
(
$columns
as
$phid
=>
$column
)
{
$value
=
$column
->
getSequence
();
if
(
$column
->
getPHID
()
==
$column_phid
)
{
$value
=
$new_sequence
;
}
else
if
(
$column
->
getSequence
()
>=
$new_sequence
)
{
$value
=
$value
+
1
;
}
$new_map
[
$phid
]
=
$value
;
}
// Sort the columns into their new ordering.
asort
(
$new_map
);
// Now, compact the ordering and adjust any columns that need changes.
$project
->
openTransaction
();
$sequence
=
0
;
foreach
(
$new_map
as
$phid
=>
$ignored
)
{
$new_value
=
$sequence
++;
$cur_value
=
$columns
[
$phid
]->
getSequence
();
if
(
$new_value
!=
$cur_value
)
{
$columns
[
$phid
]->
setSequence
(
$new_value
)->
save
();
}
}
$project
->
saveTransaction
();
return
id
(
new
AphrontAjaxResponse
())->
setContent
(
array
(
'sequenceMap'
=>
mpull
(
$columns
,
'getSequence'
,
'getPHID'
),
));
}
$list_id
=
celerity_generate_unique_node_id
();
$static_list
=
id
(
new
PHUIObjectItemListView
())
->
setUser
(
$viewer
)
->
setFlush
(
true
)
->
setStackable
(
true
);
$list
=
id
(
new
PHUIObjectItemListView
())
->
setUser
(
$viewer
)
->
setID
(
$list_id
)
->
setFlush
(
true
)
->
setStackable
(
true
);
foreach
(
$columns
as
$column
)
{
$item
=
id
(
new
PHUIObjectItemView
())
->
setHeader
(
$column
->
getDisplayName
());
if
(
$column
->
isHidden
())
{
$item
->
setDisabled
(
true
);
}
if
(
$column
->
isDefaultColumn
())
{
$item
->
setDisabled
(
true
);
$static_list
->
addItem
(
$item
);
}
else
{
$item
->
setGrippable
(
true
);
$item
->
addSigil
(
'board-column'
);
$item
->
setMetadata
(
array
(
'columnPHID'
=>
$column
->
getPHID
(),
'columnSequence'
=>
$column
->
getSequence
(),
));
$list
->
addItem
(
$item
);
}
}
Javelin
::
initBehavior
(
'reorder-columns'
,
array
(
'listID'
=>
$list_id
,
'reorderURI'
=>
$reorder_uri
,
));
return
$this
->
newDialog
()
->
setTitle
(
pht
(
'Reorder Columns'
))
->
setWidth
(
AphrontDialogView
::
WIDTH_FORM
)
->
appendParagraph
(
pht
(
'This column can not be moved:'
))
->
appendChild
(
$static_list
)
->
appendParagraph
(
pht
(
'Drag and drop these columns to reorder them:'
))
->
appendChild
(
$list
)
->
addSubmitButton
(
pht
(
'Done'
));
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Jul 13, 12:42 PM (1 d, 20 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
348908
Default Alt Text
PhabricatorProjectBoardReorderController.php (4 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment