@antv/x6-react-components
Version:
React components for building x6 editors
31 lines (25 loc) • 889 B
text/typescript
import { canUseDOM } from './executionEnvironment'
const memoized: { [name: string]: string | null } = {}
const prefixes = ['Webkit', 'ms', 'Moz', 'O']
const testStyle = canUseDOM ? document.createElement('div').style : {}
const hyphenPattern = /-(.)/g
function camelize(str: string) {
return str.replace(hyphenPattern, (_, char) => char.toUpperCase())
}
function getWithPrefix(name: string) {
for (let i = 0; i < prefixes.length; i += 1) {
const prefixedName = prefixes[i] + name
if (prefixedName in testStyle) {
return prefixedName
}
}
return null
}
export function getVendorPrefix(property: string) {
const name = camelize(property)
if (memoized[name] === undefined) {
const capitalizedName = name.charAt(0).toUpperCase() + name.slice(1)
memoized[name] = name in testStyle ? name : getWithPrefix(capitalizedName)
}
return memoized[name]
}