Giter VIP home page Giter VIP logo

Comments (7)

shansmith01 avatar shansmith01 commented on June 5, 2024 1

Thanks! I feel stupid. I guess that's the feeling before you learn something 👍

from gatsby-source-datocms.

matteoscurati avatar matteoscurati commented on June 5, 2024

Hi! Are you using Gatsby v2?

This works for me:

import React from 'react'
import { Link } from 'gatsby'
import { graphql } from 'gatsby'

import Layout from '../components/layout'

const IndexPage = ( { data } ) => (
  <Layout>
    {
      data.house.gallery.map(photo => (
        console.log(photo.fluid.src)
      ))
    }
  </Layout>
)

export default IndexPage

export const query = graphql`
  query House($slug: String!) {
    house: datoCmsHouse(slug: { eq: $slug }) {
      slug
      id
      gallery {
        id
        fluid(maxWidth: 800) {
          src
          ...GatsbyDatoCmsFluid
        }
      }
    }
  }
`

from gatsby-source-datocms.

shansmith01 avatar shansmith01 commented on June 5, 2024

Thanks for getting back to me. still on the versions before V2

Updated with your code more or less and still getting a typeerror

Here is my code https://github.com/shansmith01/garden-burees-new/blob/master/src/templates/accommodation.js

Could it be that this is from a template file and creating dynamic pages? (here is my gatsby-node https://github.com/shansmith01/garden-burees-new/blob/master/gatsby-node.js)

from gatsby-source-datocms.

shansmith01 avatar shansmith01 commented on June 5, 2024

More on this. If i take your code above (tweaked for my enviro) and put it on a regular page (ie not dynamically generated) as below, everything works. So the problem seems to be related to my code using createPages

import React from 'react'
import Link from 'gatsby-link'
import styled from "styled-components"
import Img from 'gatsby-image'
import graphql from 'graphql'
import MainContent from "../components/mainContent"
import Jumbo from "../components/jumbo"


const FacilitiesPage = ({ data }) => (
  <div>
Facilites here

{
  data.datoCmsAccomodationPage.imageGallery.map(photo => (
    console.log(photo.fluid.src)
  ))
}
  </div>
)

export default FacilitiesPage


export const query = graphql`
  query AccomsPageQuery {
    datoCmsAccomodationPage {
          mainHeading
          mainText
          subHeading
          imageGallery {
            id
            fluid(maxWidth: 800) {
              src
              ...GatsbyDatoCmsFluid
            }
          }
    }
  }
`

from gatsby-source-datocms.

shansmith01 avatar shansmith01 commented on June 5, 2024

And further to this I have now isolated the problem to this

            {
        data.datoCmsAccomodationPage.imageGallery.map(photo => ( //This outputs correctly to the console
          console.log(photo.fluid.src)
        ))
      }

        
        {data.datoCmsAccomodationPage.imageGallery.map(({ photo }, index) => //Something wrong with this code
          <Col key={index} md="6" sm="12" className="mb-4">
          <Img fluid={photo.fluid.src} />
          </Col>
          )}

from gatsby-source-datocms.

stefanoverna avatar stefanoverna commented on June 5, 2024

from gatsby-source-datocms.

stefanoverna avatar stefanoverna commented on June 5, 2024

:)

from gatsby-source-datocms.

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.