Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
simple_controller
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open-source
simple_controller
Commits
9919f153
Commit
9919f153
authored
Feb 14, 2023
by
liyijie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: order process after ransack
parent
2c5b34f3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
7 deletions
+4
-7
base_controller.rb
lib/simple_controller/base_controller.rb
+4
-7
No files found.
lib/simple_controller/base_controller.rb
View file @
9919f153
...
...
@@ -296,12 +296,7 @@ class SimpleController::BaseController < ::InheritedResources::Base
end
def
collection_of_association_chain
_association_chain
=
after_of_association_chain
if
_association_chain
.
respond_to?
(
:order
)
&&
!
self
.
class
.
instance_variable_get
(
:@order_off
)
_association_chain
.
order
(
id: :desc
)
else
_association_chain
end
after_of_association_chain
end
# 执行统计和sub_q
...
...
@@ -318,7 +313,9 @@ class SimpleController::BaseController < ::InheritedResources::Base
end
association
=
ransack_association
(
association
,
params
[
:sub_q
])
unless
self
.
class
.
instance_variable_get
(
:@ransack_off
)
||
params
[
:sub_q
].
blank?
# 增加默认id排序
association
=
association
.
order
(
id: :desc
)
if
association
.
respond_to?
(
:order
)
&&
!
self
.
class
.
instance_variable_get
(
:@order_off
)
# distinct处理
association
=
association
.
distinct
unless
self
.
class
.
instance_variable_get
(
:@distinct_off
)
||
!
association
.
respond_to?
(
:distinct
)
||
!
active_record?
||
params
.
dig
(
:q
,
:jorder
).
present?
||
params
[
:distinct_off
].
present?
association
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment