GithubHelp home page GithubHelp logo

Comments (2)

dayhaysoos avatar dayhaysoos commented on June 29, 2024

Hey @jeremytenjo!

previewData is returned when previewMode is enabled, however, I thought I'd give you a heads up. We need to update this repo because the current prismicio/next package that's installed is not the latest. You should be using prismicio/next version 0.1.0.

Once you update that, you should change this getStaticProps function to look like this:

export async function getStaticProps({ previewData }) {
  const client = createClient({ previewData });

  let blogHome = null;
  try {
    blogHome = await client.getSingle('blog-home');
  } catch {
    // If we reach this line, it means a Blog Home document was not created
    // yet. We don't need to do anything here. We will render a component on
    // the page with a helpful setup message.
  }

  const posts = await client.getAllByType('post', {
    orderings: [{ field: 'my.post.date', direction: 'desc' }],
  });

  return {
    props: {
      blogHome,
      posts,
    },
  };
}

All I did was destruct previewData from context in the params: getStaticProps({ previewData }) and pass that to the createClient function like this: createClient({ previewData })

Should work after that with no additional changes. Let me know if that works out for you!

from nextjs-starter-prismic-blog.

jeremytenjo avatar jeremytenjo commented on June 29, 2024

That worked, thanks @dayhaysoos

from nextjs-starter-prismic-blog.

Related Issues (11)

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.