manage polls

This commit is contained in:
Thomas 2020-05-01 15:19:30 +02:00
parent 0f0621162b
commit b8cc61d94b
7 changed files with 60 additions and 77 deletions

View file

@ -14,8 +14,10 @@ use App\Services\Mastodon_api;
use App\SocialEntity\Client;
use App\SocialEntity\Compose;
use App\SocialEntity\MastodonAccount;
use App\SocialEntity\PollOption;
use DateTime;
use DateTimeZone;
use Doctrine\Common\Collections\ArrayCollection;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\Form\FormError;
use Symfony\Component\HttpFoundation\JsonResponse;
@ -152,6 +154,13 @@ class FediPlanController extends AbstractController
{
$compose = new Compose();
$pollOption1 = new PollOption();
$pollOption1->setTitle("");
$compose->getPollOptions()->add($pollOption1);
$pollOption2 = new PollOption();
$pollOption2->setTitle("");
$compose->getPollOptions()->add($pollOption2);
$form = $this->createForm(ComposeType::class, $compose, ['user' => $this->getUser()]);
$form->handleRequest($request);
if ($form->isSubmitted() && $form->isValid()) {

View file

@ -84,18 +84,14 @@ class ComposeType extends AbstractType {
"data" => new DateTime(),
'label' => 'page.schedule.form.scheduled_at',
'translation_domain' => 'fediplan']);
$builder->add('Send', SubmitType::class,
['attr' => ['class' => "btn btn-primary "],
'label' => 'page.schedule.form.send',
'translation_domain' => 'fediplan']);
$builder->add('poll_option_1', TextType::class, ['required' => false]);
$builder->add('poll_option_2', TextType::class, ['required' => false]);
$builder->add('poll_options', CollectionType::class,
[
'entry_type' => PollOptionType::class,
'by_reference' => false,
'allow_add' => true,
'prototype' => true,
'entry_options' => ['label' => false],
'allow_delete' => true,
'required' => false,
]);
@ -114,9 +110,14 @@ class ComposeType extends AbstractType {
$this->translator->trans('poll.duration_d', ['days' => 7], 'fediplan') => 7*24*60*60,
],
'data' => 24*60*60,
'required' => false,
'label' => 'page.schedule.form.end_in',
'translation_domain' => 'fediplan']);
$builder->add('Send', SubmitType::class,
['attr' => ['class' => "btn btn-primary "],
'label' => 'page.schedule.form.send',
'translation_domain' => 'fediplan']);
}

View file

@ -26,10 +26,11 @@ class PollOptionType extends AbstractType {
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder->add('option', TextType::class,
$builder->add('title', TextType::class,
[
'required' => false,
'attr'=> ['class'=>'form-control']
'attr'=> ['class'=>'form-control'],
'label' => 'page.schedule.form.poll_item',
]);
}

View file

@ -5,6 +5,7 @@ namespace App\SocialEntity;
use DateTime;
use DateTimeInterface;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
class Compose
@ -30,20 +31,16 @@ class Compose
private $timeZone;
/** @var PollOption[] */
private $poll_options;
/** @var int */
private $poll_expires_at;
/** @var bool */
private $poll_multiple;
/** @var PollOption */
private $poll_option_1;
/** @var PollOption */
private $poll_option_2;
public function __construct()
{
$this->attachments = new ArrayCollection();
$this->poll_options = new ArrayCollection();
}
/**
@ -167,17 +164,17 @@ class Compose
}
/**
* @return PollOption[]
* @return ArrayCollection|null
*/
public function getPollOptions(): ?array
public function getPollOptions(): ?ArrayCollection
{
return $this->poll_options;
}
/**
* @param PollOption[] $poll_options
* @param ArrayCollection $poll_options
*/
public function setPollOptions(?array $poll_options): void
public function setPollOptions(?ArrayCollection $poll_options): void
{
$this->poll_options = $poll_options;
}
@ -214,37 +211,4 @@ class Compose
$this->poll_multiple = $poll_multiple;
}
/**
* @return PollOption
*/
public function getPollOption1(): ?PollOption
{
return $this->poll_option_1;
}
/**
* @param PollOption $poll_option_1
*/
public function setPollOption1(?PollOption $poll_option_1): void
{
$this->poll_option_1 = $poll_option_1;
}
/**
* @return PollOption
*/
public function getPollOption2(): ?PollOption
{
return $this->poll_option_2;
}
/**
* @param PollOption $poll_option_2
*/
public function setPollOption2(?PollOption $poll_option_2): void
{
$this->poll_option_2 = $poll_option_2;
}
}

