Skip to content

Commit

Permalink
11 - Add a relation between events and locations
Browse files Browse the repository at this point in the history
  • Loading branch information
wachterjohannes authored and niklasnatter committed Jun 22, 2021
1 parent 4c56ca8 commit 611bf1a
Show file tree
Hide file tree
Showing 9 changed files with 97 additions and 25 deletions.
2 changes: 1 addition & 1 deletion config/forms/event_details.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
</params>
</property>

<property name="location" type="text_line" colspan="6">
<property name="locationId" type="single_location_selection" mandatory="true" colspan="6">
<meta>
<title>app.location</title>
</meta>
Expand Down
14 changes: 14 additions & 0 deletions config/packages/sulu_admin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,17 @@ sulu_admin:
icon: fa-calendar
label: 'app.events'
overlay_title: 'app.events'

single_selection:
single_location_selection:
default_type: list_overlay
resource_key: locations
types:
list_overlay:
adapter: table
list_key: locations
display_properties:
- name
icon: fa-home
empty_text: 'app.location.no_selections'
overlay_title: 'app.locations'
22 changes: 16 additions & 6 deletions src/Controller/Admin/EventController.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
use App\Common\DoctrineListRepresentationFactory;
use App\Entity\Event;
use App\Repository\EventRepository;
use App\Repository\LocationRepository;
use FOS\RestBundle\Controller\Annotations as Rest;
use FOS\RestBundle\Controller\Annotations\RouteResource;
use FOS\RestBundle\Routing\ClassResourceInterface;
Expand All @@ -23,6 +24,11 @@
*/
class EventController extends AbstractRestController implements ClassResourceInterface
{
/**
* @var DoctrineListRepresentationFactory
*/
private $doctrineListRepresentationFactory;

/**
* @var EventRepository
*/
Expand All @@ -34,20 +40,22 @@ class EventController extends AbstractRestController implements ClassResourceInt
private $mediaRepository;

/**
* @var DoctrineListRepresentationFactory
* @var LocationRepository
*/
private $doctrineListRepresentationFactory;
private $locationRepository;

public function __construct(
DoctrineListRepresentationFactory $doctrineListRepresentationFactory,
EventRepository $repository,
MediaRepositoryInterface $mediaRepository,
DoctrineListRepresentationFactory $doctrineListRepresentationFactory,
LocationRepository $locationRepository,
ViewHandlerInterface $viewHandler,
?TokenStorageInterface $tokenStorage = null
) {
$this->doctrineListRepresentationFactory = $doctrineListRepresentationFactory;
$this->repository = $repository;
$this->mediaRepository = $mediaRepository;
$this->doctrineListRepresentationFactory = $doctrineListRepresentationFactory;
$this->locationRepository = $locationRepository;

parent::__construct($viewHandler, $tokenStorage);
}
Expand Down Expand Up @@ -159,8 +167,10 @@ protected function mapDataToEntity(array $data, Event $entity): void
$entity->setEndDate(new \DateTimeImmutable($endDate));
}

if ($location = $data['location'] ?? null) {
$entity->setLocation($location);
if ($locationId = $data['locationId'] ?? null) {
$entity->setLocation(
$this->locationRepository->findById((int) $locationId)
);
}
}

Expand Down
22 changes: 18 additions & 4 deletions src/DataFixtures/ORM/AppFixtures.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
namespace App\DataFixtures\ORM;

use App\Entity\Event;
use App\Entity\Location;
use Doctrine\Bundle\FixturesBundle\Fixture;
use Doctrine\Common\DataFixtures\OrderedFixtureInterface;
use Doctrine\Persistence\ObjectManager;
Expand Down Expand Up @@ -56,7 +57,8 @@ public function load(ObjectManager $manager): void
*/
private function loadEvents(ObjectManager $manager, array $images): void
{
$repository = $manager->getRepository(Event::class);
$eventRepository = $manager->getRepository(Event::class);
$locationRepository = $manager->getRepository(Location::class);

$data = [
[
Expand Down Expand Up @@ -132,18 +134,30 @@ private function loadEvents(ObjectManager $manager, array $images): void
];

foreach ($data as $item) {
$event = $repository->create(self::LOCALE);
$location = null;
if ($item['location']) {
$location = $locationRepository->create();
$location->setName($item['location']);
$location->setStreet('');
$location->setNumber('');
$location->setCity('');
$location->setCountryCode('');
$location->setPostalCode('');
$locationRepository->save($location);
}

$event = $eventRepository->create(self::LOCALE);

$event->setTitle($item['title']);
$event->setImage($images[$item['image']] ?? null);
$event->setLocation($item['location']);
$event->setLocation($location);
$event->setTeaser($item['teaser']);
$event->setDescription('<p>' . $item['description'] . '</p>');
$event->setStartDate(new \DateTimeImmutable($item['startDate']));
$event->setEndDate(new \DateTimeImmutable($item['endDate']));
$event->setEnabled($item['enabled']);

$repository->save($event);
$eventRepository->save($event);
}
}

Expand Down
21 changes: 17 additions & 4 deletions src/Entity/Event.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,10 @@ class Event
private $endDate;

/**
* @var string|null
* @var Location|null
*
* @ORM\Column(type="string", nullable=true)
* @ORM\ManyToOne(targetEntity="App\Entity\Location")
* @ORM\JoinColumn(onDelete="SET NULL")
*/
private $location;

Expand Down Expand Up @@ -124,18 +125,30 @@ public function setEndDate(?\DateTimeImmutable $endDate): self
return $this;
}

public function getLocation(): ?string
public function getLocation(): ?Location
{
return $this->location;
}

public function setLocation(?string $location): self
public function setLocation(?Location $location): self
{
$this->location = $location;

return $this;
}

