Giter Site home page Giter Site logo

Ordering and filtering from a CSV about content HOT 4 CLOSED

nuxt avatar nuxt commented on May 10, 2024 2
Ordering and filtering from a CSV

from content.

Comments (4)

benjamincanac avatar benjamincanac commented on May 10, 2024 1

Hi @dolbex,

The sortBy method is used to sort documents in a directory.

When using CSV, the lines are transformed into an array and stored in a body variable inside a single document. Like MongoDB, you cannot sort an array inside of a document.

You could perform a sort with Lodash for example:

const { body } = await $content('deniro').fetch()

return {
    movies: sortBy(body, 'title')
}

from content.

dolbex avatar dolbex commented on May 10, 2024 1

@benjamincanac

Right on, and that's exactly what I did in my little test. I will say though, coming in cold, it's a little confusing seeing the comparisons to mongo, the cool queries on the document directories and then it not working in the following scenarios:

  • CSV with a bunch of rows of data
  • Single JSON file with an array of objects.

I'm not even implying that it should work for those two scenarios - it's just where I got a little head scratchy while working with hit for the first time.

I'm looking to see how I can use this for a client project that is a small CMS. Definitely looking forward to working with it.

from content.

benjamincanac avatar benjamincanac commented on May 10, 2024 1

@dolbex

To detail the comparison with MongoDB, a directory is like a collection and a file is a document inside that collection.

As far as JSON arrays and CSV, the only way would be to flatten them inside the collection. However documents would have the same slug so it wouldn't be possible to fetch them anymore.

from content.

salv0 avatar salv0 commented on May 10, 2024

The sortBy method is used to sort documents in a directory.

When using CSV, the lines are transformed into an array and stored in a body variable inside a single document. Like MongoDB, you cannot sort an array inside of a document.

Even though this issue is already closed, it would be very helpful to add the information to the documentation and save all the future users a possible headache.

from content.

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.