Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: sVG style not update #124

Merged
merged 6 commits into from
Mar 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-motion",
"version": "0.13.0",
"version": "0.13.1-alpha.0",
"private": true,
"packageManager": "[email protected]+sha1.8bfdb6d72b4d5fdf87d21d27f2bfbe2b21dd2629",
"description": "",
Expand Down
2 changes: 1 addition & 1 deletion packages/motion/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "motion-v",
"version": "0.13.0",
"version": "0.13.1-alpha.0",
"description": "",
"author": "",
"license": "MIT",
Expand Down
38 changes: 38 additions & 0 deletions packages/motion/src/components/__tests__/svg.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
import { describe, expect, it } from 'vitest'
import { render } from '@testing-library/vue'
import { Motion } from '@/components'
import { motionValue } from 'framer-motion/dom'
import { nextTick } from 'vue'
import { delay } from '@/shared/test'

describe('row-value', () => {
it('should render initial value', async () => {
const opacity = motionValue(0)
const stroke = motionValue('red')
const wrapper = render(Motion, {
props: {
as: 'path',
style: {
opacity,
stroke,
},
},
attrs: {
'data-testid': 'path',
},
})
await nextTick()
const path = wrapper.getByTestId('path')
expect(path.style.opacity).toBeFalsy()
expect(path.style.stroke).toBeFalsy()
expect(path.getAttribute('stroke')).toBe('red')
expect(path.getAttribute('opacity')).toBe('0')
opacity.set(1)
stroke.set('blue')
await delay(100)
expect(path.style.opacity).toBeFalsy()
expect(path.style.stroke).toBeFalsy()
expect(path.getAttribute('stroke')).toBe('blue')
expect(path.getAttribute('opacity')).toBe('1')
})
})
17 changes: 8 additions & 9 deletions packages/motion/src/components/motion/Motion.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { checkMotionIsHidden } from './utils'
import type { AsTag, ComponentProps, ElementType, Options, SVGAttributesWithMotionValues, SetMotionValueType } from '@/types'
import { useMotionConfig } from '../motion-config/context'
import { getMotionElement } from '../hooks/use-motion-elm'
import type { DOMKeyframesDefinition } from 'motion-dom'
</script>

<script setup lang="ts" generic="T extends AsTag = 'div', K = unknown">
Expand Down Expand Up @@ -77,7 +78,7 @@ const props = withDefaults(defineProps<ComBindProps & MotionProps<T, K>>(), {
return focus
},
} as any) as MotionProps<T>
const animatePresenceContext = injectAnimatePresence({ })
const animatePresenceContext = injectAnimatePresence({})
const parentState = injectMotion(null)
const attrs = useAttrs()
const layoutGroup = injectLayoutGroup({} as any)
Expand Down Expand Up @@ -163,9 +164,12 @@ function getAttrs() {
...(isSVG ? {} : state.visualElement.latestValues),
}
if (isSVG) {
const { attributes, style } = convertSvgStyleToAttributes(state.isMounted() ? state.target : state.baseTarget)
const { attributes, style } = convertSvgStyleToAttributes({
...(state.isMounted() ? state.target : state.baseTarget),
...styleProps,
} as DOMKeyframesDefinition)
Object.assign(attrsProps, attributes)
Object.assign(styleProps, style)
styleProps = style
}
if (props.drag && props.dragListener !== false) {
Object.assign(styleProps, {
Expand All @@ -178,12 +182,7 @@ function getAttrs() {
})
}

styleProps = createStyles({
...styleProps,
...props.style,
})

attrsProps.style = styleProps
attrsProps.style = createStyles(styleProps)
return attrsProps
}

Expand Down
30 changes: 21 additions & 9 deletions packages/motion/src/state/style.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import type { DOMKeyframesDefinition } from 'framer-motion'
import type { DOMKeyframesDefinition, ResolvedValues } from 'framer-motion'
import { isCssVar, isNumber } from './utils'
import { buildTransformTemplate, isTransform, transformAlias, transformDefinitions } from './transform'
import { isMotionValue } from '@/utils'
import type { MotionStyle } from '@/types'
import { px } from '@/value/types/numbers/units'

type MotionStyleKey = Exclude<
keyof CSSStyleDeclaration,
Expand Down Expand Up @@ -83,15 +84,12 @@ const SVG_STYLE_TO_ATTRIBUTES = {
cy: true,
r: true,
d: true,
x: true,
y: true,
x1: true,
y1: true,
x2: true,
y2: true,
points: true,
pathLength: true,
transform: true,
viewBox: true,
width: true,
height: true,
Expand All @@ -116,22 +114,36 @@ const SVG_STYLE_TO_ATTRIBUTES = {
vectorEffect: true,
} as const

function buildSVGPath(
attrs: ResolvedValues,
length: number,
spacing = 1,
offset = 0,
) {
attrs.pathLength = 1
// Build the dash offset
attrs['stroke-dashoffset'] = px.transform(-offset)

// Build the dash array
const pathLength = px.transform!(length)
const pathSpacing = px.transform!(spacing)
attrs['stroke-dasharray'] = `${pathLength} ${pathSpacing}`
}
export function convertSvgStyleToAttributes(keyframes?: MotionStyle | DOMKeyframesDefinition) {
const attributes: Record<string, any> = {}
const styleProps: Record<string, any> = {}

for (const key in keyframes as any) {
if (key in SVG_STYLE_TO_ATTRIBUTES) {
const attrKey = SVG_STYLE_TO_ATTRIBUTES[key as keyof typeof SVG_STYLE_TO_ATTRIBUTES]
const attrName = typeof attrKey === 'string' ? attrKey : key
const value = keyframes[key]
attributes[attrName] = isMotionValue(value) ? value.get() : value
attributes[key] = isMotionValue(value) ? value.get() : value
}
else {
styleProps[key] = keyframes[key]
}
}

if (attributes.pathLength) {
buildSVGPath(attributes, attributes.pathLength, attributes.pathSpacing, attributes.pathOffset)
}
return {
attributes,
style: styleProps,
Expand Down
2 changes: 1 addition & 1 deletion packages/plugins/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "plugins",
"version": "0.13.0",
"version": "0.13.1-alpha.0",
"private": true,
"description": "",
"author": "",
Expand Down