import PropTypes from 'prop-types';
import React, { Component } from 'react';
import { ScrollView, Text, TouchableOpacity } from 'react-native';
import styled from '@emotion/native';
const Label = styled.Text(({ theme, active }) => ({
color: active ? theme.buttonActiveTextColor : theme.buttonTextColor,
fontSize: 17,
}));
class GroupTabs extends Component {
renderTab(name, group) {
let { title } = group;
if (typeof title === 'function') {
title = title();
}
const { onGroupSelect, selectedGroup } = this.props;
return (
onGroupSelect(name)}
>
);
}
render() {
const { groups } = this.props;
const entries = groups ? Object.entries(groups) : null;
return entries && entries.length ? (
{entries.map(([key, value]) => this.renderTab(key, value))}
) : (
no groups available
);
}
}
GroupTabs.defaultProps = {
groups: {},
onGroupSelect: () => {},
selectedGroup: null,
};
GroupTabs.propTypes = {
// eslint-disable-next-line react/forbid-prop-types
groups: PropTypes.object,
onGroupSelect: PropTypes.func,
selectedGroup: PropTypes.string,
};
export default GroupTabs;