View file

@ -44,4 +44,8 @@ class PollOption
}
public function __toString()
{
return $this->title;
}
}

View file

@ -112,34 +112,26 @@
{% endif %}
</div>
</div>
<div class=" col-md-3"></div>
<div class="col-md-2">
<label for="count">{{ 'common.poll'|trans }}</label>&nbsp;&nbsp;
<span id="poll_switch" class="form-control" style="text-align: center;cursor:pointer;" > <i class="fa fa-tasks fa-fw"></i></span>
</div>
</div>
<div id="poll_container" class="d-none">
<ul class="options"
data-prototype="{{ form_widget(form.poll_options.vars.prototype.option)|e('html_attr') }}">
<div class="form-group has-feedback">
{{ form_label(form.poll_option_1) }}
{{ form_widget(form.poll_option_1, {'attr': {'class': 'form-control'}}) }}
{% if not form.poll_option_1.vars.errors is empty %}
data-prototype="{{ form_widget(form.poll_options.vars.prototype)|e('html_attr') }}">
{% for option in form.poll_options %}
{{ form_widget(option) }}
{% if not option.vars.errors is empty %}
<span class="badge badge-danger">
{% for errorItem in form.poll_option_1.vars.errors %}
{% for errorItem in option.vars.errors %}
{{ errorItem.message }}
{% endfor %}
</span>
{% endif %}
</div>
<div class="form-group has-feedback">
{{ form_label(form.poll_option_2) }}
{{ form_widget(form.poll_option_2, {'attr': {'class': 'form-control'}}) }}
{% if not form.poll_option_2.vars.errors is empty %}
<span class="badge badge-danger">
{% for errorItem in form.poll_option_2.vars.errors %}
{{ errorItem.message }}
{% endfor %}
</span>
{% endif %}
</div>
</ul>
<div class="row">
<div class=" col-md-12">
@ -168,6 +160,8 @@
{% endif %}
</div>
</div>
</div>
</div>
</div>
</div>
@ -477,11 +471,17 @@
$(document).ready(function() {
$('#poll_switch').click(function (e) {
if($('#poll_container').hasClass("d-none") ){
$('#poll_container').removeClass("d-none");
}else{
$('#poll_container').addClass("d-none");
}
});
var $collectionHolder;
// setup an "add a tag" link
var $addTagButton = $('<button type="button" style="margin-top:20px;" class="add_tag_link btn btn-secondary">Add an option</button>');
var $addTagButton = $('<button type="button" style="margin-top:20px;" class="add_tag_link btn btn-secondary">{{ "page.schedule.form.add_poll_item"|trans }}</button>');
var $newLinkLi = $('<li></li>').append($addTagButton);
jQuery(document).ready(function() {
@ -505,7 +505,7 @@
}
function addOptionFormDeleteLink($tagFormLi) {
var $removeFormButton = $('<button type="button" style="margin-top: 5px;" class="btn btn-danger btn-sm">Delete this option</button>');
var $removeFormButton = $('<button type="button" style="margin-top: 5px;" class="btn btn-danger btn-sm">{{ "page.schedule.form.remove_poll_item"|trans }}</button>');
$tagFormLi.append($removeFormButton);
$removeFormButton.on('click', function(e) {
$tagFormLi.remove();

View file

@ -26,6 +26,7 @@ common:
error: Error
no: "No"
yes: "Yes"
poll: Poll
status:
visibility:
public: Public
@ -67,3 +68,6 @@ page:
add_files: Add files...
multiple: Multiple
end_in: End in
poll_item: Poll choice
add_poll_item: Add a choice
remove_poll_item: Remove this choice