Giter Club home page Giter Club logo

Comments (6)

lucaong avatar lucaong commented on May 19, 2024 3

Hi @mquinn-leverege , this issue is resolved by this commit, now the ID field is consistent with the other fields, and its extraction can be customized with extractField.

This change is already released as part of version v2.5.0. This should solve your case, so I will close this issue, but feel free to comment if not.

from minisearch.

lucaong avatar lucaong commented on May 19, 2024 1

Hi @noraj ,
Yes, you can use extractField to implement a “virtual field”:

const miniSearch = new MiniSearch({
  fields: [],
  extractField: (document, fieldName) => {
    if (fieldName === 'id') {
      return `#{document.field1}-#{document.field2}`
    } else {
      return document[fieldName]
    }
  }
})

In the example above, the ID field is composed by joining two other fields.

from minisearch.

noraj avatar noraj commented on May 19, 2024 1

PS: It could be nice to create a expo gallery in the documentation or github wiki to link projects using minisearch so people could look at real-life/production examples.

from minisearch.

lucaong avatar lucaong commented on May 19, 2024

@mquinn-leverege thanks for reporting this. Yes, I agree that it would be nice to be able to tread the id field like the other fields via extractField. I'll look into this, it might impact a few places.

from minisearch.

noraj avatar noraj commented on May 19, 2024

@lucaong I have a project where I have no uniq field but I could have a uniq string by combining three fields.

Could I do something like

idField: ['field1', 'field2', 'field3']

or

function join(...strings) {
  return strings.join('')
}
...
idField: join('field1', 'field2', 'field3')

or create a virtual field with extractField and pass it to idField?

from minisearch.

noraj avatar noraj commented on May 19, 2024

Thanks it works well

const miniSearch = new MiniSearch({
  fields: [],
  extractField: (document, fieldName) => {
    if (fieldName === 'id') {
      return `${document.field1}-${document.field2}`
    } else {
      return document[fieldName]
    }
  }
})

from minisearch.

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.