Giter VIP home page Giter VIP logo

Comments (7)

phlegx avatar phlegx commented on June 1, 2024 1

@benhamill no thats it! 😄
Thank you!

This should work (not tested):

User.joins(:projects).advanced_search(name: search, projects: { name: search })
Project.joins(:users).joins(:calendar).advanced_search(name: search, user: { name: search }, calendar: { title: search })

from textacular.

phlegx avatar phlegx commented on June 1, 2024 1

This is not documented in the README! 😢

from textacular.

benhamill avatar benhamill commented on June 1, 2024

If I understand what you're asking, then this test should illustrate what you want? https://github.com/textacular/textacular/blob/master/spec/textacular_spec.rb#L82

If not, then can you point out the difference?

from textacular.

benhamill avatar benhamill commented on June 1, 2024

Glad I could help. The README is a bit unweildy, as it is. We should probably redesign it so it's easier to find stuff. And add stuff like this. But in the mean time, if someone wanted to add a section about this feature, that would be a cool PR to see. 😄

from textacular.

phlegx avatar phlegx commented on June 1, 2024

OK. Is there a way to configure textacular like in gem pg_search? I mean, so that I can configure textacular (accents, tsearch, etc.) in every model like in pg_search (https://github.com/Casecommons/pg_search#searching-using-different-search-features):

class User < ActiveRecord::Base
  include PgSearch
  pg_search_scope :search,
                  against: [:firstname, :lastname], associated_against: {
                    projects: :name,
                  },
                  using: { tsearch: { prefix: true, dictionary: 'en' } },
                  ignoring: :accents
...
  1. :tsearch (Full Text Search)
  2. :prefix (PostgreSQL 8.4 and newer only)
  3. :negation
  4. :trigram (Trigram search)
  5. etc.

from textacular.

benhamill avatar benhamill commented on June 1, 2024

Nope. Textacular doesn't have a configuration feature right now. Some of that can be messed with (look at the website or the tests), but not all. We see those two gems this way: Textacular is dead simple to get up and running if your needs aren't that complex. If you need to do more tweaking or whatever, then you should probably use pg_search.

from textacular.

phlegx avatar phlegx commented on June 1, 2024

For the PR: I will try out some complex search with textacular first. Globalize gem is widely used gem and I want to test it with textacular. 😄 @benhamill congratulations for the gem!

from textacular.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.