V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
huijiewei
V2EX  ›  React

React 组件样式的实现方式哪种更好? 大家都发表一下意见么

  •  
  •   huijiewei ·
    huijiewei · 6 天前 · 1427 次点击
    function ToggleButtonRemastered({ isEnabled, children }) {
      return (
        <button
          className={clsx(
            isEnabled && "scale-110",
            "transition-transform duration-200 w-max text-xl"
          )}
        >
        {children}
      </button>
      )
    }
    

    function ToggleButtonClassicEdition({ isEnabled, children }) {
      return (
        <button
          data-enabled={isEnabled}
          className="data-[enabled=truel:scale-110 transition-transform duration-200 w-max text-xl"
        >
          {children}
        </button>
      )
    }
    
    第 1 条附言  ·  6 天前
    两种各有好处吧

    1. 更直观更符合 JS 概念
    2. headless ui 使用的方式比较多,利用 tw-merge 来实现更加灵活的样式,调用的时候可以覆盖 data-attr 的样式
    16 条回复    2025-01-23 15:32:07 +08:00
    liuw666
        1
    liuw666  
       6 天前 via iPhone
    简单易懂,降低项目复杂度
    FrankFang128
        2
    FrankFang128  
       6 天前
    用 tailwind 就行了,别折腾
    ltaoo1o
        3
    ltaoo1o  
       6 天前
    建议第一种,我之前也是第二种写法,后面要在小程序实现相同的页面,代码改动比较多。
    donaldturinglee
        4
    donaldturinglee  
       6 天前
    做项目用 clsx 或 classnames 这种样式拼接方便维护, 自己项目的话, 你喜欢哪种用哪种
    sjhhjx0122
        5
    sjhhjx0122  
       6 天前
    第一种,简单直观是最好的
    angrylid
        6
    angrylid  
       6 天前
    第一种好吧,而且 className 类似的库不是应该可以这样写吗
    clsx(
    "transition-transform duration-200 w-max text-xl",
    { "scale-110": isEnabled } ,
    )
    importmeta
        7
    importmeta  
       6 天前
    antd 和 mui 都是 clsx 这种形式
    houshuu
        8
    houshuu  
       6 天前
    站第一种
    superedlimited
        9
    superedlimited  
       6 天前 via iPhone
    nextjs 教程里使用的是 clsx ,相信 vercel🤖
    rayi
        10
    rayi  
       6 天前
    如果你的样式是使用 tailwind 这种方式添加的,那么选择第一种方式。
    如果你是使用 css-modules 或者其他手动编码 css 的话,那么选择第二种方式。
    yjw06282
        11
    yjw06282  
       6 天前
    第二种又难读, 又难看, 不知道什么有啥存在意义
    yjw06282
        12
    yjw06282  
       6 天前
    要是觉得 css 太长,. 可以提上去

    ```
    function ToggleButtonRemastered({ isEnabled, children }) {

    const css = isEnabled ? 'scale-110' : 'transition-transform duration-200 w-max text-xl'
    return (
    <button className={css}>
    {children}
    </button>
    )
    }
    ```
    okakuyang
        13
    okakuyang  
       6 天前
    说句不好听的,我看不懂.... 我都是 className={ bool ? "xxx" : "xx" },楼主这样写有什么好处吗?
    okakuyang
        14
    okakuyang  
       6 天前
    或者
    className={`xxx xx ${ bool ? "xx" : "" } ${ bool2 ? "xx": "" } `}
    karott7
        15
    karott7  
       6 天前
    第一种,可读性好太多
    qwas
        16
    qwas  
       5 天前
    之前还有的争,现在毫无疑问 tailwind
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   1739 人在线   最高记录 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 21ms · UTC 06:12 · PVG 14:12 · LAX 22:12 · JFK 01:12
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.