upd: tampilan
Deskripsi: - menghilangkan new line dan tag html pada list pengumuman dan list diskusi umum - update api NO Issues
This commit is contained in:
@@ -114,7 +114,7 @@ export default function Announcement() {
|
|||||||
</View>
|
</View>
|
||||||
}
|
}
|
||||||
title={item.title}
|
title={item.title}
|
||||||
desc={item.desc.replace(/<[^>]*>?/gm, '')}
|
desc={item.desc.replace(/<[^>]*>?/gm, '').replace(/\r?\n|\r/g, ' ')}
|
||||||
rightTopInfo={item.createdAt}
|
rightTopInfo={item.createdAt}
|
||||||
/>
|
/>
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -153,7 +153,7 @@ export default function Discussion() {
|
|||||||
status != "false" && <LabelStatus category={item.status === 1 ? "success" : "error"} text={item.status === 1 ? "BUKA" : "TUTUP"} size="small" />
|
status != "false" && <LabelStatus category={item.status === 1 ? "success" : "error"} text={item.status === 1 ? "BUKA" : "TUTUP"} size="small" />
|
||||||
}
|
}
|
||||||
rightTopInfo={item.createdAt}
|
rightTopInfo={item.createdAt}
|
||||||
desc={item.desc}
|
desc={item.desc.replace(/<[^>]*>?/gm, ' ').replace(/\r?\n|\r/g, ' ')}
|
||||||
leftBottomInfo={
|
leftBottomInfo={
|
||||||
<View style={[Styles.rowItemsCenter]}>
|
<View style={[Styles.rowItemsCenter]}>
|
||||||
<Ionicons name="chatbox-ellipses-outline" size={18} color="grey" style={Styles.mr05} />
|
<Ionicons name="chatbox-ellipses-outline" size={18} color="grey" style={Styles.mr05} />
|
||||||
@@ -176,34 +176,6 @@ export default function Discussion() {
|
|||||||
/>
|
/>
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
// data.map((item: any, i: number) => {
|
|
||||||
// return (
|
|
||||||
// <BorderBottomItem
|
|
||||||
// key={i}
|
|
||||||
// onPress={() => { router.push(`/discussion/${item.id}`) }}
|
|
||||||
// borderType="bottom"
|
|
||||||
// icon={
|
|
||||||
// <View style={[Styles.iconContent, ColorsStatus.lightGreen]}>
|
|
||||||
// <MaterialIcons name="chat" size={25} color={'#384288'} />
|
|
||||||
// </View>
|
|
||||||
// }
|
|
||||||
// title={item.title}
|
|
||||||
// subtitle={
|
|
||||||
// status != "false" && <LabelStatus category={item.status === 1 ? "success" : "error"} text={item.status === 1 ? "BUKA" : "TUTUP"} size="small" />
|
|
||||||
// }
|
|
||||||
// rightTopInfo={item.createdAt}
|
|
||||||
// desc={item.desc}
|
|
||||||
// leftBottomInfo={
|
|
||||||
// <View style={[Styles.rowItemsCenter]}>
|
|
||||||
// <Ionicons name="chatbox-ellipses-outline" size={18} color="grey" style={Styles.mr05} />
|
|
||||||
// <Text style={[Styles.textInformation, Styles.cGray, Styles.mb05]}>Diskusikan</Text>
|
|
||||||
// </View>
|
|
||||||
// }
|
|
||||||
// rightBottomInfo={`${item.total_komentar} Komentar`}
|
|
||||||
|
|
||||||
// />
|
|
||||||
// )
|
|
||||||
// })
|
|
||||||
:
|
:
|
||||||
<Text style={[Styles.textDefault, Styles.cGray, { textAlign: 'center' }]}>Tidak ada data</Text>
|
<Text style={[Styles.textDefault, Styles.cGray, { textAlign: 'center' }]}>Tidak ada data</Text>
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -48,7 +48,7 @@ export default function BorderBottomItem({ title, subtitle, icon, desc, onPress,
|
|||||||
</View>
|
</View>
|
||||||
|
|
||||||
</View>
|
</View>
|
||||||
{desc && <Text style={[Styles.textDefault, Styles.mt05, { textAlign: 'justify', color: textColorFix }]} numberOfLines={descEllipsize == false ? 0 : 2} ellipsizeMode='tail'>{desc}</Text>}
|
{desc && <Text style={[Styles.textDefault, Styles.mt05, { textAlign: 'left', color: textColorFix }]} numberOfLines={descEllipsize == false ? 0 : 2} ellipsizeMode='tail'>{desc}</Text>}
|
||||||
{
|
{
|
||||||
(leftBottomInfo || rightBottomInfo) &&
|
(leftBottomInfo || rightBottomInfo) &&
|
||||||
(
|
(
|
||||||
|
|||||||
Reference in New Issue
Block a user