-
-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Does it make sens to implement a new query to simplify listening all content? #5525
Comments
Hi @513ry, BTW, If it's important to your use-case, I'm not sure your class is considering permissions/visibility for pages/chapters. |
Since there is already this nice tool which solves the problem of sorting book contents for a tree, maybe the better solution would be to use this tool to implement similar thing for bookshelves. What do you think about this? |
We don't have a need in the core codebase for that right now so it's not something I'd look to add. |
Should I then restrict the implementation to the controller for the tree view partial? Do you intend thought to merge #616 with the core codebase? A lot of people seem to want this. |
Depends on your customization I guess. If this was officially done, I'd still have a builder class which is then used in that controller method, although some refactoring of the home route handling might be warranted upon further growth.
No current intent, but I'm not specifically against the idea, just needs some consideration/evaluation to confirm the idea before going to any kind of implementation stage. |
API Endpoint or Feature
Hey, I made a hack for drawing a tree of content to easily traverse the wiki from the home page. My colleague noticed issue #616 and thought it would be good to work on a more generic and cleaner version of this code to merge with upstream.
I was thinking of expanding the view switch button with a "Tree View"/"Table View" option to integrate this feature and maybe adding a setting to display it in the sidebar as we currently have it. Anyway, I’ve been trying to follow your convention of having this view button for both
Book
andBookshelf
views.To simplify the view code, I wrote an additional query that returns either an expanded version of a
Book
Collection
with a contents member or aCollection
ofBookshelve
s expanded by a books member. Here is my initial implementation with some limitations:Any criticism is welcome since I just picked up PHP this week. I think the comments explain some of the limitations of this code so far.
However, I noticed that this will probably create a lot of overhead, given that you already list shelves and books accordingly when checking homepage options in the home controller:
I wonder now - should I do this work of associating contents with books and books with shelves inside my partial element code, or do you see a use for this query to reduce redundancy elsewhere? In the latter case, it would make sense to replace the home controller’s
$books
and$shelves
with objects returned by this query.Use-Case
Implementing solution to #616.
Additional context
No response
The text was updated successfully, but these errors were encountered: