Skip to content

css 助手

css 助手 - hono/css - 是 Hono 内置的 CSS in JS(X)。

你可以用 JavaScript 模板字符串 css 在 JSX 中编写 CSS。css 的返回值将是类名,它会被设置为 class 属性的值。<Style /> 组件随后将包含 CSS 的内容。

导入

ts
import { Hono } from 'hono'
import { css, cx, keyframes, Style } from 'hono/css'

css Experimental

你可以在 css 模板字符串中编写 CSS。在本例中,它使用 headerClass 作为 class 属性的值。不要忘记添加 <Style />,因为它包含了 CSS 内容。

ts
app.get('/', (c) => {
  const headerClass = css`
    background-color: orange;
    color: white;
    padding: 1rem;
  `
  return c.html(
    <html>
      <head>
        <Style />
      </head>
      <body>
        <h1 class={headerClass}>Hello!</h1>
      </body>
    </html>
  )
})

你可以使用嵌套选择器 & 来为伪类(pseudo-classes)如 :hover 设置样式:

ts
const buttonClass = css`
  background-color: #fff;
  &:hover {
    background-color: red;
  }
`

扩展

你可以通过嵌入类名来扩展 CSS 定义。

tsx
const baseClass = css`
  color: white;
  background-color: blue;
`

const header1Class = css`
  ${baseClass}
  font-size: 3rem;
`

const header2Class = css`
  ${baseClass}
  font-size: 2rem;
`

此外,${baseClass} {} 的语法支持嵌套类。

tsx
const headerClass = css`
  color: white;
  background-color: blue;
`
const containerClass = css`
  ${headerClass} {
    h1 {
      font-size: 3rem;
    }
  }
`
return c.render(
  <div class={containerClass}>
    <header class={headerClass}>
      <h1>Hello!</h1>
    </header>
  </div>
)

全局样式

一个名为 :-hono-global 的伪选择器允许你定义全局样式。

tsx
const globalClass = css`
  :-hono-global {
    html {
      font-family: Arial, Helvetica, sans-serif;
    }
  }
`

return c.render(
  <div class={globalClass}>
    <h1>Hello!</h1>
    <p>Today is a good day.</p>
  </div>
)

或者你可以在 <Style /> 组件中使用 css 模板字符串来编写 CSS。

tsx
export const renderer = jsxRenderer(({ children, title }) => {
  return (
    <html>
      <head>
        <Style>{css`
          html {
            font-family: Arial, Helvetica, sans-serif;
          }
        `}</Style>
        <title>{title}</title>
      </head>
      <body>
        <div>{children}</div>
      </body>
    </html>
  )
})

keyframes Experimental

你可以使用 keyframes 来编写 @keyframes 的内容。在本例中,fadeInAnimation 将会是动画的名称。

tsx
const fadeInAnimation = keyframes`
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
`
const headerClass = css`
  animation-name: ${fadeInAnimation};
  animation-duration: 2s;
`
const Header = () => <a class={headerClass}>Hello!</a>

cx Experimental

cx 可以组合两个类名。

tsx
const buttonClass = css`
  border-radius: 10px;
`
const primaryClass = css`
  background: orange;
`
const Button = () => (
  <a class={cx(buttonClass, primaryClass)}>Click!</a>
)

它也可以组合简单的字符串。

tsx
const Header = () => <a class={cx('h1', primaryClass)}>Hi</a>

结合 Secure Headers 中间件使用

如果你想结合 Secure Headers 中间件使用 css 助手,你可以为 <Style nonce={c.get('secureHeadersNonce')} /> 添加 nonce 属性 ,以避免由 css 助手引起的 Content-Security-Policy 问题。

tsx
import { secureHeaders, NONCE } from 'hono/secure-headers'

app.get(
  '*',
  secureHeaders({
    contentSecurityPolicy: {
      // 将预定义的 nonce 值设置为 `styleSrc`:
      styleSrc: [NONCE],
    },
  })
)

app.get('/', (c) => {
  const headerClass = css`
    background-color: orange;
    color: white;
    padding: 1rem;
  `
  return c.html(
    <html>
      <head>
        {/* 在 css 助手的 `style` 和 `script` 元素上设置 `nonce` 属性 */}
        <Style nonce={c.get('secureHeadersNonce')} />
      </head>
      <body>
        <h1 class={headerClass}>Hello!</h1>
      </body>
    </html>
  )
})

提示

如果你使用 VS Code,你可以使用 vscode-styled-components 插件来获得 css 标签模板字符串的语法高亮和 IntelliSense 功能。

VS Code

在 MIT 许可证下发布。