Merge pull request #4646 from tomhughes/turbo-pagination
Use turbo for pagination
This commit is contained in:
commit
8dc5de1a0f
20 changed files with 179 additions and 140 deletions
|
@ -21,6 +21,11 @@ class UserBlocksController < ApplicationController
|
|||
user_blocks = UserBlock.all
|
||||
|
||||
@user_blocks, @newer_user_blocks_id, @older_user_blocks_id = get_page_items(user_blocks, :includes => [:user, :creator, :revoker])
|
||||
|
||||
@show_user_name = true
|
||||
@show_creator_name = true
|
||||
|
||||
render :partial => "blocks" if turbo_frame_request_id == "pagination"
|
||||
end
|
||||
|
||||
def show
|
||||
|
@ -125,6 +130,11 @@ class UserBlocksController < ApplicationController
|
|||
user_blocks = UserBlock.where(:user => @user)
|
||||
|
||||
@user_blocks, @newer_user_blocks_id, @older_user_blocks_id = get_page_items(user_blocks, :includes => [:user, :creator, :revoker])
|
||||
|
||||
@show_user_name = false
|
||||
@show_creator_name = true
|
||||
|
||||
render :partial => "blocks" if turbo_frame_request_id == "pagination"
|
||||
end
|
||||
|
||||
##
|
||||
|
@ -135,6 +145,11 @@ class UserBlocksController < ApplicationController
|
|||
user_blocks = UserBlock.where(:creator => @user)
|
||||
|
||||
@user_blocks, @newer_user_blocks_id, @older_user_blocks_id = get_page_items(user_blocks, :includes => [:user, :creator, :revoker])
|
||||
|
||||
@show_user_name = true
|
||||
@show_creator_name = false
|
||||
|
||||
render :partial => "blocks" if turbo_frame_request_id == "pagination"
|
||||
end
|
||||
|
||||
private
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue