Deskripsi: - menghilangkan new line dan tag html pada list pengumuman dan list diskusi umum - update api NO Issues
73 lines
3.3 KiB
TypeScript
73 lines
3.3 KiB
TypeScript
import { ColorsStatus } from "@/constants/ColorsStatus";
|
|
import Styles from "@/constants/Styles";
|
|
import React from "react";
|
|
import { Dimensions, Pressable, View } from "react-native";
|
|
import Text from "./Text";
|
|
|
|
type Props = {
|
|
title?: string
|
|
subtitle?: string | React.ReactNode
|
|
icon: React.ReactNode
|
|
desc?: string
|
|
rightTopInfo?: string
|
|
onPress?: () => void
|
|
borderType: 'all' | 'bottom' | 'none'
|
|
leftBottomInfo?: React.ReactNode | string
|
|
rightBottomInfo?: React.ReactNode | string
|
|
titleWeight?: 'normal' | 'bold'
|
|
bgColor?: 'white' | 'transparent'
|
|
width?: number
|
|
descEllipsize?: boolean
|
|
textColor?: string
|
|
}
|
|
|
|
export default function BorderBottomItem({ title, subtitle, icon, desc, onPress, rightTopInfo, borderType, leftBottomInfo, rightBottomInfo, titleWeight, bgColor, width, descEllipsize, textColor }: Props) {
|
|
const lebarDim = Dimensions.get("window").width;
|
|
const lebar = width ? lebarDim * width / 100 : 'auto';
|
|
const textColorFix = textColor ? textColor : 'black';
|
|
|
|
return (
|
|
<Pressable style={[borderType == 'bottom' ? Styles.wrapItemBorderBottom : borderType == 'all' ? Styles.wrapItemBorderAll : Styles.wrapItemBorderNone, bgColor && bgColor == 'white' && ColorsStatus.white]} onPress={onPress}>
|
|
<View style={[Styles.rowItemsCenter]}>
|
|
{icon}
|
|
<View style={[Styles.rowSpaceBetween, width ? { width: lebar } : { width: '88%' }]}>
|
|
<View style={[Styles.ml10, rightTopInfo ? { width: '70%' } : { width: '90%' }]}>
|
|
<Text style={[titleWeight == 'normal' ? Styles.textDefault : Styles.textDefaultSemiBold, { color: textColorFix }]} numberOfLines={1} ellipsizeMode='tail'>{title}</Text>
|
|
{
|
|
subtitle &&
|
|
typeof subtitle == "string"
|
|
? <Text style={[Styles.textMediumNormal, { lineHeight: 15, color: textColorFix }]}>{subtitle}</Text>
|
|
: <View style={{ alignItems: 'flex-start' }}>
|
|
{subtitle}
|
|
</View>
|
|
}
|
|
</View>
|
|
{
|
|
rightTopInfo && <Text style={[Styles.textInformation, Styles.mt05, { color: textColorFix }]}>{rightTopInfo}</Text>
|
|
}
|
|
</View>
|
|
|
|
</View>
|
|
{desc && <Text style={[Styles.textDefault, Styles.mt05, { textAlign: 'left', color: textColorFix }]} numberOfLines={descEllipsize == false ? 0 : 2} ellipsizeMode='tail'>{desc}</Text>}
|
|
{
|
|
(leftBottomInfo || rightBottomInfo) &&
|
|
(
|
|
<View style={[Styles.rowSpaceBetween, Styles.mt10]}>
|
|
{
|
|
typeof leftBottomInfo == 'string' ?
|
|
<Text style={[Styles.textInformation, Styles.cGray, { textAlign: 'left' }]}>{leftBottomInfo}</Text>
|
|
:
|
|
leftBottomInfo
|
|
}
|
|
{
|
|
typeof rightBottomInfo == 'string' ?
|
|
<Text style={[Styles.textInformation, Styles.mt05, Styles.cGray, { textAlign: 'right' }]}>{rightBottomInfo}</Text>
|
|
:
|
|
rightBottomInfo
|
|
}
|
|
</View>
|
|
)
|
|
}
|
|
</Pressable>
|
|
)
|
|
} |