/**
* @Serializer\VirtualProperty
*/
public function getLocationId(): ?int
{
if (!$this->location) {
return null;
}

return $this->location->getId();
}

public function getImage(): ?MediaInterface
{
return $this->image;
Expand Down
17 changes: 11 additions & 6 deletions tests/Functional/Controller/Admin/EventControllerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,15 @@
namespace App\Tests\Functional\Controller\Admin;

use App\Tests\Functional\Traits\EventTrait;
use App\Tests\Functional\Traits\LocationTrait;
use Sulu\Bundle\TestBundle\Testing\SuluTestCase;
use Symfony\Bundle\FrameworkBundle\KernelBrowser;
use Symfony\Component\HttpFoundation\Response;

class EventControllerTest extends SuluTestCase
{
use EventTrait;
use LocationTrait;

/**
* @var KernelBrowser
Expand Down Expand Up @@ -64,6 +66,8 @@ public function testGet(): void

public function testPost(): void
{
$location = $this->createLocation('Sulu HQ');

$this->client->request(
'POST',
'/admin/api/events?locale=de',
Expand All @@ -73,7 +77,7 @@ public function testPost(): void
'startDate' => '2019-01-01 12:00',
'endDate' => '2019-01-02 12:00',
'description' => 'Sulu is really awesome',
'location' => 'Dornbirn',
'locationId' => $location->getId(),
]
);

Expand All @@ -90,7 +94,7 @@ public function testPost(): void
$this->assertSame('2019-01-01T12:00:00', $result['startDate']);
$this->assertSame('2019-01-02T12:00:00', $result['endDate']);
$this->assertSame('Sulu is really awesome', $result['description']);
$this->assertSame('Dornbirn', $result['location']);
$this->assertSame($location->getId(), $result['locationId']);

$result = $this->findEventById($result['id'], 'de');

Expand All @@ -103,7 +107,7 @@ public function testPost(): void
$this->assertNotNull($result->getEndDate());
$this->assertSame('2019-01-02T12:00:00', $result->getEndDate()->format('Y-m-d\TH:i:s'));
$this->assertSame('Sulu is really awesome', $result->getDescription());
$this->assertSame('Dornbirn', $result->getLocation());
$this->assertSame($location->getId(), $result->getLocationId());
}

public function testPostNullValues(): void
Expand Down Expand Up @@ -146,6 +150,7 @@ public function testPostNullValues(): void
public function testPut(): void
{
$event = $this->createEvent('Symfony', 'de');
$location = $this->createLocation('Sulu HQ');

$this->client->request(
'PUT',
Expand All @@ -156,7 +161,7 @@ public function testPut(): void
'startDate' => '2019-01-01 12:00',
'endDate' => '2019-01-02 12:00',
'description' => 'Symfony Live is really awesome',
'location' => 'Dornbirn',
'locationId' => $location->getId(),
]
);

Expand All @@ -173,7 +178,7 @@ public function testPut(): void
$this->assertSame('2019-01-01T12:00:00', $result['startDate']);
$this->assertSame('2019-01-02T12:00:00', $result['endDate']);
$this->assertSame('Symfony Live is really awesome', $result['description']);
$this->assertSame('Dornbirn', $result['location']);
$this->assertSame($location->getId(), $result['locationId']);

$result = $this->findEventById($result['id'], 'de');

Expand All @@ -186,7 +191,7 @@ public function testPut(): void
$this->assertNotNull($result->getEndDate());
$this->assertSame('2019-01-02T12:00:00', $result->getEndDate()->format('Y-m-d\TH:i:s'));
$this->assertSame('Symfony Live is really awesome', $result->getDescription());
$this->assertSame('Dornbirn', $result->getLocation());
$this->assertSame($location->getId(), $result->getLocationId());
}

public function testPutNullValues(): void
Expand Down
18 changes: 16 additions & 2 deletions tests/Unit/Entity/EventTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,27 @@

use App\Entity\Event;
use App\Entity\EventTranslation;
use App\Entity\Location;
use PHPUnit\Framework\TestCase;
use Prophecy\Prophecy\ObjectProphecy;
use Sulu\Bundle\MediaBundle\Entity\MediaInterface;

class EventTest extends TestCase
{
/**
* @var Location|ObjectProphecy
*/
private $location;

/**
* @var Event
*/
private $event;

protected function setUp(): void
{
$this->location = $this->prophesize(Location::class);

$this->event = new Event();
$this->event->setLocale('de');
}
Expand Down Expand Up @@ -51,9 +60,14 @@ public function testEndDate(): void

public function testLocation(): void
{
$this->location->getId()->willReturn(42);

$this->assertNull($this->event->getLocation());
$this->assertSame($this->event, $this->event->setLocation('Amsterdam'));
$this->assertSame('Amsterdam', $this->event->getLocation());
$this->assertNull($this->event->getLocationId());
$this->assertSame($this->event, $this->event->setLocation($this->location->reveal()));
$this->assertNotNull($this->event->getLocation());
$this->assertSame($this->location->reveal(), $this->event->getLocation());
$this->assertSame(42, $this->event->getLocationId());
}

public function testImage(): void
Expand Down
3 changes: 2 additions & 1 deletion translations/admin.de.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@
"app.enable_event": "Veranstaltungen aktivieren",
"app.enabled": "Aktiviert",
"app.location": "Standort",
"app.locations": "Standorte"
"app.locations": "Standorte",
"app.location.no_selections": "Kein Standord ausgewählt"
}
3 changes: 2 additions & 1 deletion translations/admin.en.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@
"app.enable_event": "Enable event",
"app.enabled": "Enabled",
"app.location": "Location",
"app.locations": "Locations"
"app.locations": "Locations",
"app.location.no_selections": "No location selected"
}

0 comments on commit 611bf1a

Please sign in to comment.