Rails 5 filterrific gem












0















I follow guide from http://filterrific.clearcove.ca. I try to add into my app filterrifc gem for sort, but its doesnt work. I dont understand why. I will be grateful for any help.
My model:



  filterrific(
default_filter_params: { sorted_by: 'created_at_desc' },
available_filters: [
:sorted_by,
:with_title,
:with_spec,
:with_created_at_gte
]
)

belongs_to :user

scope :sorted_by, lambda { |sort_option|
direction = (sort_option =~ /desc$/) ? 'desc' : 'asc'
case sort_option.to_s
when /^created_at_/
order("post.created_at #{ direction }")
when /^title_/
order("LOWER(post.title) #{ direction }")
when /^spec/
order("LOWER(post.spec) #{ direction }")
else
raise(ArgumentError, "Invalid sort option: #{ sort_option.inspect }")
end
}

scope :with_title, lambda { |titles|
where(:title => [*titles])
}
scope :with_spec, lambda { |specs|
where(:spec => [*specs])
}
scope :with_created_at, lambda { |ref_date|
where('post.created_at => ?', Data.strptime(ref_date, "%m/%d/%Y"))
}

def self.options_for_sorted_by
[
['title (a-z)', 'title_asc'],
['title (z-a)', 'title_desc'],
['Created date (newest first)', 'created_at_desc'],
['Created date (oldest first)', 'created_at_asc'],
['spec (0-9)', 'spec_asc'],
['spec (9-0)', 'spec_desc'],
]


My controller
def show
@user = User.find(params[:id])



    @filterrific = initialize_filterrific(
@user.posts,
params[:filterrific],
select_options: {
sorted_by: @user.posts.options_for_sorted_by },
persistence_id: 'shared_key',
default_filter_params: {},
available_filters: [:sorted_by, :with_title, :with_spec, :with_created_at],
sanitize_params: false
) or return
@posts = @filterrific.find.page(params[:page])
# Respond to html for initial page load and to js for AJAX filter updates.
respond_to do |format|
format.html
format.js
end

rescue ActiveRecord::RecordNotFound => e
puts "Had to reset filterrific params: #{ e.message }"
redirect_to(reset_filterrific_url(format: :html)) and return
end

And my view table:

<div id="filterrific_results">
<table class="table table-striped table-bordered table-list">
<thead>
<tr>
<th><%= filterrific_sorting_link(@filterrific, :title) %></th>
<th><%= filterrific_sorting_link(@filterrific, :spec) %></th>
<th>Tags</th>
<th><%= filterrific_sorting_link(@filterrific, :created_at) %></th>
</tr>
</thead>

<tbody id="myTable">
<% @user.posts.each do |post| %>
<tr>
<td><%= post.title %></td>
<td><%= post.spec %></td>
<td><% post.tag_list.each do |tag| %>
<a class="badge badge-info"><%= tag %></a>
<% end %>
</td>
...
</tbody>
</table>
</div>


At the terminal all works right, without any mistakes or exceptions










