Giter VIP home page Giter VIP logo

Comments (9)

travis-r6s avatar travis-r6s commented on September 27, 2024

Hello @cartoonmadrasah

Do you possibly have a repo I could look at? If not, would you be able to show me the output of a query using that type? I.e.

query {
  predubai (id: something) {
    Id
    Emirate
    ...etc
  }
}

Those search fields look as if they may be custom object types, rather than strings/IDs etc?

from gridsome-plugin-flexsearch.

cartoonmadrasah avatar cartoonmadrasah commented on September 27, 2024

Image 4

from gridsome-plugin-flexsearch.

travis-r6s avatar travis-r6s commented on September 27, 2024

Yes, as I thought, those fields are actually objects - in your server file could you do emirate: Item.emirate['_text'] for each field, so when you query emirate it will be a string? Then flexsearch should be able to index it.

from gridsome-plugin-flexsearch.

cartoonmadrasah avatar cartoonmadrasah commented on September 27, 2024

I tried with the ID field. That did not work. I also tested it with one field using the method you suggested (company_name). It also did not work.

I followed the instructions as they were given but now I have basic question maybe that do I need to also import the library in the main.js or just by calling it on the gridsome.config.js sufficient.

Kindly give me your email id so that I may add you to the repository.

from gridsome-plugin-flexsearch.

travis-r6s avatar travis-r6s commented on September 27, 2024

@cartoonmadrasah please use [email protected]

The plugin will automatically configure the client for you, so you should just be able to use this.$search in your code (or import the included mixin).

from gridsome-plugin-flexsearch.

cartoonmadrasah avatar cartoonmadrasah commented on September 27, 2024

I have added you to the repo.

from gridsome-plugin-flexsearch.

travis-r6s avatar travis-r6s commented on September 27, 2024

@cartoonmadrasah Just had a look at that repo, and it all seems to work?
image

searching for the ID won't work, as you need at least 3 characters to start searching... if (searchTerm.length < 3) return [] but searching for the company name should work.
Results won't show up in Search.vue, as you are trying to display result.title - try changing this to result.company_name for example.

from gridsome-plugin-flexsearch.

travis-r6s avatar travis-r6s commented on September 27, 2024

P.S. You could also easily loop through the object keys, converting them to snake case, and setting _text as the direct value:

const { snakeCase } = require('snake-case')
for (const item of predata.Listings.Listing) {
    const doc = Object.entries(item).reduce((obj, [key, value]) => ({ [ snakeCase(key) ]: value._text, ...obj }), {})
    contentType.addNode(doc)
}

from gridsome-plugin-flexsearch.

cartoonmadrasah avatar cartoonmadrasah commented on September 27, 2024

Oh wow, thank you so much.

from gridsome-plugin-flexsearch.

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.