Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F110451414
PhabricatorObjectSelectorDialog.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 26, 09:36
Size
5 KB
Mime Type
text/x-php
Expires
Mon, Apr 28, 09:36 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25820505
Attached To
rPH Phabricator
PhabricatorObjectSelectorDialog.php
View Options
<?php
final
class
PhabricatorObjectSelectorDialog
extends
Phobject
{
private
$user
;
private
$filters
=
array
();
private
$handles
=
array
();
private
$cancelURI
;
private
$submitURI
;
private
$searchURI
;
private
$selectedFilter
;
private
$excluded
;
private
$initialPHIDs
;
private
$maximumSelectionSize
;
private
$title
;
private
$header
;
private
$buttonText
;
private
$instructions
;
public
function
setUser
(
$user
)
{
$this
->
user
=
$user
;
return
$this
;
}
public
function
setFilters
(
array
$filters
)
{
$this
->
filters
=
$filters
;
return
$this
;
}
public
function
setSelectedFilter
(
$selected_filter
)
{
$this
->
selectedFilter
=
$selected_filter
;
return
$this
;
}
public
function
setExcluded
(
$excluded_phid
)
{
$this
->
excluded
=
$excluded_phid
;
return
$this
;
}
public
function
setHandles
(
array
$handles
)
{
assert_instances_of
(
$handles
,
'PhabricatorObjectHandle'
);
$this
->
handles
=
$handles
;
return
$this
;
}
public
function
setCancelURI
(
$cancel_uri
)
{
$this
->
cancelURI
=
$cancel_uri
;
return
$this
;
}
public
function
setSubmitURI
(
$submit_uri
)
{
$this
->
submitURI
=
$submit_uri
;
return
$this
;
}
public
function
setSearchURI
(
$search_uri
)
{
$this
->
searchURI
=
$search_uri
;
return
$this
;
}
public
function
setTitle
(
$title
)
{
$this
->
title
=
$title
;
return
$this
;
}
public
function
setHeader
(
$header
)
{
$this
->
header
=
$header
;
return
$this
;
}
public
function
setButtonText
(
$button_text
)
{
$this
->
buttonText
=
$button_text
;
return
$this
;
}
public
function
setInstructions
(
$instructions
)
{
$this
->
instructions
=
$instructions
;
return
$this
;
}
public
function
setInitialPHIDs
(
array
$initial_phids
)
{
$this
->
initialPHIDs
=
$initial_phids
;
return
$this
;
}
public
function
getInitialPHIDs
()
{
return
$this
->
initialPHIDs
;
}
public
function
setMaximumSelectionSize
(
$maximum_selection_size
)
{
$this
->
maximumSelectionSize
=
$maximum_selection_size
;
return
$this
;
}
public
function
getMaximumSelectionSize
()
{
return
$this
->
maximumSelectionSize
;
}
public
function
buildDialog
()
{
$user
=
$this
->
user
;
$filter_id
=
celerity_generate_unique_node_id
();
$query_id
=
celerity_generate_unique_node_id
();
$results_id
=
celerity_generate_unique_node_id
();
$current_id
=
celerity_generate_unique_node_id
();
$search_id
=
celerity_generate_unique_node_id
();
$form_id
=
celerity_generate_unique_node_id
();
require_celerity_resource
(
'phabricator-object-selector-css'
);
$options
=
array
();
foreach
(
$this
->
filters
as
$key
=>
$label
)
{
$options
[]
=
phutil_tag
(
'option'
,
array
(
'value'
=>
$key
,
'selected'
=>
(
$key
==
$this
->
selectedFilter
)
?
'selected'
:
null
,
),
$label
);
}
$instructions
=
null
;
if
(
$this
->
instructions
)
{
$instructions
=
phutil_tag
(
'p'
,
array
(
'class'
=>
'phabricator-object-selector-instructions'
),
$this
->
instructions
);
}
$search_box
=
phabricator_form
(
$user
,
array
(
'method'
=>
'POST'
,
'action'
=>
$this
->
submitURI
,
'id'
=>
$search_id
,
),
phutil_tag
(
'table'
,
array
(
'class'
=>
'phabricator-object-selector-search'
),
phutil_tag
(
'tr'
,
array
(),
array
(
phutil_tag
(
'td'
,
array
(
'class'
=>
'phabricator-object-selector-search-filter'
),
phutil_tag
(
'select'
,
array
(
'id'
=>
$filter_id
),
$options
)),
phutil_tag
(
'td'
,
array
(
'class'
=>
'phabricator-object-selector-search-text'
),
phutil_tag
(
'input'
,
array
(
'id'
=>
$query_id
,
'type'
=>
'text'
))),
))));
$result_box
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'phabricator-object-selector-results'
,
'id'
=>
$results_id
,
),
''
);
$attached_box
=
phutil_tag_div
(
'phabricator-object-selector-current'
,
phutil_tag_div
(
'phabricator-object-selector-currently-attached'
,
array
(
phutil_tag_div
(
'phabricator-object-selector-header'
,
$this
->
header
),
phutil_tag
(
'div'
,
array
(
'id'
=>
$current_id
)),
$instructions
,
)));
$dialog
=
new
AphrontDialogView
();
$dialog
->
setUser
(
$this
->
user
)
->
setTitle
(
$this
->
title
)
->
setClass
(
'phabricator-object-selector-dialog'
)
->
appendChild
(
$search_box
)
->
appendChild
(
$result_box
)
->
appendChild
(
$attached_box
)
->
setRenderDialogAsDiv
()
->
setFormID
(
$form_id
)
->
addSubmitButton
(
$this
->
buttonText
);
if
(
$this
->
cancelURI
)
{
$dialog
->
addCancelButton
(
$this
->
cancelURI
);
}
$handle_views
=
array
();
foreach
(
$this
->
handles
as
$handle
)
{
$phid
=
$handle
->
getPHID
();
$view
=
new
PhabricatorHandleObjectSelectorDataView
(
$handle
);
$handle_views
[
$phid
]
=
$view
->
renderData
();
}
$dialog
->
addHiddenInput
(
'phids'
,
implode
(
';'
,
array_keys
(
$this
->
handles
)));
$initial_phids
=
$this
->
getInitialPHIDs
();
if
(
$initial_phids
)
{
$initial_phids
=
implode
(
', '
,
$initial_phids
);
$dialog
->
addHiddenInput
(
'initialPHIDs'
,
$initial_phids
);
}
$maximum
=
$this
->
getMaximumSelectionSize
();
Javelin
::
initBehavior
(
'phabricator-object-selector'
,
array
(
'filter'
=>
$filter_id
,
'query'
=>
$query_id
,
'search'
=>
$search_id
,
'results'
=>
$results_id
,
'current'
=>
$current_id
,
'form'
=>
$form_id
,
'exclude'
=>
$this
->
excluded
,
'uri'
=>
$this
->
searchURI
,
'handles'
=>
$handle_views
,
'maximum'
=>
$maximum
,
));
$dialog
->
setResizeX
(
true
);
$dialog
->
setResizeY
(
$results_id
);
return
$dialog
;
}
}
Event Timeline
Log In to Comment