react-native-starsystem
Version:
Starbem React Native UI Toolkit
94 lines (93 loc) • 3.4 kB
JavaScript
var __rest = (this && this.__rest) || function (s, e) {
var t = {};
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
t[p] = s[p];
if (s != null && typeof Object.getOwnPropertySymbols === "function")
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
t[p[i]] = s[p[i]];
}
return t;
};
import React from 'react';
import { View, ScrollView, Animated, StyleSheet, } from 'react-native';
import { colors } from '../config';
export const TabBase = (_a) => {
var _b;
var { theme, children, value, onChange = () => { }, indicatorStyle, disableIndicator, variant } = _a, props = __rest(_a, ["theme", "children", "value", "onChange", "indicatorStyle", "disableIndicator", "variant"]);
const [dim, setDim] = React.useState({ width: 0 });
const { current: animation } = React.useRef(new Animated.Value(0));
React.useEffect(() => {
Animated.timing(animation, {
toValue: value,
useNativeDriver: true,
duration: 170,
}).start();
}, [animation, value]);
const WIDTH = React.Children.count(children) > 2
? dim.width / 3
: dim.width / React.Children.count(children);
return (<View>
<ScrollView contentContainerStyle={{}} horizontal showsHorizontalScrollIndicator={false} scrollEnabled={React.Children.count(children) > 3} {...props} accessibilityRole="tablist" style={[
styles.viewStyle,
// eslint-disable-next-line react-native/no-inline-styles
{
borderBottomWidth: 1,
borderBottomColor: variant ? colors[variant] : colors.grey3,
backgroundColor: variant ? colors[variant] : 'transparent',
},
]} onLayout={({ nativeEvent: { layout } }) => setDim(Object(layout))}>
{React.Children.map(children, (child, index) => {
return React.cloneElement(child, {
childs: React.Children.count(children),
onPress: () => onChange(index),
active: index === value,
variant,
});
})}
{!disableIndicator && (<Animated.View style={[
styles.indicator,
{
backgroundColor: (_b = theme === null || theme === void 0 ? void 0 : theme.colors) === null || _b === void 0 ? void 0 : _b.secondary,
transform: [
{
translateX: animation.interpolate({
inputRange: [0, 1],
outputRange: [0, WIDTH],
}),
},
],
},
indicatorStyle,
]}>
<View style={{ width: WIDTH }}/>
</Animated.View>)}
</ScrollView>
</View>);
};
const styles = StyleSheet.create({
buttonStyle: {
borderRadius: 0,
backgroundColor: 'transparent',
},
titleStyle: {
paddingHorizontal: 16,
paddingVertical: 8,
textTransform: 'uppercase',
},
containerStyle: {
flex: 1,
borderRadius: 0,
},
viewStyle: {
flexDirection: 'row',
position: 'relative',
},
indicator: {
display: 'flex',
position: 'absolute',
height: 4,
bottom: 0,
},
});
TabBase.displayName = 'Tab';