@kiwicom/orbit-components
Version:
Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.
119 lines (112 loc) • 3.19 kB
JavaScript
import * as React from "react";
import styled from "styled-components";
import defaultTheme from "../defaultTheme";
import { TYPE_OPTIONS, WEIGHT_OPTIONS, ELEMENT_OPTIONS, ALIGN_OPTIONS, SIZE_OPTIONS } from "./consts";
import getSpacingToken from "../common/getSpacingToken";
import { textAlign } from "../utils/rtl";
import { getLinkStyle, StyledTextLink } from "../TextLink";
import { TYPE_OPTIONS as TEXTLINK_TYPE_OPTIONS } from "../TextLink/consts";
const getTypeToken = ({
theme,
type
}) => {
const typeTokens = {
[TYPE_OPTIONS.PRIMARY]: theme.orbit.colorTextPrimary,
[TYPE_OPTIONS.SECONDARY]: theme.orbit.colorTextSecondary,
[TYPE_OPTIONS.INFO]: theme.orbit.colorTextInfo,
[TYPE_OPTIONS.SUCCESS]: theme.orbit.colorTextSuccess,
[TYPE_OPTIONS.WARNING]: theme.orbit.colorTextWarning,
[TYPE_OPTIONS.CRITICAL]: theme.orbit.colorTextCritical,
[TYPE_OPTIONS.WHITE]: theme.orbit.colorTextWhite
};
return typeTokens[type];
};
const getWeightToken = ({
theme,
weight
}) => {
const weightTokens = {
[WEIGHT_OPTIONS.NORMAL]: theme.orbit.fontWeightNormal,
[WEIGHT_OPTIONS.BOLD]: theme.orbit.fontWeightBold
};
return weightTokens[weight];
};
const getSizeToken = ({
theme,
size
}) => {
const sizeTokens = {
[SIZE_OPTIONS.LARGE]: theme.orbit.fontSizeTextLarge,
[SIZE_OPTIONS.NORMAL]: theme.orbit.fontSizeTextNormal,
[SIZE_OPTIONS.SMALL]: theme.orbit.fontSizeTextSmall
};
return sizeTokens[size];
};
const getLineHeightToken = ({
theme,
size
}) => {
const lineHeightTokens = {
[SIZE_OPTIONS.LARGE]: theme.orbit.lineHeightTextLarge,
[SIZE_OPTIONS.NORMAL]: theme.orbit.lineHeightTextNormal,
[SIZE_OPTIONS.SMALL]: theme.orbit.lineHeightTextSmall
};
return lineHeightTokens[size];
};
export const StyledText = styled(({
element: TextElement,
children,
className,
dataTest,
id
}) => React.createElement(TextElement, {
className: className,
"data-test": dataTest,
id: id
}, children)).withConfig({
displayName: "Text__StyledText",
componentId: "sc-19qtt4y-0"
})(["font-family:", ";font-size:", ";font-weight:", ";color:", ";line-height:", ";text-align:", ";text-transform:", ";font-style:", ";margin:0;margin-bottom:", ";a:not(", "){", "}"], ({
theme
}) => theme.orbit.fontFamily, getSizeToken, getWeightToken, getTypeToken, getLineHeightToken, ({
align
}) => textAlign(align), ({
uppercase
}) => uppercase && `uppercase`, ({
italic
}) => italic && `italic`, getSpacingToken, StyledTextLink, ({
theme
}) => getLinkStyle({
theme,
type: TEXTLINK_TYPE_OPTIONS.PRIMARY
}));
StyledText.defaultProps = {
theme: defaultTheme
};
const Text = ({
type = TYPE_OPTIONS.PRIMARY,
size = SIZE_OPTIONS.NORMAL,
weight = WEIGHT_OPTIONS.NORMAL,
align = ALIGN_OPTIONS.LEFT,
element = ELEMENT_OPTIONS.P,
uppercase = false,
italic = false,
dataTest,
spaceAfter,
children,
id
}) => {
return React.createElement(StyledText, {
id: id,
type: type,
size: size,
weight: weight,
align: align,
element: element,
uppercase: uppercase,
italic: italic,
dataTest: dataTest,
spaceAfter: spaceAfter
}, children);
};
export default Text;