スタイルのコンポーネントでTypeScriptエラーを取得する
Type '{子供:文字列; 'Type' IntraSicattributes '。(2559)と共通のプロパティはありません。
import React from 'react'
import { NotificationSuccess, NotificationError } from '../../styles'
interface IProps {
error?: boolean;
message: string;
}
export const Notification = (props: IProps) => {
const Note = () => props.error ? NotificationError : NotificationSuccess;
// Error happens on <Note>
return (<Note>{props.message}</Note>);
}
_
そしてスタイル:
import styled from 'styled-components';
export const NotificationDiv = styled.div`
z-index: 11;
position: fixed;
left: 50%;
margin-left: -160px;
top: 1rem;
padding: 1.5rem;
width: 320px;
height: auto;
text-align: center;
color: ${props => props.theme.offWhite};
border-radius: 5px;
cursor: pointer;
`
export const NotificationSuccess = styled(NotificationDiv)`
background: ${props => props.theme.green};
`
export const NotificationError = styled(NotificationDiv)`
background: ${props => props.theme.red};
`
_
私はこれがここに答えて、私のpackage.jsonを次のようにアップグレードしましたが、それでも助けはありませんでした。
このラップされたスタイルのコンポーネントエラー "に"と共通のプロパティがないのは です。
"styled-components": "4.0.3",
"@types/styled-components": "4.0.3",
"babel-plugin-styled-components": "^1.10.0",
_
フルパッケージ。ジソン
{
"name": "",
"version": "2.0.0",
"main": "index.js",
"scripts": {
"dev": "next -p 7777",
"build": "next build",
"start": "next start -p 8000",
"test": "NODE_ENV=test jest --watch --no-cache",
"test-win": "SET NODE_ENV=test&& jest --watch"
},
"license": "ISC",
"dependencies": {
"@zeit/next-sass": "^1.0.1",
"@zeit/next-TypeScript": "^1.1.1",
"axios": "^0.18.0",
"decko": "^1.2.0",
"downshift": "^2.2.3",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"graphql": "^14.0.2",
"graphql-tag": "^2.9.2",
"graphql-tools": "^4.0.0",
"lodash.debounce": "^4.0.8",
"next": "^7.0.2",
"next-routes": "^1.4.2",
"node-sass": "^4.11.0",
"nprogress": "^0.2.0",
"prop-types": "^15.6.2",
"ramda": "^0.26.1",
"react": "^16.7.0",
"react-adopt": "^0.6.0",
"react-dom": "^16.7.0",
"react-redux": "^6.0.0",
"react-transition-group": "^2.5.0",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"styled-components": "4.0.3",
"tslint": "^5.12.1",
"tslint-react": "^3.6.0",
"TypeScript": "^3.2.4",
"waait": "^1.0.2"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/preset-TypeScript": "^7.1.0",
"@types/enzyme": "^3.1.15",
"@types/jest": "^23.3.13",
"@types/next": "^7.0.6",
"@types/ramda": "^0.25.49",
"@types/react": "^16.7.20",
"@types/react-dom": "^16.0.11",
"@types/react-redux": "^7.0.1",
"@types/styled-components": "4.0.3",
"@types/zeit__next-TypeScript": "^0.1.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.1.0",
"babel-plugin-sass-vars": "^0.2.1",
"babel-plugin-styled-components": "^1.10.0",
"casual": "^1.5.19",
"enzyme-to-json": "^3.3.4",
"jest": "^24.1.0"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/jest.setup.js",
"testPathIgnorePatterns": [
"<rootDir>/.next/",
"<rootDir>/node_modules/"
],
"transform": {
".*": "babel-jest",
"^.+\\.js?$": "babel-jest",
"^.+\\.ts?$": "babel-jest",
"^.+\\.tsx?$": "babel-jest"
},
"moduleFileExtensions": [
"js",
"json",
"ts",
"tsx"
],
"modulePaths": [
"<rootDir>/components/",
"<rootDir>/pages/",
"<rootDir>/shared/"
]
}
}
_
<Note>{props.message}</Note>
はNote({ children: props.message })
と同じであるため、TypeScriptは関数Note
が引数を取り、関数型が一致しないことを不満です。スタイルのコンポーネントとは関係ありません。
( IntrinsicAttributes
機能コンポーネントを作成するときに拡張するデフォルトのインターフェイスです。そのIDK XDのようなもの)
私の最善の推測は、あなたが書いたものの代わりにconst Note = props.error ? NotificationError : NotificationSuccess;
を望みます。
PS。私は間違っているかもしれませんが、私は主にこれが事実です。
コンポーネントを作成した場合は明確にするために上記で述べられているようにOK
<DeliverNow>
</DeliverNow>
_
自動的にそれに小道具を渡し、いつ宣言する場合
const DeliverNow = () => {}
_
TypeScriptは、彼らがcuzと一致しないことを実際には、Delivernowがいくつかの小道具に取り込みます
それで、実際の意味では、それはそうであることを意味しています
const DeliverNow = (props:any) => {}
_
このエラーが発生しました:
Type '{子供:文字列; 'Type' Intrixattributes '.tsと共通のプロパティはありません。
私のReactアプリケーションで動的に追加されたタグが発生します。 TypesScriptやスタイルのコンポーネントとは関係がある素晴らしいソリューションが見つかりました。
React.createElement
を介してノードを作成するのに十分です
例えば:
const Title: React.SFC<TitleProps> = ({ tag, styled, children }) =>
React.createElement(tag, { ...styled }, children);
const TitleStyled = styled(Title)`Your styled`