Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2992367
SlowvoteEmbedView.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
8 KB
Referenced Files
None
Subscribers
None
SlowvoteEmbedView.php
View Options
<?php
final
class
SlowvoteEmbedView
extends
AphrontView
{
private
$poll
;
private
$handles
;
public
function
setPoll
(
PhabricatorSlowvotePoll
$poll
)
{
$this
->
poll
=
$poll
;
return
$this
;
}
public
function
getPoll
(
)
{
return
$this
->
poll
;
}
public
function
render
(
)
{
if
(
!
$this
->
poll
)
{
throw
new
PhutilInvalidStateException
(
'setPoll'
)
;
}
$poll
=
$this
->
poll
;
$phids
=
array
(
)
;
foreach
(
$poll
->
getChoices
(
)
as
$choice
)
{
$phids
[
]
=
$choice
->
getAuthorPHID
(
)
;
}
$phids
[
]
=
$poll
->
getAuthorPHID
(
)
;
$this
->
handles
=
id
(
new
PhabricatorHandleQuery
(
)
)
->
setViewer
(
$this
->
getUser
(
)
)
->
withPHIDs
(
$phids
)
->
execute
(
)
;
$options
=
$poll
->
getOptions
(
)
;
if
(
$poll
->
getShuffle
(
)
)
{
shuffle
(
$options
)
;
}
require_celerity_resource
(
'phabricator-slowvote-css'
)
;
$user_choices
=
$poll
->
getViewerChoices
(
$this
->
getUser
(
)
)
;
$user_choices
=
mpull
(
$user_choices
,
'getOptionID'
,
'getOptionID'
)
;
$out
=
array
(
)
;
foreach
(
$options
as
$option
)
{
$is_selected
=
isset
(
$user_choices
[
$option
->
getID
(
)
]
)
;
$out
[
]
=
$this
->
renderLabel
(
$option
,
$is_selected
)
;
}
$link_to_slowvote
=
phutil_tag
(
'a'
,
array
(
'href'
=>
'/V'
.
$poll
->
getID
(
)
,
)
,
$poll
->
getQuestion
(
)
)
;
$header
=
id
(
new
PHUIHeaderView
(
)
)
->
setHeader
(
$link_to_slowvote
)
;
$description
=
$poll
->
getDescription
(
)
;
if
(
strlen
(
$description
)
)
{
$description
=
new
PHUIRemarkupView
(
$this
->
getUser
(
)
,
$description
)
;
$description
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'slowvote-description'
,
)
,
$description
)
;
}
$header
=
array
(
$header
,
$description
,
)
;
$quip
=
pht
(
'Voting improves cardiovascular endurance.'
)
;
$vis
=
$poll
->
getResponseVisibility
(
)
;
if
(
$this
->
areResultsVisible
(
)
)
{
if
(
$vis
==
SlowvotePollResponseVisibility
::
RESPONSES_OWNER
)
{
$quip
=
pht
(
'Only you can see the results.'
)
;
}
}
else
if
(
$vis
==
SlowvotePollResponseVisibility
::
RESPONSES_VOTERS
)
{
$quip
=
pht
(
'You must vote to see the results.'
)
;
}
else
if
(
$vis
==
SlowvotePollResponseVisibility
::
RESPONSES_OWNER
)
{
$quip
=
pht
(
'Only the author can see the results.'
)
;
}
$hint
=
phutil_tag
(
'span'
,
array
(
'class'
=>
'slowvote-hint'
,
)
,
$quip
)
;
if
(
$poll
->
isClosed
(
)
)
{
$submit
=
null
;
}
else
{
$submit
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'slowvote-footer'
,
)
,
phutil_tag
(
'div'
,
array
(
'class'
=>
'slowvote-footer-content'
,
)
,
array
(
$hint
,
phutil_tag
(
'button'
,
array
(
)
,
pht
(
'Engage in Deliberations'
)
)
,
)
)
)
;
}
$body
=
phabricator_form
(
$this
->
getUser
(
)
,
array
(
'action'
=>
'/vote/'
.
$poll
->
getID
(
)
.
'/'
,
'method'
=>
'POST'
,
'class'
=>
'slowvote-body'
,
)
,
array
(
phutil_tag
(
'div'
,
array
(
'class'
=>
'slowvote-body-content'
,
)
,
$out
)
,
$submit
,
)
)
;
$embed
=
javelin_tag
(
'div'
,
array
(
'class'
=>
'slowvote-embed'
,
'sigil'
=>
'slowvote-embed'
,
'meta'
=>
array
(
'pollID'
=>
$poll
->
getID
(
)
,
)
,
)
,
array
(
$body
)
)
;
return
id
(
new
PHUIObjectBoxView
(
)
)
->
setBackground
(
PHUIObjectBoxView
::
BLUE_PROPERTY
)
->
setHeader
(
$header
)
->
appendChild
(
$embed
)
->
addClass
(
'slowvote-poll-view'
)
;
}
private
function
renderLabel
(
PhabricatorSlowvoteOption
$option
,
$selected
)
{
$classes
=
array
(
)
;
$classes
[
]
=
'slowvote-option-label'
;
$status
=
$this
->
renderStatus
(
$option
)
;
$voters
=
$this
->
renderVoters
(
$option
)
;
return
phutil_tag
(
'div'
,
array
(
'class'
=>
'slowvote-option-label-group'
,
)
,
array
(
phutil_tag
(
'label'
,
array
(
'class'
=>
implode
(
' '
,
$classes
)
,
)
,
array
(
phutil_tag
(
'div'
,
array
(
'class'
=>
'slowvote-control-offset'
,
)
,
$option
->
getName
(
)
)
,
$this
->
renderBar
(
$option
)
,
phutil_tag
(
'div'
,
array
(
'class'
=>
'slowvote-above-the-bar'
,
)
,
array
(
$this
->
renderControl
(
$option
,
$selected
)
,
$status
,
)
)
,
)
)
,
$voters
,
)
)
;
}
private
function
renderBar
(
PhabricatorSlowvoteOption
$option
)
{
if
(
!
$this
->
areResultsVisible
(
)
)
{
return
null
;
}
$poll
=
$this
->
getPoll
(
)
;
$choices
=
mgroup
(
$poll
->
getChoices
(
)
,
'getOptionID'
)
;
$choices
=
count
(
idx
(
$choices
,
$option
->
getID
(
)
,
array
(
)
)
)
;
$count
=
count
(
mgroup
(
$poll
->
getChoices
(
)
,
'getAuthorPHID'
)
)
;
return
phutil_tag
(
'div'
,
array
(
'class'
=>
'slowvote-bar'
,
'style'
=>
sprintf
(
'width: %.1f%%;'
,
$count
?
100
*
(
$choices
/
$count
)
:
0
)
,
)
,
array
(
phutil_tag
(
'div'
,
array
(
'class'
=>
'slowvote-control-offset'
,
)
,
$option
->
getName
(
)
)
,
)
)
;
}
private
function
renderControl
(
PhabricatorSlowvoteOption
$option
,
$selected
)
{
$types
=
array
(
SlowvotePollVotingMethod
::
METHOD_PLURALITY
=>
'radio'
,
SlowvotePollVotingMethod
::
METHOD_APPROVAL
=>
'checkbox'
,
)
;
$closed
=
$this
->
getPoll
(
)
->
isClosed
(
)
;
return
phutil_tag
(
'input'
,
array
(
'type'
=>
idx
(
$types
,
$this
->
getPoll
(
)
->
getMethod
(
)
)
,
'name'
=>
'vote[]'
,
'value'
=>
$option
->
getID
(
)
,
'checked'
=>
(
$selected
?
'checked'
:
null
)
,
'disabled'
=>
(
$closed
?
'disabled'
:
null
)
,
)
)
;
}
private
function
renderVoters
(
PhabricatorSlowvoteOption
$option
)
{
if
(
!
$this
->
areResultsVisible
(
)
)
{
return
null
;
}
$poll
=
$this
->
getPoll
(
)
;
$choices
=
mgroup
(
$poll
->
getChoices
(
)
,
'getOptionID'
)
;
$choices
=
idx
(
$choices
,
$option
->
getID
(
)
,
array
(
)
)
;
if
(
!
$choices
)
{
return
null
;
}
$handles
=
$this
->
handles
;
$authors
=
mpull
(
$choices
,
'getAuthorPHID'
,
'getAuthorPHID'
)
;
$viewer_phid
=
$this
->
getUser
(
)
->
getPHID
(
)
;
// Put the viewer first if they've voted for this option.
$authors
=
array_select_keys
(
$authors
,
array
(
$viewer_phid
)
)
+
$authors
;
$voters
=
array
(
)
;
foreach
(
$authors
as
$author_phid
)
{
$handle
=
$handles
[
$author_phid
]
;
$voters
[
]
=
javelin_tag
(
'div'
,
array
(
'class'
=>
'slowvote-voter'
,
'style'
=>
'background-image: url('
.
$handle
->
getImageURI
(
)
.
')'
,
'sigil'
=>
'has-tooltip'
,
'meta'
=>
array
(
'tip'
=>
$handle
->
getName
(
)
,
)
,
)
)
;
}
return
phutil_tag
(
'div'
,
array
(
'class'
=>
'slowvote-voters'
,
)
,
$voters
)
;
}
private
function
renderStatus
(
PhabricatorSlowvoteOption
$option
)
{
if
(
!
$this
->
areResultsVisible
(
)
)
{
return
null
;
}
$poll
=
$this
->
getPoll
(
)
;
$choices
=
mgroup
(
$poll
->
getChoices
(
)
,
'getOptionID'
)
;
$choices
=
count
(
idx
(
$choices
,
$option
->
getID
(
)
,
array
(
)
)
)
;
$count
=
count
(
mgroup
(
$poll
->
getChoices
(
)
,
'getAuthorPHID'
)
)
;
$percent
=
sprintf
(
'%d%%'
,
$count
?
100
*
$choices
/
$count
:
0
)
;
$method
=
$poll
->
getMethod
(
)
;
switch
(
$method
)
{
case
SlowvotePollVotingMethod
::
METHOD_PLURALITY
:
$status
=
pht
(
'%s (%d / %d)'
,
$percent
,
$choices
,
$count
)
;
break
;
case
SlowvotePollVotingMethod
::
METHOD_APPROVAL
:
$status
=
pht
(
'%s Approval (%d / %d)'
,
$percent
,
$choices
,
$count
)
;
break
;
default
:
$status
=
pht
(
'Unknown ("%s")'
,
$method
)
;
break
;
}
return
phutil_tag
(
'div'
,
array
(
'class'
=>
'slowvote-status'
,
)
,
$status
)
;
}
private
function
areResultsVisible
(
)
{
$poll
=
$this
->
getPoll
(
)
;
$visibility
=
$poll
->
getResponseVisibility
(
)
;
if
(
$visibility
==
SlowvotePollResponseVisibility
::
RESPONSES_VISIBLE
)
{
return
true
;
}
$viewer
=
$this
->
getViewer
(
)
;
if
(
$visibility
==
SlowvotePollResponseVisibility
::
RESPONSES_OWNER
)
{
return
(
$poll
->
getAuthorPHID
(
)
===
$viewer
->
getPHID
(
)
)
;
}
$choices
=
mgroup
(
$poll
->
getChoices
(
)
,
'getAuthorPHID'
)
;
return
(bool)
idx
(
$choices
,
$viewer
->
getPHID
(
)
)
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Feb 23, 07:55 (1 d, 16 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1181223
Default Alt Text
SlowvoteEmbedView.php (8 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment