导入和导出可能仅出现在顶层-带Typescript的CRA React App

时间:2019-07-05 09:50:53

标签: reactjs typescript eslint create-react-app

以前曾有人问过这个问题,但我相信我的情况有所不同。我正在运行配置为Create React App--typescript标志的React应用。

我试图配置eslint,pettitier和husky以运行预编译脚本,然后事情开始出错。

我得到的错误是:'import' and 'export' may only appear at the top level,它与以下组件中的此行相关: export default SignUp

import React from 'react'
import { Link, withRouter } from 'react-router-dom'
import { compose } from 'recompose'

import { withFirebase } from '../Firebase'
import * as ROUTES from '../../constants/routes'

const SignUp = () => (
  <div>
    <h1>SignUp</h1>
    <SignUpForm />
  </div>
)

interface Props {
  firebase: any
}

const Admin = ({ firebase }: Props) => {

const SignUpFormData = ({ firebase, ...props }: Props) => {
  const initialState = {
    username: '',
    email: '',
    password: '',
    repeatPassword: '',
  }

  const stateReducer = (state, update) => ({ ...state, ...update })
  const [state, dispatch] = React.useReducer(stateReducer, initialState)
  const [error, setError] = React.useState({})

  const formIsInvalid =
    state.password !== state.repeatPassword ||
    state.password === '' ||
    state.username === '' ||
    state.email === ''

  const onSubmit = event => {
    event.preventDefault()
    const { username, email, password } = state

    firebase
      .auth()
      .createUserWithEmailAndPassword(email, password)
      .then(res => {
        return firebase
          .database()
          .ref(`users/${res.user.uid}`)
          .set({
            username,
            email,
          })
      })
      .then(() => {
        dispatch(initialState)
        props.history.push(ROUTES.HOME)
      })
      .catch(error => setError(error))
  }

  const handleChange = ({ currentTarget: { name, value } }) => {
    dispatch({ [name]: value })
  }

  return (
    <form onSubmit={onSubmit}>
      <input
        name="username"
        value={state.username}
        onChange={handleChange}
        placeholder="Full name"
      />
      <input
        name="email"
        value={state.email}
        onChange={handleChange}
        placeholder="Email"
      />
      <input
        name="password"
        type="password"
        value={state.password}
        onChange={handleChange}
        placeholder="Password"
      />
      <input
        name="repeatPassword"
        type="password"
        value={state.repeatPassword}
        onChange={handleChange}
        placeholder="Repeat password"
      />
      <button disabled={formIsInvalid} type="submit">
        Sign Up
      </button>
      {error && <p>{error.message}</p>}
    </form>
  )
}

const SignUpLink = () => (
  <p>
    Don't have an account yet? <Link to={ROUTES.SIGN_UP}>Sign Up</Link>
  </p>
)

const SignUpForm = compose(
  withRouter,
  withFirebase,
)(SignUpFormData)

export default SignUp

export { SignUpForm, SignUpLink }

我尝试从package.json删除eslint条目,删除yarn.lock,删除node_modules并重新安装deps,但没有任何乐趣。

有人对从哪里开始调试有什么建议吗?

需要更多信息,请大喊。 非常感谢。

修改 还要注意,我最初是用标准js编写应用程序的auth部分,目的是学习JS,而这些问题是在我将应用程序转换为Typescript文件的过程中发生的,因此我混合了{{ 1}}和.js。我不确定这是否相关。

2 个答案:

答案 0 :(得分:2)

我想我明白了,只是缺少一个大括号。

可能在这里:

const Admin = ({ firebase }: Props) => {

未关闭。

答案 1 :(得分:1)

有多种方法可以将方法从一个文件导出到另一个文件。

您可以直接添加export关键字,如下所示:

export const SignUpLink = () => (
  <p>
    Don't have an account yet? <Link to={ROUTES.SIGN_UP}>Sign Up</Link>
  </p>
)

export const SignUpForm = compose(
  withRouter,
  withFirebase,
)(SignUpFormData)

如果没有,则可以在文件末尾添加module.exports,如下所示:

module.exports = {
 SignUpForm, SignUpLink
}

我建议您看看这个link。肯定有帮助。

如果您使用的是打字稿,请确实添加掉毛规则,这将多次节省生命。