-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
323 lines (320 loc) · 10.8 KB
/
App.js
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
import React from 'react';
import {
SafeAreaView,
ScrollView,
View,
Text,
TouchableOpacity,
StyleSheet,
Platform,
} from 'react-native';
const Styles = StyleSheet.create({
appContainer: {
flex: 1,
},
fontSelector: {
flexDirection: 'row',
},
fontSelectorButton: {
marginHorizontal: 15,
paddingVertical: 15,
},
innerView: {
padding: 10
},
commonFont: {
margin: 0,
fontSize: 12,
lineHeight: 28,
},
});
const App = () => {
const [visibleTextMetrics, setVisibleTextMetrics] = React.useState(false);
const [textMetricsEN, setTextMetricsEN] = React.useState([]);
const [textMetricsKR, setTextMetricsKR] = React.useState([]);
const [font, setFont] = React.useState(undefined);
return (
<SafeAreaView style={Styles.appContainer}>
<ScrollView contentContainerStyle={Styles.fontSelector} horizontal>
<TouchableOpacity
style={Styles.fontSelectorButton}
onPress={() => setFont(undefined)}>
<Text>undefined(Default),</Text>
</TouchableOpacity>
{Platform.OS === 'ios' ? (
<>
<TouchableOpacity
style={Styles.fontSelectorButton}
onPress={() => setFont('AppleSDGothicNeo-Regular')}>
<Text>AppleSDGothicNeo</Text>
</TouchableOpacity>
</>
) : (
<>
<TouchableOpacity
style={Styles.fontSelectorButton}
onPress={() => setFont('sans-serif')}>
<Text>sans-serif</Text>
</TouchableOpacity>
<TouchableOpacity
style={Styles.fontSelectorButton}
onPress={() => setFont('serif')}>
<Text>serif</Text>
</TouchableOpacity>
<TouchableOpacity
style={Styles.fontSelectorButton}
onPress={() => setFont('monospace')}>
<Text>monospace</Text>
</TouchableOpacity>
</>
)}
<TouchableOpacity
style={Styles.fontSelectorButton}
onPress={() => setFont('NotoSansKR-Regular')}>
<Text>NotoSansKR</Text>
</TouchableOpacity>
<TouchableOpacity
style={Styles.fontSelectorButton}
onPress={() => setFont('NotoSansCJKkr-Regular')}>
<Text>NotoSansCJKkr</Text>
</TouchableOpacity>
<TouchableOpacity
style={Styles.fontSelectorButton}
onPress={() => setFont('NotoSerifCJKkr-Regular')}>
<Text>NotoSerifCJKkr</Text>
</TouchableOpacity>
<TouchableOpacity
style={Styles.fontSelectorButton}
onPress={() => setFont('NotoSerifKR-Regular')}>
<Text>NotoSerifKR</Text>
</TouchableOpacity>
<TouchableOpacity
style={Styles.fontSelectorButton}
onPress={() => setFont('NotoSansMonoCJKkr-Regular')}>
<Text>NotoSansMonoCJKkr</Text>
</TouchableOpacity>
<TouchableOpacity
style={Styles.fontSelectorButton}
onPress={() =>
setFont(Platform.OS === 'ios' ? 'NanumGothicOTF' : 'NanumGothic')
}>
<Text>NanumGothic</Text>
</TouchableOpacity>
<TouchableOpacity
style={Styles.fontSelectorButton}
onPress={() =>
setFont(
Platform.OS === 'ios'
? 'NanumBarunGothicOTF'
: 'NanumBarunGothic',
)
}>
<Text>NanumBarunGothic</Text>
</TouchableOpacity>
<TouchableOpacity
style={Styles.fontSelectorButton}
onPress={() =>
setVisibleTextMetrics(visibleTextMetrics ? false : true)
}>
<Text>TEXT METRICS VIEW</Text>
</TouchableOpacity>
</ScrollView>
<ScrollView contentContainerStyle={Styles.innerView}>
<Text>{font}</Text>
<View>
{visibleTextMetrics &&
textMetricsEN.map(
({
x,
y,
width,
height,
capHeight,
ascender,
descender,
xHeight,
}) => {
return [
<View
key="baseline view"
style={{
top: y + ascender,
height: 1,
left: 0,
right: 0,
position: 'absolute',
backgroundColor: 'red',
}}
/>,
<View
key="capheight view"
style={{
top: y + ascender - capHeight,
height: 1,
left: 0,
right: 0,
position: 'absolute',
backgroundColor: 'green',
}}
/>,
<View
key="xheight view"
style={{
top: y + ascender - xHeight,
height: 1,
left: 0,
right: 0,
position: 'absolute',
backgroundColor: 'blue',
}}
/>,
<View
key="descender view"
style={{
top: y + ascender + descender,
height: 1,
left: 0,
right: 0,
position: 'absolute',
backgroundColor: 'orange',
}}
/>,
<View
key="end of text view"
style={{
top: y,
height: height,
width: 1,
left: x + width,
position: 'absolute',
backgroundColor: 'brown',
}}
/>,
<View
key="start of text view"
style={{
top: y,
height: height,
width: 1,
left: x,
position: 'absolute',
backgroundColor: 'brown',
}}
/>,
];
},
)}
<Text
style={[Styles.commonFont, {fontFamily: font}]}
onTextLayout={event => setTextMetricsEN(event.nativeEvent.lines)}>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim
ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut
aliquip ex ea commodo consequat. Duis aute irure dolor in
reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla
pariatur. Excepteur sint occaecat cupidatat non proident, sunt in
culpa qui officia deserunt mollit anim id est laborum.
</Text>
</View>
<View>
{visibleTextMetrics &&
textMetricsKR.map(
({
x,
y,
width,
height,
capHeight,
ascender,
descender,
xHeight,
}) => {
return [
<View
key="baseline view"
style={{
top: y + ascender,
height: 1,
left: 0,
right: 0,
position: 'absolute',
backgroundColor: 'red',
}}
/>,
<View
key="capheight view"
style={{
top: y + ascender - capHeight,
height: 1,
left: 0,
right: 0,
position: 'absolute',
backgroundColor: 'green',
}}
/>,
<View
key="xheight view"
style={{
top: y + ascender - xHeight,
height: 1,
left: 0,
right: 0,
position: 'absolute',
backgroundColor: 'blue',
}}
/>,
<View
key="descender view"
style={{
top: y + ascender + descender,
height: 1,
left: 0,
right: 0,
position: 'absolute',
backgroundColor: 'orange',
}}
/>,
<View
key="end of text view"
style={{
top: y,
height: height,
width: 1,
left: x + width,
position: 'absolute',
backgroundColor: 'brown',
}}
/>,
<View
key="start of text view"
style={{
top: y,
height: height,
width: 1,
left: x,
position: 'absolute',
backgroundColor: 'brown',
}}
/>,
];
},
)}
<Text
style={[Styles.commonFont, {fontFamily: font}]}
onTextLayout={event => setTextMetricsKR(event.nativeEvent.lines)}>
그들의 하였으며, 있는 청춘 있음으로써 위하여 아니다. 역사를 청춘의
노년에게서 없으면, 이것이다. 풀이 하는 인간은 너의 말이다. 위하여,
두기 못할 투명하되 얼마나 넣는 그러므로 것이다. 인간의 유소년에게서
하는 모래뿐일 찬미를 그러므로 보라. 찾아 웅대한 그림자는 바로 인생을
인간은 목숨이 위하여서. 주는 열락의 피어나기 가슴이 부패뿐이다.
힘차게 주는 있는 그들의 거선의 이것은 청춘의 것은 인도하겠다는
약동하다. 속에 천지는 이상을 피다. 유소년에게서 굳세게 뛰노는 지혜는
있는 청춘의 것이다.보라, 창공에 것이다. 청춘 더운지라 든 하여도
방황하였으며, 말이다.
</Text>
</View>
</ScrollView>
</SafeAreaView>
);
};
export default App;