[ 'sub_id' ], // TODO Add indexes that cover these fields to enable sorting by them // 'sub_state' => [ 'sub_state', 'sub_item' ], // 'sub_created' => [ 'sub_created', 'sub_item' ], // 'sub_notified' => [ 'sub_notified', 'sub_item' ], ]; /** @var LinkBatchFactory */ private $linkBatchFactory; /** * @param IContextSource $context * @param LinkRenderer $linkRenderer * @param LinkBatchFactory $linkBatchFactory */ public function __construct( IContextSource $context, LinkRenderer $linkRenderer, LinkBatchFactory $linkBatchFactory ) { parent::__construct( $context, $linkRenderer ); $this->linkBatchFactory = $linkBatchFactory; } /** * @inheritDoc */ public function preprocessResults( $result ) { $lb = $this->linkBatchFactory->newLinkBatch(); foreach ( $result as $row ) { $lb->add( $row->sub_namespace, $row->sub_title ); } $lb->execute(); } /** * @inheritDoc */ protected function getFieldNames() { return [ '_topic' => $this->msg( 'discussiontools-topicsubscription-pager-topic' )->text(), '_page' => $this->msg( 'discussiontools-topicsubscription-pager-page' )->text(), '_unsubscribe' => $this->msg( 'discussiontools-topicsubscription-pager-actions' )->text(), ]; } /** * @inheritDoc */ public function formatValue( $field, $value ) { /** @var stdClass $row */ $row = $this->mCurrentRow; $linkRenderer = $this->getLinkRenderer(); switch ( $field ) { case '_topic': $titleSection = Title::makeTitleSafe( $row->sub_namespace, $row->sub_title, $row->sub_section ); return $linkRenderer->makeLink( $titleSection, $row->sub_section ); case '_page': $title = Title::makeTitleSafe( $row->sub_namespace, $row->sub_title ); return $linkRenderer->makeLink( $title, $title->getPrefixedText() ); case '_unsubscribe': $title = Title::makeTitleSafe( $row->sub_namespace, $row->sub_title ); return (string)new OOUI\ButtonWidget( [ 'label' => $this->msg( 'discussiontools-topicsubscription-pager-unsubscribe-button' )->text(), 'framed' => false, 'flags' => [ 'destructive' ], 'href' => $title->getLinkURL( [ 'action' => 'dtunsubscribe', 'commentname' => $row->sub_item, ] ), ] ); default: throw new MWException( "Unknown field '$field'" ); } } /** * @inheritDoc */ protected function getCellAttrs( $field, $value ) { $attrs = parent::getCellAttrs( $field, $value ); if ( $field === '_unsubscribe' ) { $attrs['style'] = 'text-align: center;'; } return $attrs; } /** * @inheritDoc */ public function getQueryInfo() { return [ 'tables' => [ 'discussiontools_subscription', ], 'fields' => [ 'sub_id', 'sub_item', 'sub_namespace', 'sub_title', 'sub_section', ], 'conds' => [ 'sub_user' => $this->getUser()->getId(), 'sub_state != ' . SubscriptionStore::STATE_UNSUBSCRIBED, ], ]; } /** * @inheritDoc */ public function getDefaultSort() { return '_topic'; } /** * @inheritDoc */ public function getIndexField() { return [ self::INDEX_FIELDS[$this->mSort] ]; } /** * @inheritDoc */ protected function isFieldSortable( $field ) { // Topic is set to the auto-ID field (sub_id), so sorting by it is not very useful return isset( self::INDEX_FIELDS[$field] ) && $field !== '_topic'; } }