share|improve this question





























    0















    I follow guide from http://filterrific.clearcove.ca. I try to add into my app filterrifc gem for sort, but its doesnt work. I dont understand why. I will be grateful for any help.
    My model:



      filterrific(
    default_filter_params: { sorted_by: 'created_at_desc' },
    available_filters: [
    :sorted_by,
    :with_title,
    :with_spec,
    :with_created_at_gte
    ]
    )

    belongs_to :user

    scope :sorted_by, lambda { |sort_option|
    direction = (sort_option =~ /desc$/) ? 'desc' : 'asc'
    case sort_option.to_s
    when /^created_at_/
    order("post.created_at #{ direction }")
    when /^title_/
    order("LOWER(post.title) #{ direction }")
    when /^spec/
    order("LOWER(post.spec) #{ direction }")
    else
    raise(ArgumentError, "Invalid sort option: #{ sort_option.inspect }")
    end
    }

    scope :with_title, lambda { |titles|
    where(:title => [*titles])
    }
    scope :with_spec, lambda { |specs|
    where(:spec => [*specs])
    }
    scope :with_created_at, lambda { |ref_date|
    where('post.created_at => ?', Data.strptime(ref_date, "%m/%d/%Y"))
    }

    def self.options_for_sorted_by
    [
    ['title (a-z)', 'title_asc'],
    ['title (z-a)', 'title_desc'],
    ['Created date (newest first)', 'created_at_desc'],
    ['Created date (oldest first)', 'created_at_asc'],
    ['spec (0-9)', 'spec_asc'],
    ['spec (9-0)', 'spec_desc'],
    ]


    My controller
    def show
    @user = User.find(params[:id])



        @filterrific = initialize_filterrific(
    @user.posts,
    params[:filterrific],
    select_options: {
    sorted_by: @user.posts.options_for_sorted_by },
    persistence_id: 'shared_key',
    default_filter_params: {},
    available_filters: [:sorted_by, :with_title, :with_spec, :with_created_at],
    sanitize_params: false
    ) or return
    @posts = @filterrific.find.page(params[:page])
    # Respond to html for initial page load and to js for AJAX filter updates.
    respond_to do |format|
    format.html
    format.js
    end

    rescue ActiveRecord::RecordNotFound => e
    puts "Had to reset filterrific params: #{ e.message }"
    redirect_to(reset_filterrific_url(format: :html)) and return
    end

    And my view table:

    <div id="filterrific_results">
    <table class="table table-striped table-bordered table-list">
    <thead>
    <tr>
    <th><%= filterrific_sorting_link(@filterrific, :title) %></th>
    <th><%= filterrific_sorting_link(@filterrific, :spec) %></th>
    <th>Tags</th>
    <th><%= filterrific_sorting_link(@filterrific, :created_at) %></th>
    </tr>
    </thead>

    <tbody id="myTable">
    <% @user.posts.each do |post| %>
    <tr>
    <td><%= post.title %></td>
    <td><%= post.spec %></td>
    <td><% post.tag_list.each do |tag| %>
    <a class="badge badge-info"><%= tag %></a>
    <% end %>
    </td>
    ...
    </tbody>
    </table>
    </div>


    At the terminal all works right, without any mistakes or exceptions










    share|improve this question



























      0












      0








      0








      I follow guide from http://filterrific.clearcove.ca. I try to add into my app filterrifc gem for sort, but its doesnt work. I dont understand why. I will be grateful for any help.
      My model:



        filterrific(
      default_filter_params: { sorted_by: 'created_at_desc' },
      available_filters: [
      :sorted_by,
      :with_title,
      :with_spec,
      :with_created_at_gte
      ]
      )

      belongs_to :user

      scope :sorted_by, lambda { |sort_option|
      direction = (sort_option =~ /desc$/) ? 'desc' : 'asc'
      case sort_option.to_s
      when /^created_at_/
      order("post.created_at #{ direction }")
      when /^title_/
      order("LOWER(post.title) #{ direction }")
      when /^spec/
      order("LOWER(post.spec) #{ direction }")
      else
      raise(ArgumentError, "Invalid sort option: #{ sort_option.inspect }")
      end
      }

      scope :with_title, lambda { |titles|
      where(:title => [*titles])
      }
      scope :with_spec, lambda { |specs|
      where(:spec => [*specs])
      }
      scope :with_created_at, lambda { |ref_date|
      where('post.created_at => ?', Data.strptime(ref_date, "%m/%d/%Y"))
      }

      def self.options_for_sorted_by
      [
      ['title (a-z)', 'title_asc'],
      ['title (z-a)', 'title_desc'],
      ['Created date (newest first)', 'created_at_desc'],
      ['Created date (oldest first)', 'created_at_asc'],
      ['spec (0-9)', 'spec_asc'],
      ['spec (9-0)', 'spec_desc'],
      ]


      My controller
      def show
      @user = User.find(params[:id])



          @filterrific = initialize_filterrific(
      @user.posts,
      params[:filterrific],
      select_options: {
      sorted_by: @user.posts.options_for_sorted_by },
      persistence_id: 'shared_key',
      default_filter_params: {},
      available_filters: [:sorted_by, :with_title, :with_spec, :with_created_at],
      sanitize_params: false
      ) or return
      @posts = @filterrific.find.page(params[:page])
      # Respond to html for initial page load and to js for AJAX filter updates.
      respond_to do |format|
      format.html
      format.js
      end

      rescue ActiveRecord::RecordNotFound => e
      puts "Had to reset filterrific params: #{ e.message }"
      redirect_to(reset_filterrific_url(format: :html)) and return
      end

      And my view table:

      <div id="filterrific_results">
      <table class="table table-striped table-bordered table-list">
      <thead>
      <tr>
      <th><%= filterrific_sorting_link(@filterrific, :title) %></th>
      <th><%= filterrific_sorting_link(@filterrific, :spec) %></th>
      <th>Tags</th>
      <th><%= filterrific_sorting_link(@filterrific, :created_at) %></th>
      </tr>
      </thead>

      <tbody id="myTable">
      <% @user.posts.each do |post| %>
      <tr>
      <td><%= post.title %></td>
      <td><%= post.spec %></td>
      <td><% post.tag_list.each do |tag| %>
      <a class="badge badge-info"><%= tag %></a>
      <% end %>
      </td>
      ...
      </tbody>
      </table>
      </div>


      At the terminal all works right, without any mistakes or exceptions










      share|improve this question
















      I follow guide from http://filterrific.clearcove.ca. I try to add into my app filterrifc gem for sort, but its doesnt work. I dont understand why. I will be grateful for any help.
      My model:



        filterrific(
      default_filter_params: { sorted_by: 'created_at_desc' },
      available_filters: [
      :sorted_by,
      :with_title,
      :with_spec,
      :with_created_at_gte
      ]
      )

      belongs_to :user

      scope :sorted_by, lambda { |sort_option|
      direction = (sort_option =~ /desc$/) ? 'desc' : 'asc'
      case sort_option.to_s
      when /^created_at_/
      order("post.created_at #{ direction }")
      when /^title_/
      order("LOWER(post.title) #{ direction }")
      when /^spec/
      order("LOWER(post.spec) #{ direction }")
      else
      raise(ArgumentError, "Invalid sort option: #{ sort_option.inspect }")
      end
      }

      scope :with_title, lambda { |titles|
      where(:title => [*titles])
      }
      scope :with_spec, lambda { |specs|
      where(:spec => [*specs])
      }
      scope :with_created_at, lambda { |ref_date|
      where('post.created_at => ?', Data.strptime(ref_date, "%m/%d/%Y"))
      }

      def self.options_for_sorted_by
      [
      ['title (a-z)', 'title_asc'],
      ['title (z-a)', 'title_desc'],
      ['Created date (newest first)', 'created_at_desc'],
      ['Created date (oldest first)', 'created_at_asc'],
      ['spec (0-9)', 'spec_asc'],
      ['spec (9-0)', 'spec_desc'],
      ]


      My controller
      def show
      @user = User.find(params[:id])



          @filterrific = initialize_filterrific(
      @user.posts,
      params[:filterrific],
      select_options: {
      sorted_by: @user.posts.options_for_sorted_by },
      persistence_id: 'shared_key',
      default_filter_params: {},
      available_filters: [:sorted_by, :with_title, :with_spec, :with_created_at],
      sanitize_params: false
      ) or return
      @posts = @filterrific.find.page(params[:page])
      # Respond to html for initial page load and to js for AJAX filter updates.
      respond_to do |format|
      format.html
      format.js
      end

      rescue ActiveRecord::RecordNotFound => e
      puts "Had to reset filterrific params: #{ e.message }"
      redirect_to(reset_filterrific_url(format: :html)) and return
      end

      And my view table:

      <div id="filterrific_results">
      <table class="table table-striped table-bordered table-list">
      <thead>
      <tr>
      <th><%= filterrific_sorting_link(@filterrific, :title) %></th>
      <th><%= filterrific_sorting_link(@filterrific, :spec) %></th>
      <th>Tags</th>
      <th><%= filterrific_sorting_link(@filterrific, :created_at) %></th>
      </tr>
      </thead>

      <tbody id="myTable">
      <% @user.posts.each do |post| %>
      <tr>
      <td><%= post.title %></td>
      <td><%= post.spec %></td>
      <td><% post.tag_list.each do |tag| %>
      <a class="badge badge-info"><%= tag %></a>
      <% end %>
      </td>
      ...
      </tbody>
      </table>
      </div>


      At the terminal all works right, without any mistakes or exceptions







      ruby-on-rails-5






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 24 '18 at 14:52







      Oleg Sviridenko

















      asked Nov 24 '18 at 14:44









      Oleg SviridenkoOleg Sviridenko

      34




      34
























          0






          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53459297%2frails-5-filterrific-gem%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53459297%2frails-5-filterrific-gem%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          404 Error Contact Form 7 ajax form submitting

          How to know if a Active Directory user can login interactively

          TypeError: fit_transform() missing 1 required positional argument: 'X'