This repository has been archived by the owner on Oct 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.tsx
133 lines (120 loc) · 3.85 KB
/
index.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
import React from "react";
import {
Text,
View,
StyleProp,
ViewStyle,
StyleSheet,
TextStyle,
TextProps
} from "react-native";
interface IProps {
debug?: boolean;
containerStyle?: StyleProp<ViewStyle>;
rowWrapperStyle?: StyleProp<ViewStyle>;
textStyle?: StyleProp<TextStyle>;
TextComponent?: typeof Text | React.FC<TextProps>;
}
function getDebugStyle(debug?: boolean) {
return debug ? styles.debugStyle : {};
}
function getWordSpace(textLen: number, currentIndex: number) {
return currentIndex !== textLen - 1 ? " " : "";
}
function getTextMatrix(text: string) {
return text.split("\n").map(row => row.split(" "));
}
//@ts-ignore
const WrappedText: React.FC<IProps> = ({
debug,
containerStyle,
rowWrapperStyle,
textStyle,
children,
TextComponent
}) => {
if (!children) {
return null;
}
const TextRenderer = React.useMemo(() => TextComponent || Text, [
TextComponent
]);
const renderWrappedText = React.useCallback(
(text: string) => {
const textMatrix = getTextMatrix(text);
return (
<View
style={[
styles.container,
containerStyle,
getDebugStyle(debug)
]}
>
{textMatrix.map((rowText, rowIndex) => {
return (
<View
key={`${rowText}-${rowIndex}`}
style={[
styles.rowWrapper,
rowWrapperStyle,
getDebugStyle(debug)
]}
>
{rowText.map(
(colText, colIndex) =>
(colText !== "" ||
(rowText.length === 1 &&
colText === "")) && (
<TextRenderer
key={`${colText}-${colIndex}`}
style={[
textStyle,
getDebugStyle(debug)
]}
>
{colText +
getWordSpace(
rowText.length,
colIndex
)}
</TextRenderer>
)
)}
</View>
);
})}
</View>
);
},
[debug, containerStyle, rowWrapperStyle, textStyle, TextComponent]
);
if (typeof children === "string") {
return renderWrappedText(children);
}
if (Array.isArray(children)) {
return children.map(child => {
if (typeof child === "string") {
return renderWrappedText(child);
} else {
return child;
}
});
}
return children;
};
const styles = StyleSheet.create({
container: {
alignItems: "center",
alignSelf: "center",
width: "100%"
},
rowWrapper: {
flexDirection: "row",
flexWrap: "wrap"
},
debugStyle: {
borderWidth: 0.5,
borderColor: "rgba(255,60,60,0.7)"
}
});
export default WrappedText;