Skip to content

Commit

Permalink
fix: background-clip:text should compatible with transform and mask
Browse files Browse the repository at this point in the history
  • Loading branch information
Jackie1210 committed Oct 7, 2024
1 parent 618d565 commit b957b02
Show file tree
Hide file tree
Showing 5 changed files with 110 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/builder/rect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -298,11 +298,13 @@ export default async function rect(
(imageBorderRadius ? imageBorderRadius[0] : '') +
clip +
(opacity !== 1 ? `<g opacity="${opacity}">` : '') +
(style.transform && currentClipPath && maskId
? `<g clip-path="${currentClipPath}" mask="${maskId}">`
(style.transform && (currentClipPath || maskId)
? `<g${currentClipPath ? ` clip-path="${currentClipPath}"` : ''}${
maskId ? ` mask="${maskId}"` : ''
}>`
: '') +
(backgroundShapes || shape) +
(style.transform && currentClipPath && maskId ? '</g>' : '') +
(style.transform && (currentClipPath || maskId) ? '</g>' : '') +
(opacity !== 1 ? `</g>` : '') +
(shadow ? shadow[1] : '') +
extra
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
105 changes: 105 additions & 0 deletions test/background-clip.test.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
import { it, describe, expect } from 'vitest'

import { initFonts, toImage } from './utils.js'
import satori from '../src/index.js'

describe('backgroundClip', () => {
let fonts
initFonts((f) => (fonts = f))

it('should render background-clip:text', async () => {
const svg = await satori(
<div
style={{
display: 'flex',
fontSize: 30,
flexDirection: 'column',
background: '#ffffff',
}}
>
<div
style={{
backgroundImage: 'linear-gradient(to right, red, green)',
WebkitBackgroundClip: 'text',
backgroundClip: 'text',
color: 'transparent',
}}
>
lynn
</div>
</div>,
{
width: 100,
height: 100,
fonts,
}
)

expect(toImage(svg)).toMatchImageSnapshot()
})

it('should render background-clip:text compatible with transform', async () => {
const svg = await satori(
<div
style={{
display: 'flex',
fontSize: 30,
flexDirection: 'column',
background: '#ffffff',
}}
>
<div
style={{
transform: 'translateX(25px)',
backgroundImage: 'linear-gradient(to right, red, green)',
WebkitBackgroundClip: 'text',
backgroundClip: 'text',
color: 'transparent',
}}
>
lynn
</div>
</div>,
{
width: 100,
height: 100,
fonts,
}
)

expect(toImage(svg)).toMatchImageSnapshot()
})

it('should render background-clip:text compatible with mask', async () => {
const svg = await satori(
<div
style={{
display: 'flex',
fontSize: 30,
flexDirection: 'column',
background: '#ffffff',
}}
>
<div
style={{
transform: 'translateX(25px)',
backgroundImage: 'linear-gradient(to right, red, green)',
WebkitBackgroundClip: 'text',
backgroundClip: 'text',
maskImage: 'linear-gradient(to right, blue, transparent)',
color: 'transparent',
}}
>
lynn
</div>
</div>,
{
width: 100,
height: 100,
fonts,
}
)

expect(toImage(svg)).toMatchImageSnapshot()
})
})

0 comments on commit b957b02

Please sign in to comment.