Add community resource content and associated pages, links, forms, etc

This commit is contained in:
2024-12-18 05:24:20 +00:00
parent 78d149c348
commit fe44642fee
10 changed files with 1376 additions and 0 deletions

View File

@@ -0,0 +1,138 @@
<?php
namespace App\Controller;
use App\Entity\CommunityResource;
use App\Entity\User;
use App\Form\ResourceFormType;
use App\Libs\Breadcrumb;
use App\Libs\NavList;
use Doctrine\ORM\EntityManagerInterface;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Attribute\Route;
use Symfony\Component\Security\Http\Attribute\CurrentUser;
use Symfony\Component\Validator\Constraints\Regex;
class CommunityResourceController extends AbstractController
{
public function __construct(
private readonly EntityManagerInterface $entityManager,
private array $navLinks = []
) {
$this->navLinks = NavList::LIST;
$this->navLinks['community_resources'] = NavList::PRESENT_LINK;
}
#[Route('/resource/list', name: 'app_community_resource')]
public function list(#[CurrentUser()] User $user): Response
{
$rsc = $this->entityManager->getRepository(CommunityResource::class)->findAll();
return $this->render(
'internal/community_resource/list.html.twig',
array_merge(
$this->navLinks,
[
'breadcrumbs' => [
new Breadcrumb('#', 'Community Resources')
],
'resources' => $rsc,
'notifications' => $user->retrieveUnreadNotifications(),
]
)
);
}
#[Route('/resource/map', name: 'app_community_resource_map')]
public function map(): Response
{
return $this->render('internal/community_resource/map.html.twig', [
]);
}
#[Route('/resource/add', name: 'app_community_resource_add')]
public function add(#[CurrentUser()] User $user, Request $request): Response
{
$form = $this->createForm(ResourceFormType::class);
$form->handleRequest($request);
if ($form->isSubmitted() && $form->isValid()) {
$rsc = $form->getData();
$this->entityManager->persist($rsc);
$this->entityManager->flush();
return $this->redirectToRoute('app_community_resource');
}
return $this->render(
'internal/community_resource/add.html.twig',
array_merge(
$this->navLinks,
[
'form' => $form,
'breadcrumbs' => [
new Breadcrumb($this->generateUrl('app_community_resource'), 'List Resources'),
new Breadcrumb('#', 'Add Resource')
],
'notifications' => $user->retrieveUnreadNotifications(),
]
)
);
}
#[Route('/resource/edit/{id}', name: 'app_community_resource_edit')]
public function edit(string $id, #[CurrentUser()] User $user, Request $request): Response
{
$rsc = $this->entityManager->getRepository(CommunityResource::class)->find($id);
$form = $this->createForm(ResourceFormType::class, $rsc);
$form->handleRequest($request);
if ($form->isSubmitted() && $form->isValid()) {
$this->entityManager->flush();
return $this->redirectToRoute('app_community_resource');
}
return $this->render(
'internal/community_resource/edit.html.twig',
array_merge(
$this->navLinks,
[
'form' => $form,
'breadcrumbs' => [
new Breadcrumb($this->generateUrl('app_community_resource'), 'List Resources'),
new Breadcrumb('#', 'Edit Resource')
],
'notifications' => $user->retrieveUnreadNotifications(),
]
)
);
}
#[Route('/resource/download/{id}', name: 'app_community_resource_download')]
public function download(string $id): Response
{
/** @var CommunityResource $rsc */
$rsc = $this->entityManager->getRepository(CommunityResource::class)->find($id);
if (!$rsc) {
$this->addFlash('error', 'Resource not found.');
return $this->redirectToRoute('app_community_resource');
}
return new Response($rsc->generateVCard(), 200, [
'Content-Type' => 'text/vcf',
'Content-Disposition' => 'attachment; filename="' . str_replace(' ', '', $rsc->getName()) . '.vcf"',
'Content-Length' => strlen($rsc->generateVCard()),
'Cache-Control' => 'must-revalidate, post-check=0, pre-check=0',
'Expires' => '0',
'Pragma' => 'public',
'Content-Transfer-Encoding' => 'binary'
]);
}
}

View File

@@ -0,0 +1,626 @@
<?php
namespace App\Entity;
use App\Enums\County;
use App\Enums\State;
use App\Repository\CommunityResourceRepository;
use DateTime;
use DateTimeZone;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Bridge\Doctrine\Types\UuidType;
use Symfony\Component\Uid\Uuid;
#[ORM\Entity(repositoryClass: CommunityResourceRepository::class)]
class CommunityResource
{
#[ORM\Id]
#[ORM\Column(type: UuidType::NAME, unique: true)]
#[ORM\GeneratedValue(strategy: 'CUSTOM')]
#[ORM\CustomIdGenerator(class: 'doctrine.uuid_generator')]
private ?Uuid $id = null;
#[ORM\Column(length: 255)]
private ?string $name = null;
#[ORM\Column(length: 255)]
private ?string $address = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $address2 = null;
#[ORM\Column(length: 255)]
private ?string $city = null;
#[ORM\Column(enumType: State::class)]
private ?State $state = null;
#[ORM\Column]
private ?int $zip = null;
#[ORM\Column(enumType: County::class)]
private ?County $county = null;
#[ORM\Column(length: 15, nullable: true)]
private ?string $phone = null;
#[ORM\Column(length: 64, nullable: true)]
private ?string $email = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $url = null;
#[ORM\Column(type: Types::TIME_MUTABLE, nullable: true)]
private ?\DateTimeInterface $monOpen = null;
#[ORM\Column(type: Types::TIME_MUTABLE, nullable: true)]
private ?\DateTimeInterface $monClose = null;
#[ORM\Column(type: Types::TIME_MUTABLE, nullable: true)]
private ?\DateTimeInterface $tueOpen = null;
#[ORM\Column(type: Types::TIME_MUTABLE, nullable: true)]
private ?\DateTimeInterface $tueClose = null;
#[ORM\Column(type: Types::TIME_MUTABLE, nullable: true)]
private ?\DateTimeInterface $wedOpen = null;
#[ORM\Column(type: Types::TIME_MUTABLE, nullable: true)]
private ?\DateTimeInterface $wedClose = null;
#[ORM\Column(type: Types::TIME_MUTABLE, nullable: true)]
private ?\DateTimeInterface $thuOpen = null;
#[ORM\Column(type: Types::TIME_MUTABLE, nullable: true)]
private ?\DateTimeInterface $thuClose = null;
#[ORM\Column(type: Types::TIME_MUTABLE, nullable: true)]
private ?\DateTimeInterface $friOpen = null;
#[ORM\Column(type: Types::TIME_MUTABLE, nullable: true)]
private ?\DateTimeInterface $friClose = null;
#[ORM\Column(type: Types::TIME_MUTABLE, nullable: true)]
private ?\DateTimeInterface $satOpen = null;
#[ORM\Column(type: Types::TIME_MUTABLE, nullable: true)]
private ?\DateTimeInterface $satClose = null;
#[ORM\Column(type: Types::TIME_MUTABLE, nullable: true)]
private ?\DateTimeInterface $sunOpen = null;
#[ORM\Column(type: Types::TIME_MUTABLE, nullable: true)]
private ?\DateTimeInterface $sunClose = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $notes = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $servicesAvailable = null;
public function __construct(
private DateTime $today
) {
$this->today = new DateTime('now', new DateTimeZone('America/New_York'));
}
public function getId(): ?Uuid
{
return $this->id;
}
public function getName(): ?string
{
return $this->name;
}
public function setName(string $name): static
{
$this->name = $name;
return $this;
}
public function getAddress(): ?string
{
return $this->address;
}
public function setAddress(string $address): static
{
$this->address = $address;
return $this;
}
public function getAddress2(): ?string
{
return $this->address2;
}
public function setAddress2(?string $address2): static
{
$this->address2 = $address2;
return $this;
}
public function getCity(): ?string
{
return $this->city;
}
public function setCity(string $city): static
{
$this->city = $city;
return $this;
}
public function getState(): ?State
{
return $this->state;
}
public function setState(State $state): static
{
$this->state = $state;
return $this;
}
public function getZip(): ?int
{
return $this->zip;
}
public function setZip(int $zip): static
{
$this->zip = $zip;
return $this;
}
public function getCounty(): ?County
{
return $this->county;
}
public function setCounty(County $county): static
{
$this->county = $county;
return $this;
}
public function getFormattedAddress(): ?string
{
return $this->address .
($this->address2 ? ' ' . $this->address2 : '') . '<br/>' .
$this->city . ', ' . $this->state->value . ' ' . $this->zip;
}
public function getPhone(): ?string
{
return $this->phone;
}
public function setPhone(?string $phone): static
{
$this->phone = $phone;
return $this;
}
public function getEmail(): ?string
{
return $this->email;
}
public function setEmail(?string $email): static
{
$this->email = $email;
return $this;
}
public function getUrl(): ?string
{
return $this->url;
}
public function setUrl(?string $url): static
{
$this->url = $url;
return $this;
}
public function urlString(): ?string
{
if (preg_match("/facebook/i", $this->url)) {
return "<a href='$this->url' target='_blank'><i class='fa-brands fa-facebook'></i></a>";
} else {
return "<a href='$this->url' target='_blank'><i class='fa-solid fa-globe'></i></a>";
}
return null;
}
public function getContactCard(): ?string
{
$formattedPhone = ($this->phone ? '(' . substr($this->phone, 0, 3) . ') ' . substr($this->phone, 3, 3) . '-' . substr($this->phone, 6) : '');
return ($this->email ? "<a href='mailto:$this->email'>$this->email</a><br/>" : '') .
($this->phone ? "<a href='tel:$this->phone'>$formattedPhone</a>" : '');
}
public function generateVCard(): string
{
return 'BEGIN:VCARD' .
"\nVERSION:3.0" .
"\nN:$this->name" .
"\nFN:$this->name" .
"\nORG:$this->name" .
"\nADR;TYPE=WORK:;;$this->address;$this->city;{$this->state->value};$this->zip" .
($this->phone ? "\nTEL;TYPE=WORK,VOICE:$this->phone" : null) .
($this->email ? "\nEMAIL;TYPE=WORK,INTERNET:$this->email" : null) .
($this->url ? "\nURL:$this->url" : null) .
"\nNOTE:$this->notes" .
"\nREV:" . date('c') .
"\nEND:VCARD";
}
public function getMonOpen(): ?\DateTimeInterface
{
return $this->monOpen;
}
public function setMonOpen(?\DateTimeInterface $monOpen): static
{
$this->monOpen = $monOpen;
return $this;
}
public function getMonClose(): ?\DateTimeInterface
{
return $this->monClose;
}
public function setMonClose(?\DateTimeInterface $monClose): static
{
$this->monClose = $monClose;
return $this;
}
public function mon(): ?string
{
if (!$this->monOpen || !$this->monClose) {
return 'C';
}
$closeAt = new DateTime($this->today->format('Y-m-d') . ' ' . $this->monClose->format('H:i:s'));
if ($closeAt <= new DateTime()) {
return 'C';
}
return $this->monOpen->format('g:i A') . '-' . $this->monClose->format('g:i A');
}
public function getTueOpen(): ?\DateTimeInterface
{
return $this->tueOpen;
}
public function setTueOpen(?\DateTimeInterface $tueOpen): static
{
$this->tueOpen = $tueOpen;
return $this;
}
public function getTueClose(): ?\DateTimeInterface
{
return $this->tueClose;
}
public function setTueClose(?\DateTimeInterface $tueClose): static
{
$this->tueClose = $tueClose;
return $this;
}
public function tue(): ?string
{
if (!$this->tueOpen || !$this->tueClose) {
return 'C';
}
$closeAt = new DateTime($this->today->format('Y-m-d') . ' ' . $this->tueClose->format('H:i:s'));
if ($closeAt <= new DateTime()) {
return 'C';
}
return $this->tueOpen->format('g:i A') . '-' . $this->tueClose->format('g:i A');
}
public function getWedOpen(): ?\DateTimeInterface
{
return $this->wedOpen;
}
public function setWedOpen(?\DateTimeInterface $wedOpen): static
{
$this->wedOpen = $wedOpen;
return $this;
}
public function getWedClose(): ?\DateTimeInterface
{
return $this->wedClose;
}
public function setWedClose(?\DateTimeInterface $wedClose): static
{
$this->wedClose = $wedClose;
return $this;
}
public function wed(): ?string
{
if (!$this->wedOpen || !$this->wedClose) {
return 'C';
}
$closeAt = new DateTime($this->today->format('Y-m-d') . ' ' . $this->wedClose->format('H:i:s'));
if ($closeAt <= new DateTime()) {
return 'C';
}
return $this->wedOpen->format('g:i A') . '-' . $this->wedClose->format('g:i A');
}
public function getThuOpen(): ?\DateTimeInterface
{
return $this->thuOpen;
}
public function setThuOpen(?\DateTimeInterface $thuOpen): static
{
$this->thuOpen = $thuOpen;
return $this;
}
public function getThuClose(): ?\DateTimeInterface
{
return $this->thuClose;
}
public function setThuClose(?\DateTimeInterface $thuClose): static
{
$this->thuClose = $thuClose;
return $this;
}
public function thu(): ?string
{
if (!$this->thuOpen || !$this->thuClose) {
return 'C';
}
$closeAt = new DateTime($this->today->format('Y-m-d') . ' ' . $this->thuClose->format('H:i:s'));
if ($closeAt <= new DateTime()) {
return 'C';
}
return $this->thuOpen->format('g:i A') . '-' . $this->thuClose->format('g:i A');
}
public function getFriOpen(): ?\DateTimeInterface
{
return $this->friOpen;
}
public function setFriOpen(?\DateTimeInterface $friOpen): static
{
$this->friOpen = $friOpen;
return $this;
}
public function getFriClose(): ?\DateTimeInterface
{
return $this->friClose;
}
public function setFriClose(?\DateTimeInterface $friClose): static
{
$this->friClose = $friClose;
return $this;
}
public function fri(): ?string
{
if (!$this->friOpen || !$this->friClose) {
return 'C';
}
$closeAt = new DateTime($this->today->format('Y-m-d') . ' ' . $this->friClose->format('H:i:s'));
if ($closeAt <= new DateTime()) {
return 'C';
}
return $this->friOpen->format('g:i A') . '-' . $this->friClose->format('g:i A');
}
public function getSatOpen(): ?\DateTimeInterface
{
return $this->satOpen;
}
public function setSatOpen(?\DateTimeInterface $satOpen): static
{
$this->satOpen = $satOpen;
return $this;
}
public function getSatClose(): ?\DateTimeInterface
{
return $this->satClose;
}
public function setSatClose(?\DateTimeInterface $satClose): static
{
$this->satClose = $satClose;
return $this;
}
public function sat(): ?string
{
if (!$this->satOpen || !$this->satClose) {
return 'C';
}
$closeAt = new DateTime($this->today->format('Y-m-d') . ' ' . $this->satClose->format('H:i:s'));
if ($closeAt <= new DateTime()) {
return 'C';
}
return $this->satOpen->format('g:i A') . '-' . $this->satClose->format('g:i A');
}
public function getSunOpen(): ?\DateTimeInterface
{
return $this->sunOpen;
}
public function setSunOpen(?\DateTimeInterface $sunOpen): static
{
$this->sunOpen = $sunOpen;
return $this;
}
public function getSunClose(): ?\DateTimeInterface
{
return $this->sunClose;
}
public function setSunClose(?\DateTimeInterface $sunClose): static
{
$this->sunClose = $sunClose;
return $this;
}
public function sun(): ?string
{
if (!$this->sunOpen || !$this->sunClose) {
return 'C';
}
$closeAt = new DateTime($this->today->format('Y-m-d') . ' ' . $this->sunClose->format('H:i:s'));
if ($closeAt <= new DateTime()) {
return 'C';
}
return $this->sunOpen->format('g:i A') . '-' . $this->sunClose->format('g:i A');
}
public function getHours(): ?string
{
$this->today = new DateTime('now', new DateTimeZone('America/New_York'));
switch ($this->today->format('w')) {
case 0:
return $this->sun();
case 1:
return $this->mon();
case 2:
return $this->tue();
case 3:
return $this->wed();
case 4:
return $this->thu();
case 5:
return $this->fri();
case 6:
return $this->sat();
}
}
public function getFormattedHours(): ?string
{
$mon = 'CLOSED';
$tue = 'CLOSED';
$wed = 'CLOSED';
$thu = 'CLOSED';
$fri = 'CLOSED';
$sat = 'CLOSED';
$sun = 'CLOSED';
if ($this->monOpen && $this->monClose) {
$mon = $this->monOpen->format('g:i A') . '-' . $this->monClose->format('g:i A');
}
if ($this->tueOpen && $this->tueClose) {
$tue = $this->tueOpen->format('g:i A') . '-' . $this->tueClose->format('g:i A');
}
if ($this->wedOpen && $this->wedClose) {
$wed = $this->wedOpen->format('g:i A') . '-' . $this->wedClose->format('g:i A');
}
if ($this->thuOpen && $this->thuClose) {
$thu = $this->thuOpen->format('g:i A') . '-' . $this->thuClose->format('g:i A');
}
if ($this->friOpen && $this->friClose) {
$fri = $this->friOpen->format('g:i A') . '-' . $this->friClose->format('g:i A');
}
if ($this->satOpen && $this->satClose) {
$sat = $this->satOpen->format('g:i A') . '-' . $this->satClose->format('g:i A');
}
if ($this->sunOpen && $this->sunClose) {
$sun = $this->sunOpen->format('g:i A') . '-' . $this->sunClose->format('g:i A');
}
return <<<HTML
<p>Sun: {$sun}</p>
<p>Mon: {$mon}</p>
<p>Tue: {$tue}</p>
<p>Wed: {$wed}</p>
<p>Thu: {$thu}</p>
<p>Fri: {$fri}</p>
<p>Sat: {$sat}</p>
HTML;
}
public function getNotes(): ?string
{
return $this->notes;
}
public function setNotes(?string $notes): static
{
$this->notes = $notes;
return $this;
}
public function getServicesAvailable(): ?string
{
return $this->servicesAvailable;
}
public function setServicesAvailable(?string $servicesAvailable): static
{
$this->servicesAvailable = $servicesAvailable;
return $this;
}
}

58
src/Enums/State.php Normal file
View File

@@ -0,0 +1,58 @@
<?php
namespace App\Enums;
enum State: string
{
case AL = 'AL';
case AK = 'AK';
case AZ = 'AZ';
case AR = 'AR';
case CA = 'CA';
case CO = 'CO';
case CT = 'CT';
case DE = 'DE';
case FL = 'FL';
case GA = 'GA';
case HI = 'HI';
case ID = 'ID';
case IL = 'IL';
case IN = 'IN';
case IA = 'IA';
case KS = 'KS';
case KY = 'KY';
case LA = 'LA';
case ME = 'ME';
case MD = 'MD';
case MA = 'MA';
case MI = 'MI';
case MN = 'MN';
case MS = 'MS';
case MO = 'MO';
case MT = 'MT';
case NE = 'NE';
case NV = 'NV';
case NH = 'NH';
case NJ = 'NJ';
case NM = 'NM';
case NY = 'NY';
case NC = 'NC';
case ND = 'ND';
case OH = 'OH';
case OK = 'OK';
case OR = 'OR';
case PA = 'PA';
case RI = 'RI';
case SC = 'SC';
case SD = 'SD';
case TN = 'TN';
case TX = 'TX';
case UT = 'UT';
case VT = 'VT';
case VA = 'VA';
case WA = 'WA';
case WV = 'WV';
case WI = 'WI';
case WY = 'WY';
case DC = 'DC';
}

View File

@@ -0,0 +1,96 @@
<?php
namespace App\Form;
use App\Entity\CommunityResource;
use App\Enums\County;
use App\Enums\State;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\Extension\Core\Type\EmailType;
use Symfony\Component\Form\Extension\Core\Type\EnumType;
use Symfony\Component\Form\Extension\Core\Type\NumberType;
use Symfony\Component\Form\Extension\Core\Type\TextType;
use Symfony\Component\Form\Extension\Core\Type\TimeType;
use Symfony\Component\Form\Extension\Core\Type\UrlType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;
class ResourceFormType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options): void
{
$builder
->add('name', TextType::class, [
'required' => true,
])
->add('address', TextType::class, [
'required' => true,
])
->add('address2')
->add('city', TextType::class, [
'required' => true,
])
->add('state', EnumType::class, [
'class' => State::class,
])
->add('zip', NumberType::class)
->add('county', EnumType::class, [
'class' => County::class,
])
->add('phone')
->add('email', EmailType::class)
->add('url', UrlType::class)
->add('monOpen', TimeType::class, [
'widget' => 'single_text',
])
->add('monClose', TimeType::class, [
'widget' => 'single_text',
])
->add('tueOpen', TimeType::class, [
'widget' => 'single_text',
])
->add('tueClose', TimeType::class, [
'widget' => 'single_text',
])
->add('wedOpen', TimeType::class, [
'widget' => 'single_text',
])
->add('wedClose', TimeType::class, [
'widget' => 'single_text',
])
->add('thuOpen', TimeType::class, [
'widget' => 'single_text',
])
->add('thuClose', TimeType::class, [
'widget' => 'single_text',
])
->add('friOpen', TimeType::class, [
'widget' => 'single_text',
])
->add('friClose', TimeType::class, [
'widget' => 'single_text',
])
->add('satOpen', TimeType::class, [
'widget' => 'single_text',
])
->add('satClose', TimeType::class, [
'widget' => 'single_text',
])
->add('sunOpen', TimeType::class, [
'widget' => 'single_text',
])
->add('sunClose', TimeType::class, [
'widget' => 'single_text',
])
->add('notes')
->add('servicesAvailable')
;
}
public function configureOptions(OptionsResolver $resolver): void
{
$resolver->setDefaults([
'data_class' => CommunityResource::class,
]);
}
}

View File

@@ -14,6 +14,7 @@ class NavList
'add_user' => 'nav-link text-dark',
'referral_sources' => 'nav-link text-dark',
'case_notes' => 'nav-link text-dark',
'community_resource' => 'nav-link text-dark',
];
public const PRESENT_LINK = 'nav-link text-white active bg-gradient-dark';

View File

@@ -0,0 +1,43 @@
<?php
namespace App\Repository;
use App\Entity\CommunityResource;
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
use Doctrine\Persistence\ManagerRegistry;
/**
* @extends ServiceEntityRepository<CommunityResource>
*/
class CommunityResourceRepository extends ServiceEntityRepository
{
public function __construct(ManagerRegistry $registry)
{
parent::__construct($registry, CommunityResource::class);
}
// /**
// * @return CommunityResource[] Returns an array of CommunityResource objects
// */
// public function findByExampleField($value): array
// {
// return $this->createQueryBuilder('c')
// ->andWhere('c.exampleField = :val')
// ->setParameter('val', $value)
// ->orderBy('c.id', 'ASC')
// ->setMaxResults(10)
// ->getQuery()
// ->getResult()
// ;
// }
// public function findOneBySomeField($value): ?CommunityResource
// {
// return $this->createQueryBuilder('c')
// ->andWhere('c.exampleField = :val')
// ->setParameter('val', $value)
// ->getQuery()
// ->getOneOrNullResult()
// ;
// }
}