|
/** |
|
* Wraps Object.keys with proper typescript definition of the resulting array |
|
*/ |
|
function keysOf<T, K extends keyof T>(obj: T): K[] { |
|
return Object.keys(obj) as K[]; |
|
} |
|
|
|
export const logicalSide = { |
|
left: 'inline-start', |
|
right: 'inline-end', |
|
top: 'block-start', |
|
bottom: 'block-end', |
|
horizontal: 'inline', |
|
vertical: 'block', |
|
}; |
|
|
|
const SIDES = keysOf(logicalSide); |
|
export type LogicalSides = typeof SIDES[number]; |
|
|
|
const logicalMargins = { |
|
'margin-left': 'margin-inline-start', |
|
'margin-right': 'margin-inline-end', |
|
'margin-top': 'margin-block-start', |
|
'margin-bottom': 'margin-block-end', |
|
'margin-horizontal': 'margin-inline', |
|
'margin-vertical': 'margin-block', |
|
}; |
|
|
|
const logicalPaddings = { |
|
'padding-left': 'padding-inline-start', |
|
'padding-right': 'padding-inline-end', |
|
'padding-top': 'padding-block-start', |
|
'padding-bottom': 'padding-block-end', |
|
'padding-horizontal': 'padding-inline', |
|
'padding-vertical': 'padding-block', |
|
}; |
|
|
|
const logicalPosition = { |
|
top: 'inset-inline-start', |
|
right: 'inset-block-start', |
|
bottom: 'inset-inline-end', |
|
left: 'inset-block-end', |
|
horizontal: 'inset-block', |
|
vertical: 'inset-inline', |
|
}; |
|
|
|
const logicalSize = { |
|
height: 'block-size', |
|
width: 'inline-size', |
|
'max-height': 'max-block-size', |
|
'max-width': 'max-inline-size', |
|
'min-height': 'min-block-size', |
|
'min-width': 'min-inline-size', |
|
}; |
|
|
|
const logicalOverflow = { |
|
'overflow-x': 'overflow-block', |
|
'overflow-y': 'overflow-inline', |
|
}; |
|
|
|
const logicalRadius = { |
|
'border-top-left-radius': 'border-start-start-radius', |
|
'border-top-right-radius': 'border-start-end-radius', |
|
'border-bottom-left-radius': 'border-end-start-radius', |
|
'border-bottom-right-radius': 'border-end-end-radius', |
|
}; |
|
|
|
export const logicals = { |
|
...logicalMargins, |
|
...logicalPaddings, |
|
...logicalPosition, |
|
...logicalSize, |
|
...logicalOverflow, |
|
...logicalRadius, |
|
}; |
|
|
|
export const LOGICAL_PROPERTIES = keysOf(logicals); |
|
export type LogicalProperties = typeof LOGICAL_PROPERTIES[number]; |
|
|
|
/** |
|
* |
|
* @param property A string that is a valid CSS logical property |
|
* @param value String to output as the property value |
|
* @returns `string` Returns the logical CSS property version for the given `property: value` pair |
|
*/ |
|
export const logicalCSS = (property: LogicalProperties, value?: string) => { |
|
return `${logicals[property]}: ${value};`; |
|
}; |
|
|
|
/** |
|
* |
|
* @param property A string that is a valid CSS logical property |
|
* @param value String to output as the property value |
|
* @returns `object` Returns the logical CSS property version for the given `property: value` pair |
|
*/ |
|
export const logicalStyle = (property: LogicalProperties, value?: string) => { |
|
// Strip hyphens and camelCase the CSS logical property so React doesn't throw errors |
|
const camelCasedProperty = logicals[property].replace(/-\w/g, (str) => |
|
str.charAt(1).toUpperCase() |
|
); |
|
|
|
return { [camelCasedProperty]: `${value}` }; |
|
}; |
Did you already think about extending this project with an online converter?
Do you know if something already exists? I didn't find one.
You simply provide CSS and it converts the related properties.