-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.js
81 lines (76 loc) · 2.16 KB
/
index.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
import React, { useState } from 'react'
import { StyleSheet, View } from 'react-native'
import ZigzagLines from 'react-native-zigzag-lines'
/**
* @template T
* @typedef {import('react-native').StyleProp<T>} StyleProp
*/
/**
* @typedef {import('react-native').ViewStyle} ViewStyle
* @typedef {import('react-native').ViewProps} ViewProps
* @typedef {import('react-native').ColorValue} ColorValue
* @typedef {import('react-native-zigzag-lines').ZigzagLinesProps} ZigzagLinesProps
*/
/**
* @typedef {Omit<ViewProps, 'style'> & {
* style?: StyleProp<ViewStyle>
* surfaceColor?: ColorValue
* backgroundColor?: ColorValue
* contentContainerStyle?: StyleProp<ViewStyle>
* zigzagProps?: Omit<ZigzagLinesProps, 'color' | 'backgroundColor' | 'width' | 'position'>
* top?: boolean
* bottom?: boolean
* }} ZigzagViewProps
*/
/** @type {React.FC<ZigzagViewProps>} */
const ZigzagView = (props) => {
const {
style,
contentContainerStyle,
zigzagProps,
backgroundColor: backColor,
surfaceColor: surfColor,
bottom = true,
top = true,
...restProps
} = props
const [width, setWidth] = useState()
const backgroundColor = backColor || (style ? StyleSheet.flatten(style).backgroundColor : undefined)
const surfaceColor = surfColor || (contentContainerStyle ? StyleSheet.flatten(contentContainerStyle).backgroundColor : undefined)
return <View
{...restProps}
style={[
{
flexDirection: 'column',
justifyContent: 'center',
},
style,
{ backgroundColor },
]}
>
{Boolean(top) && typeof width == 'number' && <ZigzagLines
{...zigzagProps}
width={width}
position="top"
backgroundColor={backgroundColor}
color={surfaceColor}
/>}
<View
onLayout={e => setWidth(e.nativeEvent.layout.width)}
style={[
contentContainerStyle,
{ backgroundColor: surfaceColor },
]}
>
{props.children}
</View>
{Boolean(bottom) && typeof width == 'number' && <ZigzagLines
{...zigzagProps}
width={width}
position="bottom"
backgroundColor={backgroundColor}
color={surfaceColor}
/>}
</View>
}
export default ZigzagView