threadItemStore = $threadItemStore; $this->threadItemFormatter = $threadItemFormatter; } /** * @inheritDoc */ protected function getFormFields() { return [ 'idorname' => [ 'label-message' => 'discussiontools-findcomment-label-idorname', 'name' => 'idorname', 'type' => 'text', 'default' => $this->par, ], ]; } /** * @inheritDoc */ protected function getDisplayFormat() { return 'ooui'; } /** * @inheritDoc */ protected function alterForm( HTMLForm $form ) { $form->setMethod( 'GET' ); $form->setWrapperLegend( true ); $form->setSubmitTextMsg( 'discussiontools-findcomment-label-search' ); // Remove subpage when submitting $form->setTitle( $this->getPageTitle() ); } private $idOrName; /** * @inheritDoc */ public function onSubmit( array $data ) { $this->idOrName = $data['idorname']; // Always display the form again return false; } /** * @inheritDoc */ public function execute( $par ) { parent::execute( $par ); $out = $this->getOutput(); $results = false; if ( $this->idOrName ) { $byId = $this->threadItemStore->findNewestRevisionsById( $this->idOrName ); if ( $byId ) { $this->displayItems( $byId, 'discussiontools-findcomment-results-id' ); $results = true; } $byName = $this->threadItemStore->findNewestRevisionsByName( $this->idOrName ); if ( $byName ) { $this->displayItems( $byName, 'discussiontools-findcomment-results-name' ); $results = true; } } if ( $results ) { $out->addHTML( Html::rawElement( 'p', [], $this->msg( 'discussiontools-findcomment-gotocomment', $this->idOrName )->parse() ) ); } elseif ( $this->idOrName ) { $out->addHTML( Html::rawElement( 'p', [], $this->msg( 'discussiontools-findcomment-noresults' )->parse() ) ); } } /** * @param array $threadItems * @param string $msgKey */ private function displayItems( array $threadItems, string $msgKey ) { $out = $this->getOutput(); $list = []; foreach ( $threadItems as $item ) { $line = $this->threadItemFormatter->formatLine( $item, $this ); $list[] = Html::rawElement( 'li', [], $line ); } $out->addHTML( Html::rawElement( 'p', [], $this->msg( $msgKey, count( $list ) )->parse() ) ); $out->addHTML( Html::rawElement( 'ul', [], implode( '', $list ) ) ); } /** * @inheritDoc */ public function getDescription() { return $this->msg( 'discussiontools-findcomment-title' )->text(); } }