Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2992203
ConpherenceDurableColumnView.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
12 KB
Referenced Files
None
Subscribers
None
ConpherenceDurableColumnView.php
View Options
<?php
final
class
ConpherenceDurableColumnView
extends
AphrontTagView
{
private
$conpherences
=
array
(
)
;
private
$draft
;
private
$selectedConpherence
;
private
$transactions
;
private
$visible
;
private
$minimize
;
private
$initialLoad
=
false
;
private
$policyObjects
;
private
$quicksandConfig
=
array
(
)
;
public
function
setConpherences
(
array
$conpherences
)
{
assert_instances_of
(
$conpherences
,
'ConpherenceThread'
)
;
$this
->
conpherences
=
$conpherences
;
return
$this
;
}
public
function
getConpherences
(
)
{
return
$this
->
conpherences
;
}
public
function
setDraft
(
PhabricatorDraft
$draft
)
{
$this
->
draft
=
$draft
;
return
$this
;
}
public
function
getDraft
(
)
{
return
$this
->
draft
;
}
public
function
setSelectedConpherence
(
?
ConpherenceThread
$conpherence
=
null
)
{
$this
->
selectedConpherence
=
$conpherence
;
return
$this
;
}
public
function
getSelectedConpherence
(
)
{
return
$this
->
selectedConpherence
;
}
public
function
setTransactions
(
array
$transactions
)
{
assert_instances_of
(
$transactions
,
'ConpherenceTransaction'
)
;
$this
->
transactions
=
$transactions
;
return
$this
;
}
public
function
getTransactions
(
)
{
return
$this
->
transactions
;
}
public
function
setVisible
(
$visible
)
{
$this
->
visible
=
$visible
;
return
$this
;
}
public
function
getVisible
(
)
{
return
$this
->
visible
;
}
public
function
setMinimize
(
$minimize
)
{
$this
->
minimize
=
$minimize
;
return
$this
;
}
public
function
getMinimize
(
)
{
return
$this
->
minimize
;
}
public
function
setInitialLoad
(
$bool
)
{
$this
->
initialLoad
=
$bool
;
return
$this
;
}
public
function
getInitialLoad
(
)
{
return
$this
->
initialLoad
;
}
public
function
setPolicyObjects
(
array
$objects
)
{
assert_instances_of
(
$objects
,
'PhabricatorPolicy'
)
;
$this
->
policyObjects
=
$objects
;
return
$this
;
}
public
function
getPolicyObjects
(
)
{
return
$this
->
policyObjects
;
}
public
function
setQuicksandConfig
(
array
$config
)
{
$this
->
quicksandConfig
=
$config
;
return
$this
;
}
public
function
getQuicksandConfig
(
)
{
return
$this
->
quicksandConfig
;
}
protected
function
getTagAttributes
(
)
{
if
(
$this
->
getVisible
(
)
)
{
$style
=
null
;
}
else
{
$style
=
'display: none;'
;
}
$classes
=
array
(
'conpherence-durable-column'
)
;
if
(
$this
->
getInitialLoad
(
)
)
{
$classes
[
]
=
'loading'
;
}
return
array
(
'id'
=>
'conpherence-durable-column'
,
'class'
=>
implode
(
' '
,
$classes
)
,
'style'
=>
$style
,
'sigil'
=>
'conpherence-durable-column'
,
)
;
}
protected
function
getTagContent
(
)
{
$column_key
=
PhabricatorConpherenceColumnVisibleSetting
::
SETTINGKEY
;
$minimize_key
=
PhabricatorConpherenceColumnMinimizeSetting
::
SETTINGKEY
;
Javelin
::
initBehavior
(
'durable-column'
,
array
(
'visible'
=>
$this
->
getVisible
(
)
,
'minimize'
=>
$this
->
getMinimize
(
)
,
'visibleURI'
=>
'/settings/adjust/?key='
.
$column_key
,
'minimizeURI'
=>
'/settings/adjust/?key='
.
$minimize_key
,
'quicksandConfig'
=>
$this
->
getQuicksandConfig
(
)
,
)
)
;
$policy_objects
=
ConpherenceThread
::
loadViewPolicyObjects
(
$this
->
getUser
(
)
,
$this
->
getConpherences
(
)
)
;
$this
->
setPolicyObjects
(
$policy_objects
)
;
$classes
=
array
(
)
;
$classes
[
]
=
'conpherence-durable-column-header'
;
$classes
[
]
=
'grouped'
;
$header
=
phutil_tag
(
'div'
,
array
(
'class'
=>
implode
(
' '
,
$classes
)
,
'data-sigil'
=>
'conpherence-minimize-window'
,
)
,
$this
->
buildHeader
(
)
)
;
$icon_bar
=
null
;
if
(
$this
->
conpherences
)
{
$icon_bar
=
$this
->
buildIconBar
(
)
;
}
$icon_bar
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'conpherence-durable-column-icon-bar'
,
)
,
$icon_bar
)
;
$transactions
=
$this
->
buildTransactions
(
)
;
$content
=
javelin_tag
(
'div'
,
array
(
'class'
=>
'conpherence-durable-column-main'
,
'sigil'
=>
'conpherence-durable-column-main'
,
)
,
phutil_tag
(
'div'
,
array
(
'id'
=>
'conpherence-durable-column-content'
,
'class'
=>
'conpherence-durable-column-frame'
,
)
,
javelin_tag
(
'div'
,
array
(
'class'
=>
'conpherence-durable-column-transactions'
,
'sigil'
=>
'conpherence-durable-column-transactions'
,
)
,
$transactions
)
)
)
;
$input
=
$this
->
buildTextInput
(
)
;
return
array
(
$header
,
javelin_tag
(
'div'
,
array
(
'class'
=>
'conpherence-durable-column-body'
,
'sigil'
=>
'conpherence-durable-column-body'
,
)
,
array
(
$icon_bar
,
$content
,
$input
,
)
)
,
)
;
}
private
function
buildIconBar
(
)
{
$icons
=
array
(
)
;
$selected_conpherence
=
$this
->
getSelectedConpherence
(
)
;
$conpherences
=
$this
->
getConpherences
(
)
;
foreach
(
$conpherences
as
$conpherence
)
{
$classes
=
array
(
'conpherence-durable-column-thread-icon'
)
;
if
(
$selected_conpherence
->
getID
(
)
==
$conpherence
->
getID
(
)
)
{
$classes
[
]
=
'selected'
;
}
$data
=
$conpherence
->
getDisplayData
(
$this
->
getUser
(
)
)
;
$thread_title
=
phutil_tag
(
'span'
,
array
(
)
,
array
(
$data
[
'title'
]
,
)
)
;
$image
=
$data
[
'image'
]
;
Javelin
::
initBehavior
(
'phabricator-tooltips'
)
;
$icons
[
]
=
javelin_tag
(
'a'
,
array
(
'href'
=>
'/conpherence/columnview/'
,
'class'
=>
implode
(
' '
,
$classes
)
,
'sigil'
=>
'conpherence-durable-column-thread-icon has-tooltip'
,
'meta'
=>
array
(
'threadID'
=>
$conpherence
->
getID
(
)
,
'threadTitle'
=>
hsprintf
(
'%s'
,
$thread_title
)
,
'tip'
=>
$data
[
'title'
]
,
'align'
=>
'W'
,
)
,
)
,
phutil_tag
(
'span'
,
array
(
'style'
=>
'background-image: url('
.
$image
.
')'
,
)
,
''
)
)
;
}
return
$icons
;
}
private
function
buildHeader
(
)
{
$conpherence
=
$this
->
getSelectedConpherence
(
)
;
$bubble_id
=
celerity_generate_unique_node_id
(
)
;
$dropdown_id
=
celerity_generate_unique_node_id
(
)
;
$settings_list
=
new
PHUIListView
(
)
;
$header_actions
=
$this
->
getHeaderActionsConfig
(
$conpherence
)
;
foreach
(
$header_actions
as
$action
)
{
$settings_list
->
addMenuItem
(
id
(
new
PHUIListItemView
(
)
)
->
setHref
(
$action
[
'href'
]
)
->
setName
(
$action
[
'name'
]
)
->
setIcon
(
$action
[
'icon'
]
)
->
setDisabled
(
$action
[
'disabled'
]
)
->
addSigil
(
'conpherence-durable-column-header-action'
)
->
setMetadata
(
array
(
'action'
=>
$action
[
'key'
]
,
)
)
)
;
}
$settings_menu
=
phutil_tag
(
'div'
,
array
(
'id'
=>
$dropdown_id
,
'class'
=>
'phabricator-main-menu-dropdown phui-list-sidenav '
.
'conpherence-settings-dropdown'
,
'sigil'
=>
'phabricator-notification-menu'
,
'style'
=>
'display: none'
,
)
,
$settings_list
)
;
Javelin
::
initBehavior
(
'aphlict-dropdown'
,
array
(
'bubbleID'
=>
$bubble_id
,
'dropdownID'
=>
$dropdown_id
,
'local'
=>
true
,
'containerDivID'
=>
'conpherence-durable-column'
,
)
)
;
$bars
=
id
(
new
PHUIListItemView
(
)
)
->
setName
(
pht
(
'Room Actions'
)
)
->
setIcon
(
'fa-gear'
)
->
addClass
(
'core-menu-item'
)
->
addClass
(
'conpherence-settings-icon'
)
->
addSigil
(
'conpherence-settings-menu'
)
->
setID
(
$bubble_id
)
->
setHref
(
'#'
)
->
setAural
(
pht
(
'Room Actions'
)
)
->
setOrder
(
400
)
;
$minimize
=
id
(
new
PHUIListItemView
(
)
)
->
setName
(
pht
(
'Minimize Window'
)
)
->
setIcon
(
'fa-toggle-down'
)
->
addClass
(
'core-menu-item'
)
->
addClass
(
'conpherence-minimize-icon'
)
->
addSigil
(
'conpherence-minimize-window'
)
->
setHref
(
'#'
)
->
setAural
(
pht
(
'Minimize Window'
)
)
->
setOrder
(
300
)
;
$settings_button
=
id
(
new
PHUIListView
(
)
)
->
addMenuItem
(
$bars
)
->
addMenuItem
(
$minimize
)
->
addClass
(
'phabricator-application-menu'
)
;
if
(
$conpherence
)
{
$data
=
$conpherence
->
getDisplayData
(
$this
->
getUser
(
)
)
;
$header
=
phutil_tag
(
'span'
,
array
(
)
,
$data
[
'title'
]
)
;
}
else
{
$header
=
phutil_tag
(
'span'
,
array
(
)
,
pht
(
'Conpherence'
)
)
;
}
$status
=
new
PhabricatorNotificationStatusView
(
)
;
return
phutil_tag
(
'div'
,
array
(
'class'
=>
'conpherence-durable-column-header-inner'
,
)
,
array
(
$status
,
javelin_tag
(
'div'
,
array
(
'sigil'
=>
'conpherence-durable-column-header-text'
,
'class'
=>
'conpherence-durable-column-header-text'
,
)
,
$header
)
,
$settings_button
,
$settings_menu
,
)
)
;
}
private
function
getHeaderActionsConfig
(
$conpherence
)
{
$actions
=
array
(
)
;
if
(
$conpherence
)
{
$can_edit
=
PhabricatorPolicyFilter
::
hasCapability
(
$this
->
getUser
(
)
,
$conpherence
,
PhabricatorPolicyCapability
::
CAN_EDIT
)
;
$actions
[
]
=
array
(
'name'
=>
pht
(
'Add Participants'
)
,
'disabled'
=>
!
$can_edit
,
'href'
=>
'/conpherence/edit/'
.
$conpherence
->
getID
(
)
.
'/'
,
'icon'
=>
'fa-plus'
,
'key'
=>
ConpherenceUpdateActions
::
ADD_PERSON
,
)
;
$actions
[
]
=
array
(
'name'
=>
pht
(
'Edit Room'
)
,
'disabled'
=>
!
$can_edit
,
'href'
=>
'/conpherence/edit/'
.
$conpherence
->
getID
(
)
.
'/'
,
'icon'
=>
'fa-pencil'
,
'key'
=>
'go_edit'
,
)
;
$actions
[
]
=
array
(
'name'
=>
pht
(
'View in Conpherence'
)
,
'disabled'
=>
false
,
'href'
=>
'/'
.
$conpherence
->
getMonogram
(
)
,
'icon'
=>
'fa-comments'
,
'key'
=>
'go_conpherence'
,
)
;
}
$actions
[
]
=
array
(
'name'
=>
pht
(
'Hide Window'
)
,
'disabled'
=>
false
,
'href'
=>
'#'
,
'icon'
=>
'fa-times'
,
'key'
=>
'hide_column'
,
)
;
return
$actions
;
}
private
function
buildTransactions
(
)
{
$conpherence
=
$this
->
getSelectedConpherence
(
)
;
if
(
!
$conpherence
)
{
if
(
!
$this
->
getVisible
(
)
||
$this
->
getInitialLoad
(
)
)
{
return
pht
(
'Loading...'
)
;
}
$view
=
array
(
phutil_tag
(
'div'
,
array
(
'class'
=>
'column-no-rooms-text'
,
)
,
pht
(
'You have not joined any rooms yet.'
)
)
,
javelin_tag
(
'a'
,
array
(
'href'
=>
'/conpherence/search/'
,
'class'
=>
'button button-grey'
,
)
,
pht
(
'Find Rooms'
)
)
,
)
;
return
phutil_tag_div
(
'column-no-rooms'
,
$view
)
;
}
$data
=
ConpherenceTransactionRenderer
::
renderTransactions
(
$this
->
getUser
(
)
,
$conpherence
)
;
$messages
=
ConpherenceTransactionRenderer
::
renderMessagePaneContent
(
$data
[
'transactions'
]
,
$data
[
'oldest_transaction_id'
]
,
$data
[
'newest_transaction_id'
]
)
;
return
$messages
;
}
private
function
buildTextInput
(
)
{
$conpherence
=
$this
->
getSelectedConpherence
(
)
;
if
(
!
$conpherence
)
{
return
null
;
}
$draft
=
$this
->
getDraft
(
)
;
$draft_value
=
null
;
if
(
$draft
)
{
$draft_value
=
$draft
->
getDraft
(
)
;
}
$textarea_id
=
celerity_generate_unique_node_id
(
)
;
$textarea
=
javelin_tag
(
'textarea'
,
array
(
'id'
=>
$textarea_id
,
'name'
=>
'text'
,
'class'
=>
'conpherence-durable-column-textarea'
,
'sigil'
=>
'conpherence-durable-column-textarea'
,
'placeholder'
=>
pht
(
'Send a message...'
)
,
)
,
$draft_value
)
;
Javelin
::
initBehavior
(
'aphront-drag-and-drop-textarea'
,
array
(
'target'
=>
$textarea_id
,
'activatedClass'
=>
'aphront-textarea-drag-and-drop'
,
'uri'
=>
'/file/dropupload/'
,
)
)
;
$id
=
$conpherence
->
getID
(
)
;
return
phabricator_form
(
$this
->
getUser
(
)
,
array
(
'method'
=>
'POST'
,
'action'
=>
'/conpherence/edit/'
.
$id
.
'/'
,
'sigil'
=>
'conpherence-message-form'
,
)
,
array
(
$textarea
,
phutil_tag
(
'input'
,
array
(
'type'
=>
'hidden'
,
'name'
=>
'action'
,
'value'
=>
ConpherenceUpdateActions
::
MESSAGE
,
)
)
,
)
)
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Feb 23, 07:04 (1 d, 11 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1181200
Default Alt Text
ConpherenceDurableColumnView.php (12 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment