样式组件插值函数中的“缺少函数返回类型”错误

Kri*_*alo 5 typescript reactjs eslint styled-components

用于从 props 中提取主题数据的插值函数会产生“缺少函数返回类型”。eslint 错误。我已经使用声明合并来输入我的主题数据,如typescript 文档中所述。合并似乎工作正常,因为props.theme是根据我的声明输入的。

该问题可以通过为插值函数指定返回类型来解决

${(props): string => props.theme.colors.secondary}

但我认为这不是必要的,因为我已经props.theme.colors.secondary在类型声明文件中指定了类型。此外,在 vs code 错误弹出窗口中,似乎返回类型是已知的 ( function(...): string),但仍然给出错误。

GitHub 中的代码。

// App.tsx
import React from 'react';
import styled, { ThemeProvider } from 'styled-components';
import theme from 'theme/default';

const StyledApp = styled.div`
  // The error is caused by this interpolator function     
  background-color: ${(props) => props.theme.colors.secondary};
`;
Run Code Online (Sandbox Code Playgroud)
// styled.d.ts
import 'styled-components';

// Extend the default theme type
declare module 'styled-components' {
  export interface DefaultTheme {
    colors: {
      primary: string;
      primaryLight: string;
      primaryLighter: string;
      primaryDark: string;
      secondary: string;
      secondaryLight: string;
      secondaryDark: string;
      font: string;
    };
  }
}
Run Code Online (Sandbox Code Playgroud)
// theme/default.tsx
import { DefaultTheme } from 'styled-components';

const theme: DefaultTheme = {
  colors: {
    primary: 'hsl(0, 98%, 33%)',
    primaryLight: 'hsl(359, 98%, 41%)',
    primaryLighter: 'hsl(14, 54%, 52%)',
    primaryDark: 'hsl(2, 90%, 20%)',
    secondary: 'hsl(260, 4%, 31%)',
    secondaryLight: 'hsl(35, 13%, 45%)',
    secondaryDark: 'hsl(0, 14%, 1%)',
    font: 'hsl(317, 7%, 79%)'
  }
};

export default theme;
Run Code Online (Sandbox Code Playgroud)
// .eslintrc.js
module.exports = {
  env: {
    browser: true
  },
  parser: '@typescript-eslint/parser',
  extends: [
    'airbnb',
    'airbnb/hooks',
    'plugin:@typescript-eslint/recommended',
    'prettier/@typescript-eslint',
    'plugin:prettier/recommended'
  ],
  parserOptions: {
    ecmaVersion: 2020,
    sourceType: 'module'
  },
  rules: {
    'react/jsx-filename-extension': [1, { extensions: ['.jsx', '.tsx'] }],
    'react/prop-types': 'off'
  },
  settings: {
    'import/extensions': ['.js', '.jsx', '.ts', '.tsx'],
    'import/parsers': {
      '@typescript-eslint/parser': ['.ts', '.tsx']
    },
    'import/resolver': {
      node: {
        paths: 'src',
        extensions: ['.js', '.jsx', '.ts', '.tsx']
      }
    }
  }
};
Run Code Online (Sandbox Code Playgroud)
// tsconfig.json
{
  "compilerOptions": {
    "target": "es5",
    "lib": ["dom", "dom.iterable", "esnext"],
    "allowJs": true,
    "skipLibCheck": true,
    "esModuleInterop": true,
    "allowSyntheticDefaultImports": true,
    "strict": true,
    "forceConsistentCasingInFileNames": true,
    "module": "esnext",
    "moduleResolution": "node",
    "resolveJsonModule": true,
    "isolatedModules": true,
    "noEmit": true,
    "jsx": "react",
    "baseUrl": "src"
  },
  "include": ["src"]
}
Run Code Online (Sandbox Code Playgroud)
    // deps
    "@types/react": "16.9.2",
    "@types/react-dom": "16.9.0",
    "@types/styled-components": "^4.1.18",
    "overmind": "^19.1.1",
    "react": "^16.9.0",
    "react-dom": "^16.9.0",
    "react-scripts": "3.1.1",
    "styled-components": "^4.3.2",
    "typescript": "3.6.2"
    "@typescript-eslint/eslint-plugin": "^2.1.0",
    "@typescript-eslint/parser": "^2.1.0",
    "babel-core": "^7.0.0-bridge.0",
    "eslint": "^6.1.0",
    "eslint-config-airbnb": "^18.0.1",
    "eslint-config-prettier": "^6.2.0",
    "eslint-plugin-import": "^2.18.2",
    "eslint-plugin-jsx-a11y": "^6.2.3",
    "eslint-plugin-prettier": "^3.1.0",
    "eslint-plugin-react": "^7.14.3",
    "eslint-plugin-react-hooks": "^1.7.0",
    "prettier": "^1.18.2"
Run Code Online (Sandbox Code Playgroud)

vs代码中的错误弹出窗口 vs代码中的错误弹出窗口

Kri*_*alo 1

我能够通过将以下规则添加到我的.eslintrc.js

'@typescript-eslint/explicit-function-return-type': [
      'error',
      {
        allowExpressions: true
      }
]
Run Code Online (Sandbox Code Playgroud)

它允许函数表达式没有显式定义的返回类型,这消除了样式组件的插值器函数中缺少返回类型的错误,因为它们是函数表达式。

此解决方案只是关闭错误,而不是直接修复它。

  • 并不是真正解决问题的办法。我更喜欢使用显式形式 `${(props): string => props.theme.colors. secondary}`,即使这样它也不是最佳的。 (2认同)