NodeJS React JSX中的动态标记名称

ar7v8xwq  于 2023-02-21  发布在  Node.js
关注(0)|答案(9)|浏览(103)

我正在尝试为HTML标题标记(h1h2h3等)编写一个React组件,其中标题级别通过一个属性指定。
我试着这样做:

<h{this.props.level}>Hello</h{this.props.level}>

我期望的结果是:

<h1>Hello</h1>

但这行不通。
有什么办法可以做到吗?

w6mmgewl

w6mmgewl1#

没有办法就地完成,只需将其放在变量(with first letter capitalised)中:

const CustomTag = `h${this.props.level}`;

<CustomTag>Hello</CustomTag>
6ioyuze2

6ioyuze22#

如果您使用的是TypeScript,则会看到如下错误:
Type '{ children: string; }' has no properties in common with type 'IntrinsicAttributes'.ts(2559)
TypeScript不知道CustomTag是有效的HTML标记名,并引发一个无益的错误。
要修复,请将CustomTag转换为keyof JSX.IntrinsicElements

// var name must start with a capital letter
const CustomTag = `h${this.props.level}` as keyof JSX.IntrinsicElements;

<CustomTag>Hello</CustomTag>
wlwcrazw

wlwcrazw3#

为了完整起见,如果您想使用动态名称,也可以直接调用React.createElement而不使用JSX:

React.createElement(`h${this.props.level}`, null, 'Hello')

这样就不必创建新的变量或组件。
带 prop :

React.createElement(
  `h${this.props.level}`,
  {
    foo: 'bar',
  },
  'Hello'
)

来自文档:
创建并返回给定类型的新React元素。type参数可以是标记名称字符串(如'div''span'),也可以是React组件类型(类或函数)。
使用JSX编写的代码将转换为使用React.createElement()。如果使用JSX,通常不会直接调用React.createElement()。有关详细信息,请参阅React Without JSX

ldxq2e6h

ldxq2e6h4#

所有其他的答案都很好,但我想多加一些,因为这样做:
1.它更安全一些,即使你的类型检查失败了,你仍然返回一个正确的组件。
1.它更具声明性,任何人只要看到这个组件就能知道它返回的是什么。
1.它更灵活,例如,代替“h1”、“h2”,......对于标题的类型,您可以使用一些其他抽象概念“sm”、“lg”或“primary'、”secondary“
标题组件:

import React from 'react';

const elements = {
  h1: 'h1',
  h2: 'h2',
  h3: 'h3',
  h4: 'h4',
  h5: 'h5',
  h6: 'h6',
};

function Heading({ type, children, ...props }) {    
  return React.createElement(
    elements[type] || elements.h1, 
    props, 
    children
  );
}

Heading.defaultProps = {
  type: 'h1',
};

export default Heading;

你可以把它当作

<Heading type="h1">Some Heading</Heading>

或者你可以有一个不同的抽象概念,例如,你可以定义一个大小 prop 如下:

import React from 'react';

const elements = {
  xl: 'h1',
  lg: 'h2',
  rg: 'h3',
  sm: 'h4',
  xs: 'h5',
  xxs: 'h6',
};

function Heading({ size, children }) {
  return React.createElement(
    elements[size] || elements.rg, 
    props, 
    children
  );
}

Heading.defaultProps = {
  size: 'rg',
};

export default Heading;

你可以把它当作

<Heading size="sm">Some Heading</Heading>
ahy6op9u

ahy6op9u5#

在动态标题**(h1,h2...)**的示例中,组件可以如下返回React.createElement(上面提到的Felix)。

const Heading = ({level, children, ...props}) => {
    return React.createElement('h'.concat(level), props , children)
}

对于可组合性,将传递props和child。
See Example

vh0rcniy

vh0rcniy6#

这是我如何为我的项目设置它。
TypographyType.ts

import { HTMLAttributes } from 'react';

export type TagType = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'p' | 'span';

export type HeadingType = HTMLAttributes<HTMLHeadingElement>;
export type ParagraphType = HTMLAttributes<HTMLParagraphElement>;
export type SpanType = HTMLAttributes<HTMLSpanElement>;

export type TypographyProps = (HeadingType | ParagraphType | SpanType) & {
  variant?:
    | 'h1'
    | 'h2'
    | 'h3'
    | 'h4'
    | 'h5'
    | 'h6'
    | 'body1'
    | 'body2'
    | 'subtitle1'
    | 'subtitle2'
    | 'caption'
    | 'overline'
    | 'button';
};

Typography.tsx

import { FC } from 'react';
    import cn from 'classnames';
    import { typography } from '@/theme';
    
    import { TagType, TypographyProps } from './TypographyType';
    
    const headings = ['h1', 'h2', 'h3', 'h4', 'h5', 'h6'];
    const paragraphs = ['body1', 'body2', 'subtitle1', 'subtitle2'];
    const spans = ['button', 'caption', 'overline'];
    
    const Typography: FC<TypographyProps> = ({
      children,
      variant = 'body1',
      className,
      ...props
    }) => {
      const { variants } = typography;
    
      const Tag = cn({
        [`${variant}`]: headings.includes(variant),
        [`p`]: paragraphs.includes(variant),
        [`span`]: spans.includes(variant)
      }) as TagType;
    
      return (
        <Tag
          {...props}
          className={cn(
            {
              [`${variants[variant]}`]: variant,
            },
            className
          )}
        >
          {children}
        </Tag>
      );
    };
    
    export default Typography;
6mw9ycah

6mw9ycah7#

你可以给予这个。我是这样实现的。

import { memo, ReactNode } from "react";
import cx from "classnames";

import classes from "./Title.module.scss";

export interface TitleProps {
  children?: ReactNode;
  className?: string;
  text?: string;
  variant: Sizes;
}

type Sizes = "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
const Title = ({
  className,
  variant = "h1",
  text,
  children,
}: TitleProps): JSX.Element => {
  const Tag = `${variant}` as keyof JSX.IntrinsicElements;
  return (
    <Tag
      className={cx(`${classes.title} ${classes[variant]}`, {
        [`${className}`]: className,
      })}
    >
      {text || children}
    </Tag>
  );
};

export default memo(Title);
m528fe3b

m528fe3b8#

泛化robstarbuck's answer,您可以创建一个完全动态的标签组件,如下所示:

const Tag = ({ tagName, children, ...props }) => (
  React.createElement(tagName, props , children)
)

你可以这样使用:

const App = ({ myTagName = 'h1' }) => {
  return (
    <Tag tagName={myTagName} className="foo">
     Hello Tag!
    </Tag>
  )
}
avwztpqn

avwztpqn9#

//for Typescript
interface ComponentProps {
    containerTag: keyof JSX.IntrinsicElements;
}

export const Component = ({ containerTag: CustomTag }: ComponentProps) => {
    return <CustomTag>Hello</CustomTag>;
}

相关问题