mirror of
https://github.com/MarijnDoeve/TijdVoorDeTest.git
synced 2026-03-05 20:44:19 +01:00
Fixes
This commit is contained in:
2
.idea/php.xml
generated
2
.idea/php.xml
generated
@@ -10,7 +10,7 @@
|
|||||||
</component>
|
</component>
|
||||||
<component name="PHPCSFixerOptionsConfiguration">
|
<component name="PHPCSFixerOptionsConfiguration">
|
||||||
<option name="codingStandard" value="Custom" />
|
<option name="codingStandard" value="Custom" />
|
||||||
<option name="rulesetPath" value="/app/.php-cs-fixer.dist.php" />
|
<option name="rulesetPath" value=".php-cs-fixer.dist.php" />
|
||||||
<option name="transferred" value="true" />
|
<option name="transferred" value="true" />
|
||||||
</component>
|
</component>
|
||||||
<component name="PHPCodeSnifferOptionsConfiguration">
|
<component name="PHPCodeSnifferOptionsConfiguration">
|
||||||
|
|||||||
@@ -1,34 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace App\Command;
|
|
||||||
|
|
||||||
use App\Repository\CandidateRepository;
|
|
||||||
use App\Repository\QuizRepository;
|
|
||||||
use Symfony\Component\Console\Attribute\AsCommand;
|
|
||||||
use Symfony\Component\Console\Command\Command;
|
|
||||||
use Symfony\Component\Console\Input\InputInterface;
|
|
||||||
use Symfony\Component\Console\Output\OutputInterface;
|
|
||||||
use Symfony\Component\Console\Style\SymfonyStyle;
|
|
||||||
|
|
||||||
#[AsCommand(
|
|
||||||
name: 'app:test-command',
|
|
||||||
description: 'Add a short description for your command',
|
|
||||||
)]
|
|
||||||
class TestCommand extends Command
|
|
||||||
{
|
|
||||||
public function __construct(private readonly CandidateRepository $candidateRepository, private readonly QuizRepository $quizRepository)
|
|
||||||
{
|
|
||||||
parent::__construct();
|
|
||||||
}
|
|
||||||
|
|
||||||
protected function execute(InputInterface $input, OutputInterface $output): int
|
|
||||||
{
|
|
||||||
new SymfonyStyle($input, $output);
|
|
||||||
|
|
||||||
dd($this->candidateRepository->getScores($this->quizRepository->find('1f00ff44-6f12-630e-9b87-67e78e97c05e')));
|
|
||||||
|
|
||||||
return Command::SUCCESS;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -29,14 +29,11 @@ use Symfony\Contracts\Translation\TranslatorInterface;
|
|||||||
#[AsController]
|
#[AsController]
|
||||||
final class QuizController extends AbstractController
|
final class QuizController extends AbstractController
|
||||||
{
|
{
|
||||||
|
|
||||||
public const string SEASON_CODE_REGEX = '[A-Za-z\d]{5}';
|
public const string SEASON_CODE_REGEX = '[A-Za-z\d]{5}';
|
||||||
|
|
||||||
private const string CANDIDATE_HASH_REGEX = '[\w\-=]+';
|
private const string CANDIDATE_HASH_REGEX = '[\w\-=]+';
|
||||||
|
|
||||||
public function __construct(private readonly TranslatorInterface $translator)
|
public function __construct(private readonly TranslatorInterface $translator) {}
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
#[Route(path: '/', name: 'app_quiz_selectseason', methods: ['GET', 'POST'])]
|
#[Route(path: '/', name: 'app_quiz_selectseason', methods: ['GET', 'POST'])]
|
||||||
public function selectSeason(Request $request, SeasonRepository $seasonRepository): Response
|
public function selectSeason(Request $request, SeasonRepository $seasonRepository): Response
|
||||||
@@ -48,8 +45,9 @@ final class QuizController extends AbstractController
|
|||||||
$data = $form->getData();
|
$data = $form->getData();
|
||||||
$season_code = $data['season_code'];
|
$season_code = $data['season_code'];
|
||||||
|
|
||||||
if ($seasonRepository->findBy(['seasonCode' => $season_code]) === []) {
|
if ([] === $seasonRepository->findBy(['seasonCode' => $season_code])) {
|
||||||
$this->addFlash(FlashType::Warning, $this->translator->trans('Invalid season code'));
|
$this->addFlash(FlashType::Warning, $this->translator->trans('Invalid season code'));
|
||||||
|
|
||||||
return $this->redirectToRoute('app_quiz_selectseason');
|
return $this->redirectToRoute('app_quiz_selectseason');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ use Symfony\Component\Form\Extension\Core\Type\TextType;
|
|||||||
use Symfony\Component\Form\FormBuilderInterface;
|
use Symfony\Component\Form\FormBuilderInterface;
|
||||||
use Symfony\Contracts\Translation\TranslatorInterface;
|
use Symfony\Contracts\Translation\TranslatorInterface;
|
||||||
|
|
||||||
|
/** @extends AbstractType<null> */
|
||||||
class EnterNameType extends AbstractType
|
class EnterNameType extends AbstractType
|
||||||
{
|
{
|
||||||
public function __construct(private readonly TranslatorInterface $translator) {}
|
public function __construct(private readonly TranslatorInterface $translator) {}
|
||||||
|
|||||||
@@ -9,16 +9,19 @@ use Symfony\Component\Form\Extension\Core\Type\TextType;
|
|||||||
use Symfony\Component\Form\FormBuilderInterface;
|
use Symfony\Component\Form\FormBuilderInterface;
|
||||||
use Symfony\Component\OptionsResolver\OptionsResolver;
|
use Symfony\Component\OptionsResolver\OptionsResolver;
|
||||||
use Symfony\Component\Validator\Constraints\Regex;
|
use Symfony\Component\Validator\Constraints\Regex;
|
||||||
|
use Symfony\Contracts\Translation\TranslatorInterface;
|
||||||
|
|
||||||
|
/** @extends AbstractType<null> */
|
||||||
class SelectSeasonType extends AbstractType
|
class SelectSeasonType extends AbstractType
|
||||||
{
|
{
|
||||||
|
public function __construct(private readonly TranslatorInterface $translator) {}
|
||||||
|
|
||||||
public function buildForm(FormBuilderInterface $builder, array $options): void
|
public function buildForm(FormBuilderInterface $builder, array $options): void
|
||||||
{
|
{
|
||||||
$builder
|
$builder
|
||||||
->add('season_code', TextType::class,
|
->add('season_code', TextType::class,
|
||||||
['required' => true, 'constraints' => new Regex(pattern: "/^[A-Za-z\d]{5}$/")],
|
['required' => true, 'constraints' => new Regex(pattern: "/^[A-Za-z\d]{5}$/"), 'label' => $this->translator->trans('Season Code')]
|
||||||
)
|
)
|
||||||
// ->add('submit', SubmitType::class, ['label' => 'Start quiz'])
|
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -17,6 +17,4 @@ class QuizRepository extends ServiceEntityRepository
|
|||||||
{
|
{
|
||||||
parent::__construct($registry, Quiz::class);
|
parent::__construct($registry, Quiz::class);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function quizReault(Quiz $quiz): array {}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,11 +10,7 @@ use Doctrine\Persistence\ManagerRegistry;
|
|||||||
use Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface;
|
use Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface;
|
||||||
use Symfony\Component\Security\Core\User\PasswordUpgraderInterface;
|
use Symfony\Component\Security\Core\User\PasswordUpgraderInterface;
|
||||||
|
|
||||||
/**
|
/** @extends ServiceEntityRepository<User> */
|
||||||
* @extends ServiceEntityRepository<User>
|
|
||||||
*
|
|
||||||
* @implements PasswordUpgraderInterface<User>
|
|
||||||
*/
|
|
||||||
class UserRepository extends ServiceEntityRepository implements PasswordUpgraderInterface
|
class UserRepository extends ServiceEntityRepository implements PasswordUpgraderInterface
|
||||||
{
|
{
|
||||||
public function __construct(ManagerRegistry $registry)
|
public function __construct(ManagerRegistry $registry)
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ use App\Entity\User;
|
|||||||
use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
|
use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
|
||||||
use Symfony\Component\Security\Core\Authorization\Voter\Voter;
|
use Symfony\Component\Security\Core\Authorization\Voter\Voter;
|
||||||
|
|
||||||
|
/** @extends Voter<string, Season> */
|
||||||
final class SeasonVoter extends Voter
|
final class SeasonVoter extends Voter
|
||||||
{
|
{
|
||||||
public const string EDIT = 'SEASON_EDIT';
|
public const string EDIT = 'SEASON_EDIT';
|
||||||
|
|||||||
@@ -8,13 +8,14 @@ Corrections: Jokers
|
|||||||
'Create an account': 'Maak een account aan'
|
'Create an account': 'Maak een account aan'
|
||||||
Email: E-mail
|
Email: E-mail
|
||||||
'Enter your name': 'Voor je naam in'
|
'Enter your name': 'Voor je naam in'
|
||||||
|
'Invalid season code': 'Ongeldige seizoenscode'
|
||||||
'Load Prepared Elimination': 'Laad voorbereide eliminatie'
|
'Load Prepared Elimination': 'Laad voorbereide eliminatie'
|
||||||
Manage: Beheren
|
Manage: Beheren
|
||||||
Name: Naam
|
Name: Naam
|
||||||
'No active quiz': 'Geen actieve test'
|
'No active quiz': 'Geen actieve test'
|
||||||
'No results': 'Geen resultaten'
|
'No results': 'Geen resultaten'
|
||||||
'Number of dropouts:': 'Aantal afvallers:'
|
'Number of dropouts:': 'Aantal afvallers:'
|
||||||
Owner(s): Eigenar(en)
|
Owner(s): Eigena(a)r(en)
|
||||||
Password: Wachtwoord
|
Password: Wachtwoord
|
||||||
'Please Confirm your Email': messages
|
'Please Confirm your Email': messages
|
||||||
'Please sign in': 'Log in aub'
|
'Please sign in': 'Log in aub'
|
||||||
|
|||||||
Reference in New Issue
Block a user