【问题标题】:Add custom Netlify CMS widget to Gatsby starter Yellowcake将自定义 Netlify CMS 小部件添加到 Gatsby 入门 Yellowcake
【发布时间】:2021-08-20 03:36:37
【问题描述】:

我正在使用 Gatsby 启动器“YellowCake”,其中包含 Netlify CMS。

我正在尝试将另一个自定义小部件添加到初学者联系页面。我想在“电话”下添加“传真”。我已将其添加到 config.yml 文件中,并将传真号码添加到我的contact.md 文件中,并将其添加到我的 ContactPage.js 模板中。但它没有显示在页面上。

我不确定我错过了什么或做错了什么。希望得到任何帮助。

Config.yml

collections: # A list of collections the CMS should be able to edit
  - name: 'pages'
    label: 'Page'
    delete: false # Prevent users from deleting documents in this collection
    editor:
      preview: true
    files:
      - file: 'content/pages/contact.md'
        label: 'Contact Page'
        name: 'contact-page'
        fields:
          - {
              label: Template,
              name: template,
              widget: hidden,
              default: ContactPage,
            }
          - { label: Slug, name: slug, widget: hidden, default: 'contact' }
          - { label: Title, name: title, widget: string }
          - {
              label: Featured Image,
              name: featuredImage,
              widget: image,
              options:
                { media_library: { config: { imageShrink: 2600x2600 } } },
            }
          - { label: Subtitle, name: subtitle, widget: markdown }
          - { label: Body, name: body, widget: markdown }
          - { label: Address, name: address, widget: text }
          - { label: Phone, name: phone, widget: string }
          - { label: Fax, name: fax, widget: string }
          - { label: Email Address, name: email, widget: string }

contact.md

template: ContactPage
slug: contact
title: Contact Page
featuredImage: https://ucarecdn.com/e22a858a-b420-47af-99f6-ed54b6860333/
subtitle: This is the contact page subtitle.
address: '404 James St, Burleigh Heads QLD 4220'
phone: 0987 123 456
fax: 333-333-3333
email: example@example.com

ContactPage.js(模板)

import React from 'react'
import { MapPin, Smartphone, Mail, Printer } from 'react-feather'
import { graphql } from 'gatsby'

import PageHeader from '../components/PageHeader'
import FormSimpleAjax from '../components/FormSimpleAjax'
import Content from '../components/Content'
import GoogleMap from '../components/GoogleMap'
import Layout from '../components/Layout'
import './ContactPage.css'

// Export Template for use in CMS preview
export const ContactPageTemplate = ({
  body,
  title,
  subtitle,
  featuredImage,
  address,
  phone,
  fax,
  email,
  locations
}) => (
  <main className="Contact">
    <PageHeader
      title={title}
      subtitle={subtitle}
      backgroundImage={featuredImage}
    />
    <section className="section Contact--Section1">
      <div className="container Contact--Section1--Container">
        <div>
          <Content source={body} />
          <div className="Contact--Details">
            {address && (
              <a
                className="Contact--Details--Item"
                href={`https://www.google.com/maps/search/${encodeURI(
                  address
                )}`}
                target="_blank"
                rel="noopener noreferrer"
              >
                <MapPin /> {address}
              </a>
            )}
            {phone && (
              <a className="Contact--Details--Item" href={`tel:${phone}`}>
                <Smartphone /> {phone}
              </a>
            )}
            {fax && (
              <a className="Contact--Details--Item" href={`fax:${fax}`}>
                <Printer /> {fax}
              </a>
            )}
            {email && (
              <a className="Contact--Details--Item" href={`mailto:${email}`}>
                <Mail /> {email}
              </a>
            )}
          </div>
        </div>

        <div>
          <FormSimpleAjax name="Simple Form Ajax" />
        </div>
      </div>
    </section>

    <GoogleMap locations={locations} />
  </main>
)

const ContactPage = ({ data: { page } }) => (
  <Layout
    meta={page.frontmatter.meta || false}
    title={page.frontmatter.title || false}
  >
    <ContactPageTemplate {...page.frontmatter} body={page.html} />
  </Layout>
)

export default ContactPage

export const pageQuery = graphql`
  query ContactPage($id: String!) {
    page: markdownRemark(id: { eq: $id }) {
      ...Meta
      html
      frontmatter {
        title
        template
        subtitle
        featuredImage
        address
        phone
        email
        locations {
          mapLink
          lat
          lng
        }
      }
    }
  }
`

【问题讨论】:

    标签: reactjs graphql gatsby netlify netlify-cms


    【解决方案1】:

    您没有在 GraphQL 查询中获取 fax 字段:

    export const pageQuery = graphql`
      query ContactPage($id: String!) {
        page: markdownRemark(id: { eq: $id }) {
          ...Meta
          html
          frontmatter {
            title
            template
            subtitle
            featuredImage
            address
            phone
            email
            fax # <-- here
            locations {
              mapLink
              lat
              lng
            }
          }
        }
      }
    `
    

    由于在 JSX 中 phonefax 的解构和渲染,其余代码应该单独工作。

    “无法在类型‘MarkdownRemarkFrontmatter’上查询字段‘传真’”

    在运行gatsby clean 和在localhost:8000/___graphql 操场上测试您的查询。奇怪的是,您有一个名为 slughidden 字段(具有 contact 值)但您没有使用它。在您的情况下,我会使用页面查询,例如:

    export const contactData = graphql`
        query getContactData {
            page: allMarkdownRemark(
                filter: { frontmatter: { slug: { eq: "contact" }}}) {
                edges {
                    node {
                     ...Meta
                     html
                     frontmatter {
                       title
                       template
                       subtitle
                       featuredImage
                       address
                       phone
                       fax
                       email
                       locations {
                          mapLink
                          lat
                          lng
                         }
                      }
                   }
                }
            }
        }
    `;
    

    然后是这样的:

    const ContactPage = ({ data: { page: {
          edges: [{
            node: {
              html,
              frontmatter
            }
          }]
        }}}) => (
      <Layout
        meta={frontmatter.meta || false}
        title={frontmatter.title || false}
      >
        <ContactPageTemplate {...frontmatter} body={html} />
      </Layout>
    )
    

    【讨论】:

    • 我想到了这一点,除了当我在此处或查询中的任何位置添加传真时,它会破坏页面,并且我收到编译失败消息,并且在类型 'MarkdownRemarkFrontmatter 上收到“无法查询字段'传真' '"
    • 运行gatsby clean
    • 这是另一个我不确定但现在已确认的问题。运行 'gatsby clean' 会删除 config.yml 文件,并且我添加的传真小部件会消失。
    • 这根本不可能。 gatsby clean 删除公共和缓存文件夹。 config.yml 位于(或应该位于)静态中。你能分享一个 repo 看看发生了什么吗?
    • 好的,知道了。 README.md 是错误的。您需要编辑的文件是github.com/thriveweb/yellowcake/tree/master/… 这里,一旦您编译代码(开发或构建),就会生成公用文件夹(就像其余的代码和页面一样)。出现的错误是因为您的faxfield 在原始源(static/admin/config.yml)中不存在,因此无法生成节点。请在我提供的config.yml (static/admin/config.yml) 中编辑并添加fax 字段,然后使用我发布的第一个查询再次尝试
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2014-04-08
    • 2015-11-19
    • 1970-01-01
    • 1970-01-01
    • 2020-04-01
    • 1970-01-01
    • 2020-12-26
    相关资源
    最近更新 更多