5

我做了一个 gatsby-wordpress-starter 的 git 克隆(https://www.gatsbyjs.org/starters/?c=Wordpress

在不做任何更改的情况下,我添加了姿势:(https://popmotion.io/pose/examples/route-transitions-reach-router/

按照上面网址中的说明,我将 components/layout.js 文件更改为以下内容(略有不同,因为页面路径没有像示例那样硬编码到布局中):

import React from 'react'
import ReactDOM from 'react-dom';
import { Router, Link, Location } from '@reach/router';
import Helmet from 'react-helmet'

import Navbar from '../components/Navbar'
import Page from '../templates/page'
import './all.sass'
import posed, { PoseGroup } from 'react-pose';

const RouteContainer = posed.div({
  enter: { opacity: 1, delay: 300, beforeChildren: 300 },
  exit: { opacity: 0 }
});

const PosedRouter = ({ children }) => (
<Location>
    {({ location }) => (      <PoseGroup>
        <RouteContainer key={location.key}>
          <Router location={location}>{children}</Router>
        </RouteContainer>

      </PoseGroup>

)}
  </Location>
);


const TemplateWrapper = ({children}) => (
<div>

    <Helmet title="Home | Gatsby + Netlify CMS" />
    <Navbar />

        <PosedRouter/>
        {console.log(location)}
</div>
)

export default TemplateWrapper

当我运行它时,我得到: Uncaught TypeError: Cannot read property 'map' of undefined

如果我展开'location'的console.log,那里没有'key'

除此之外,我还尝试安装官方 gatsby 转换插件,但这也无法正常工作。它执行进入转换但不执行退出转换。它确实会触发退出的转换,但直到页面内容更改后才会触发。

4

1 回答 1

0

我会建议另一种方法,这是我一直用来创建页面转换(淡入、淡出和其他)的方法:使用gatsby-plugin-transition-link。我不确定您尝试过哪一个,但这个有效并且具有更清晰和更语义化的方法。

它允许您创建自定义动画或使用一些默认或预定义的动画,您可以在此处查看其演示站点,其中有一些转换的示例。

对于预定义的转换(最简单的方法),您只需要导入 de 组件并像这样使用它:

import AniLink from "gatsby-plugin-transition-link/AniLink"

<AniLink paintDrip to="page-2">
  Go to Page 2
</AniLink>

对于自定义转换,您需要定义 deentry和 exit effect,例如:

<TransitionLink
  exit={{
    length: length,
    trigger: ({ exit, node }) =>
      this.someCustomDefinedAnimation({ exit, node, direction: "out" }),
  }}
  entry={{
    length: 0,
    trigger: ({ exit, node }) =>
      this.someCustomDefinedAnimation({ exit, node, direction: "in" }),
  }}
  {...props}
>
  {props.children}
</TransitionLink>

有关更多信息,请查看他们的文档

于 2020-03-22T08:35:18.727 回答