admin管理员组

文章数量:1344966

I am setting up a simple Nextjs boilerplate but can't seem to get the styled-ponents to work. In my file Header.tsx:

// Core Module Imports
import Link from "next/link";
import * as React from "react";

// Styled-Component Imports
import styled from "../theme/theme";

class Header extends React.Component {
    render() {
        return (
            <div>
                <Link href="/about">
                   <a>About Us</a>
                </Link>
            </div>
        );
    }
}

const StyledHeader = styled(Header)`
    width: 100vw;
    height: 10vh;
    background: #2a2c39;
    color: #ff0000;
    link-style: none;
`;

export default StyledHeader;

As you can see, I set up a simple Header ponent and then below I used styled() to define my css. In my file Index.tsx:

// Core Module Imports
import * as React from "react";

import StyledHeader from "../ponents/Header";

class Index extends React.Component {
    render() {
        return (
            <div>
                <StyledHeader />
                <p>Test Change</p>
                <div>Example Div</div>
            </div>
        );
    }
}

export default Index;

Obviously I am doing something wrong because it is not working and all I get it an unstyled link. Can anyone point me in the right direction?

I am setting up a simple Nextjs boilerplate but can't seem to get the styled-ponents to work. In my file Header.tsx:

// Core Module Imports
import Link from "next/link";
import * as React from "react";

// Styled-Component Imports
import styled from "../theme/theme";

class Header extends React.Component {
    render() {
        return (
            <div>
                <Link href="/about">
                   <a>About Us</a>
                </Link>
            </div>
        );
    }
}

const StyledHeader = styled(Header)`
    width: 100vw;
    height: 10vh;
    background: #2a2c39;
    color: #ff0000;
    link-style: none;
`;

export default StyledHeader;

As you can see, I set up a simple Header ponent and then below I used styled() to define my css. In my file Index.tsx:

// Core Module Imports
import * as React from "react";

import StyledHeader from "../ponents/Header";

class Index extends React.Component {
    render() {
        return (
            <div>
                <StyledHeader />
                <p>Test Change</p>
                <div>Example Div</div>
            </div>
        );
    }
}

export default Index;

Obviously I am doing something wrong because it is not working and all I get it an unstyled link. Can anyone point me in the right direction?

Share Improve this question asked Mar 14, 2018 at 23:01 L. NormanL. Norman 4831 gold badge8 silver badges21 bronze badges
Add a ment  | 

4 Answers 4

Reset to default 3

For anyone that sees this and has a similar issue, check out this: https://github./zeit/next.js/issues/1942#issuement-313925454

Fixed my issue.

Hey guys. At version 3.0.1-beta.13+, you could set passHref to Link (as a boolean property) to expose its href to styled-ponents (or any other library that wraps its tag).

const StyledLink = styled.a`
  color: red;
  background: blue;
`

export default ({ href, name }) => (
  <Link prefetch href={href} passHref>
    <StyledLink>{name}</StyledLink>
  </Link>
)

There are solutions in the GitHub issue for people using next-routes.

You need to pass this.props.className into the root element of Header so the styled wrapper can pass a generated class name in:

class Header extends React.Component {
    render() {
        return (
            <div className={this.props.className}>
                <Link href="/about">
                   <a>About Us</a>
                </Link>
            </div>
        );
    }
}

TL;DR:

Create a _document.js file in your /pages folder and paste this in. It should work immediately

本文标签: javascriptStyledcomponents with components in NextjsStack Overflow