Search: Updated popular items query, load parent book for chapters/pages

Primarily intended to show parent book for chapters when moving/copying
pages, since the default parent selector interfaces, which used the
entity-selector search endpoint, would run this popular query when no
term was present as a default backup.

For #4264
This commit is contained in:
Dan Brown 2023-06-10 15:08:07 +01:00
parent 777027bc48
commit af0b4fa851
No known key found for this signature in database
GPG Key ID: 46D9F943C24A2EF9
3 changed files with 33 additions and 6 deletions

View File

@ -3,6 +3,10 @@
namespace BookStack\Entities\Queries; namespace BookStack\Entities\Queries;
use BookStack\Activity\Models\View; use BookStack\Activity\Models\View;
use BookStack\Entities\Models\BookChild;
use BookStack\Entities\Models\Entity;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\DB; use Illuminate\Support\Facades\DB;
class Popular extends EntityQuery class Popular extends EntityQuery
@ -19,11 +23,24 @@ class Popular extends EntityQuery
$query->whereIn('viewable_type', $this->entityProvider()->getMorphClasses($filterModels)); $query->whereIn('viewable_type', $this->entityProvider()->getMorphClasses($filterModels));
} }
return $query->with('viewable') $entities = $query->with('viewable')
->skip($count * ($page - 1)) ->skip($count * ($page - 1))
->take($count) ->take($count)
->get() ->get()
->pluck('viewable') ->pluck('viewable')
->filter(); ->filter();
$this->loadBooksForChildren($entities);
return $entities;
}
protected function loadBooksForChildren(Collection $entities)
{
$bookChildren = $entities->filter(fn(Entity $entity) => $entity instanceof BookChild);
$eloquent = (new \Illuminate\Database\Eloquent\Collection($bookChildren));
$eloquent->load(['book' => function (BelongsTo $query) {
$query->scopes('visible');
}]);
} }
} }

View File

@ -9,11 +9,9 @@ use Illuminate\Http\Request;
class SearchController extends Controller class SearchController extends Controller
{ {
protected SearchRunner $searchRunner; public function __construct(
protected SearchRunner $searchRunner
public function __construct(SearchRunner $searchRunner) ) {
{
$this->searchRunner = $searchRunner;
} }
/** /**

View File

@ -5,6 +5,7 @@ namespace Tests\Entity;
use BookStack\Activity\Models\Tag; use BookStack\Activity\Models\Tag;
use BookStack\Entities\Models\Book; use BookStack\Entities\Models\Book;
use BookStack\Entities\Models\Bookshelf; use BookStack\Entities\Models\Bookshelf;
use BookStack\Entities\Models\Chapter;
use Tests\TestCase; use Tests\TestCase;
class EntitySearchTest extends TestCase class EntitySearchTest extends TestCase
@ -225,6 +226,17 @@ class EntitySearchTest extends TestCase
$chapterSearch->assertSee($chapter->book->getShortName(42)); $chapterSearch->assertSee($chapter->book->getShortName(42));
} }
public function test_entity_selector_shows_breadcrumbs_on_default_view()
{
$page = $this->entities->pageWithinChapter();
$this->asEditor()->get($page->chapter->getUrl());
$resp = $this->asEditor()->get('/search/entity-selector?types=book,chapter&permission=page-create');
$html = $this->withHtml($resp);
$html->assertElementContains('.chapter.entity-list-item', $page->chapter->name);
$html->assertElementContains('.chapter.entity-list-item .entity-item-snippet', $page->book->getShortName(42));
}
public function test_entity_selector_search_reflects_items_without_permission() public function test_entity_selector_search_reflects_items_without_permission()
{ {
$page = $this->entities->page(); $page = $this->entities->page();