@tamagui/react-native-web-lite
Version:
React Native for Web
161 lines (160 loc) • 4.88 kB
JavaScript
import { TextAncestorContext, forwardPropsListText, getLocaleDirection, pick, useElementLayout, useLocaleContext, useMergeRefs, usePlatformMethods, useResponderEvents } from "@tamagui/react-native-web-internals";
import * as React from "react";
import { useCreateElement } from "../createElement/index.mjs";
import { jsx } from "react/jsx-runtime";
const pickProps = props => pick(props, forwardPropsListText);
const Text = React.forwardRef((props, forwardedRef) => {
const {
hrefAttrs,
numberOfLines,
onClick,
onLayout,
onPress,
onMoveShouldSetResponder,
onMoveShouldSetResponderCapture,
onResponderEnd,
onResponderGrant,
onResponderMove,
onResponderReject,
onResponderRelease,
onResponderStart,
onResponderTerminate,
onResponderTerminationRequest,
onScrollShouldSetResponder,
onScrollShouldSetResponderCapture,
onSelectionChangeShouldSetResponder,
onSelectionChangeShouldSetResponderCapture,
onStartShouldSetResponder,
onStartShouldSetResponderCapture,
selectable,
...rest
} = props;
const hasTextAncestor = React.useContext(TextAncestorContext);
const hostRef = React.useRef(null);
const {
direction: contextDirection
} = useLocaleContext();
useElementLayout(hostRef, onLayout);
useResponderEvents(hostRef, {
onMoveShouldSetResponder,
onMoveShouldSetResponderCapture,
onResponderEnd,
onResponderGrant,
onResponderMove,
onResponderReject,
onResponderRelease,
onResponderStart,
onResponderTerminate,
onResponderTerminationRequest,
onScrollShouldSetResponder,
onScrollShouldSetResponderCapture,
onSelectionChangeShouldSetResponder,
onSelectionChangeShouldSetResponderCapture,
onStartShouldSetResponder,
onStartShouldSetResponderCapture
});
const handleClick = React.useCallback(e => {
if (onClick != null) {
onClick(e);
} else if (onPress != null) {
e.stopPropagation();
onPress(e);
}
}, [onClick, onPress]);
let component = hasTextAncestor ? "span" : "div";
const langDirection = props.lang != null ? getLocaleDirection(props.lang) : null;
const componentDirection = props.dir || langDirection;
const writingDirection = componentDirection || contextDirection;
const supportedProps = pickProps(rest);
supportedProps.dir = componentDirection;
if (!hasTextAncestor) {
supportedProps.dir = componentDirection != null ? componentDirection : "auto";
}
if (onClick || onPress) {
supportedProps.onClick = handleClick;
}
supportedProps.style = [numberOfLines != null && numberOfLines > 1 && {
WebkitLineClamp: numberOfLines
}, hasTextAncestor === true ? styles.textHasAncestor$raw : styles.text, numberOfLines === 1 && styles.textOneLine, numberOfLines != null && numberOfLines > 1 && styles.textMultiLine, props.style, selectable === true && styles.selectable, selectable === false && styles.notSelectable, onPress && styles.pressable];
if (props.href != null) {
component = "a";
if (hrefAttrs != null) {
const {
download,
rel,
target
} = hrefAttrs;
if (download != null) {
supportedProps.download = download;
}
if (rel != null) {
supportedProps.rel = rel;
}
if (typeof target === "string") {
supportedProps.target = target.charAt(0) !== "_" ? "_" + target : target;
}
}
}
const platformMethodsRef = usePlatformMethods(supportedProps);
const setRef = useMergeRefs(hostRef, platformMethodsRef, forwardedRef);
supportedProps.ref = setRef;
const element = useCreateElement(component, supportedProps, {
writingDirection
});
return hasTextAncestor ? element : /* @__PURE__ */jsx(TextAncestorContext.Provider, {
value: true,
children: element
});
});
Text.displayName = "Text";
const textStyle = {
backgroundColor: "transparent",
border: "0 solid black",
boxSizing: "border-box",
color: "black",
display: "inline",
font: "14px System",
listStyle: "none",
margin: 0,
padding: 0,
textAlign: "inherit",
textDecoration: "none",
whiteSpace: "pre-wrap",
wordWrap: "break-word"
};
const styles = {
text: textStyle,
textHasAncestor$raw: {
...textStyle,
color: "inherit",
font: "inherit",
whiteSpace: "inherit"
},
textOneLine: {
maxWidth: "100%",
overflow: "hidden",
textOverflow: "ellipsis",
whiteSpace: "nowrap",
wordWrap: "normal"
},
// See #13
textMultiLine: {
display: "-webkit-box",
maxWidth: "100%",
overflow: "hidden",
textOverflow: "ellipsis",
WebkitBoxOrient: "vertical"
},
notSelectable: {
userSelect: "none"
},
selectable: {
userSelect: "text"
},
pressable: {
cursor: "pointer"
}
};
var Text_default = Text;
export { Text, Text_default as default };
//# sourceMappingURL=index.mjs.map