import React from 'react'; import { StyleSheet, TextStyle, Text } from 'react-native'; import { WHITE } from '../../constants/colors'; import { BOLD } from '../../constants/fontSize'; const MAX_DOT_VALUE = 100; function DotText({ value, fontSize }: { value: number; fontSize: number }) { const styles = StyleSheet.create({ textStyle: { fontWeight: BOLD, fontSize, color: WHITE, }, biggerTextStyle: { paddingHorizontal: 4, }, }); const getTextStyle = () => { const textStyle: TextStyle[] = [styles.textStyle]; if (value.toString().length > 1) { return [styles.textStyle, styles.biggerTextStyle]; } return textStyle; }; const getValue = () => { if (value >= MAX_DOT_VALUE) return `${MAX_DOT_VALUE - 1}+`; return value; }; return {getValue()}; } export default DotText;