Beispiel #1
0
 function it_should_handle_a_title_event(Section $section, ElementEvent $event, Title $title)
 {
     $this->setDocumentSection($section);
     $section->addTitle('Title')->willReturn($title)->shouldBeCalled();
     $event->getElement()->willReturn(ElementEvents::TITLE);
     $event->getContent()->willReturn('Title');
     $event->getAttribute('depth')->willReturn(0);
     $this->onElement($event);
 }
Beispiel #2
0
 public function onElement(ElementEvent $event)
 {
     if (null === $this->section) {
         throw new \RuntimeException("No document section provided");
     }
     /** @var AbstractContainer $current */
     $current = $this->context->get('current', $this->section);
     if ($current === $this->section) {
         $this->dispatcher->dispatch(DocumentEvents::BEFORE_ROOT_ELEMENT, new DocumentConstructionEvent($this->section));
     }
     switch ($event->getElement()) {
         case ElementEvents::TITLE:
             /** @var Section $current */
             $title = $current->addTitle($event->getContent());
             $this->dispatcher->dispatch(DocumentEvents::TITLE_CREATED, new DocumentEvent($this->section, $title, $event));
             break;
         case ElementEvents::PARAGRAPH_START:
             $this->context->setMany(['current' => $current->addTextRun(), 'event' => $event]);
             break;
         case ElementEvents::TABLE_START:
             $this->context->setMany(['current' => $current->addTable(['width' => 5000, 'unit' => 'pct']), 'event' => $event]);
             break;
         case ElementEvents::TABLE_ROW_START:
             /** @var Table $current */
             $this->context->setMany(['current' => $current->addRow(), 'event' => $event]);
             break;
         case ElementEvents::TABLE_CELL_START:
             /** @var Row $current */
             $this->context->setMany(['current' => $current->addCell(5000), 'event' => $event]);
             break;
         case ElementEvents::LIST_END:
             // close the last item in the list
             if ($current instanceof ListItemRun) {
                 $this->dispatcher->dispatch(DocumentEvents::LIST_ITEM_CREATED, new DocumentEvent($this->section, $current, $this->context['event']));
                 $this->context->undo();
             }
             break;
         case ElementEvents::LIST_ITEM_END:
         case ElementEvents::LIST_START:
             break;
         case ElementEvents::LIST_ITEM_START:
             // close the previous list item
             if ($current instanceof ListItemRun) {
                 $this->dispatcher->dispatch(DocumentEvents::LIST_ITEM_CREATED, new DocumentEvent($this->section, $current, $this->context['event']));
                 $this->context->undo();
                 $current = $this->context->get('current', $this->section);
             }
             $is_numbered = $event->getAttribute(ElementAttributes::NUMBERED, false);
             $this->context->setMany(['current' => $current->addListItemRun($event->getAttribute(ElementAttributes::DEPTH), ['listType' => $is_numbered ? ListItem::TYPE_NUMBER : ListItem::TYPE_BULLET_FILLED]), 'event' => $event]);
             break;
         case ElementEvents::TEXT:
             $current->addText($event->getContent(), $event->getAttributes());
             break;
         case ElementEvents::IMAGE:
             $image = $current->addImage($event->getContent());
             $this->dispatcher->dispatch(DocumentEvents::IMAGE_CREATED, new DocumentEvent($this->section, $image, $event));
             break;
         case ElementEvents::LINK:
             $link = $current->addLink($event->getAttribute(ElementAttributes::LINK), $event->getContent());
             $this->dispatcher->dispatch(DocumentEvents::LINK_CREATED, new DocumentEvent($this->section, $link, $event));
             break;
         case ElementEvents::TABLE_END:
             $this->dispatcher->dispatch(DocumentEvents::TABLE_CREATED, new DocumentEvent($this->section, $current, $this->context['event']));
             $this->context->undo();
             break;
         case ElementEvents::PARAGRAPH_END:
             $this->dispatcher->dispatch(DocumentEvents::PARAGRAPH_CREATED, new DocumentEvent($this->section, $current, $this->context['event']));
             $this->context->undo();
             break;
         case ElementEvents::TABLE_ROW_END:
             $this->dispatcher->dispatch(DocumentEvents::TABLE_ROW_CREATED, new DocumentEvent($this->section, $current, $this->context['event']));
             $this->context->undo();
             break;
         case ElementEvents::TABLE_CELL_END:
             $this->dispatcher->dispatch(DocumentEvents::TABLE_CELL_CREATED, new DocumentEvent($this->section, $current, $this->context['event']));
             $this->context->undo();
             break;
         default:
             throw new \RuntimeException("Cannot handle element of type '{$event->getElement()}'");
     }
     $current = $this->context->get('current', $this->section);
     if ($current === $this->section) {
         $this->dispatcher->dispatch(DocumentEvents::AFTER_ROOT_ELEMENT, new DocumentConstructionEvent($this->section));
     }
 }
Beispiel #3
0
 function it_should_change_a_link_to_text(ElementEvent $event)
 {
     $event->getElement()->willReturn(ElementEvents::LINK);
     $event->setElement(ElementEvents::TEXT)->shouldBeCalled();
     $this->onElement($event);
 }